Page 1 of 1

How Target tile ?

Posted: 2007-06-09 23:30:12
by danielfm86.yoko
How i make a taget target the tile that im in the moment ?

i should use UO.WaitLastTile ?

(thats used to mining, use the pickaxe and target on the floor (i used UO.WaitTagetSelf before, but it stop working on the shard, now i have to target the floor))

Posted: 2007-06-10 12:30:21
by I'm

Code: Select all

UO.WaitTargetTile("_XXXX_",STR(UO.GetX()),STR(UO.GetY()),STR(UO.GetZ()))

Posted: 2007-06-12 03:12:07
by danielfm86.yoko
So i use this

Code: Select all

while true
   
UO.DeleteJournal()
UO.WaitTargetTile("TileSeft",STR(UO.GetX()),STR(UO.GetY()),STR(UO.GetZ()))
UO.UseType("0x0F39")


but it return to me "Target cannot be seen"

whats happen ?

Posted: 2007-06-12 11:12:51
by I'm
UO.WaitTargetTile("TileSeft",........)
use ,infotile
or try:

Code: Select all

UO.WaitTargetTile("1339",STR(UO.GetX()),STR(UO.GetY()),STR(UO.GetZ())) 

nops...

Posted: 2007-06-13 04:24:01
by danielfm86.yoko
Still not work... ;/