How Target tile ?

Ask for help

Moderators: Murderator+, Murderator

Post Reply
danielfm86.yoko
Posts: 8
Joined: 2007-05-15 02:21:12

How Target tile ?

Post 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))
I'm
Expert!
Posts: 1396
Joined: 2004-10-15 22:38:04
Location: Moscow City.
Contact:

Post by I'm »

Code: Select all

UO.WaitTargetTile("_XXXX_",STR(UO.GetX()),STR(UO.GetY()),STR(UO.GetZ()))
The End.
danielfm86.yoko
Posts: 8
Joined: 2007-05-15 02:21:12

Post 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 ?
I'm
Expert!
Posts: 1396
Joined: 2004-10-15 22:38:04
Location: Moscow City.
Contact:

Post 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())) 
The End.
danielfm86.yoko
Posts: 8
Joined: 2007-05-15 02:21:12

nops...

Post by danielfm86.yoko »

Still not work... ;/
Post Reply