1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
addhook("minute","sample.tm.minute91") function sample.tm.minute91(id) x = player("id, tilex") y = player("id, tiley") t = player("id, tilex")+1 z = player("id, tiley") 	if tile(x,y, 'frame') == 2 and tile(t,z, 'frame') == 63 then 	spawnitem(6, x, y, 1)	 end	 end
this is for tibia and
i need to take x,y position of tile which is frame 2 and next frame is 63
but without use =player("id, tilex") code
because that code working only if player walks on x,y coordinate
but i want to use it without walking of player
problem is how can i take x,y coordinate of tile without using =player("tilex")
edited 2×, last 16.08.14 07:02:37 pm