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))
How Target tile ?
Moderators: Murderator+, Murderator
-
- Posts: 8
- Joined: 2007-05-15 02:21:12
So i use this
but it return to me "Target cannot be seen"
whats happen ?
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 ?
UO.WaitTargetTile("TileSeft",........)
use ,infotile
or try:
use ,infotile
or try:
Code: Select all
UO.WaitTargetTile("1339",STR(UO.GetX()),STR(UO.GetY()),STR(UO.GetZ()))
The End.