Also, you can simplify last sharound()'s - there is no need in calculating second variables:
Change
W(120);
sharound(120);
W(121);
sharound(121);
W(122);
sharound(122);
W(123);
sharound(123);
To
W(120);
sharound(120);
W(121);
Vals[2] += t1(121);
W(122);
Vals[1] += t1(122);
W(123);
Vals[0] += t1(123);