[UOSteam] TMap Mover (for new books)
Posted: Mon May 28, 2018 10:55 pm
Very easy to use. This will first ask u to target a chest for the source where the maps are. then will ask u to target the book. and will move a map to your backpack. If the map is still "tattered" it will open the map, then move the map to the book once its been opened. Quite easy. lol Just for anyone that might need it. Someone asked me to write it so i just threw it together, I think it works didn't really test it. Just put it in Loop it hit save, then when u hit play, Target first the Container with the maps (directly inside) then target the T map book. Enjoy!
Code: Select all
//T Map Mover
//By Stephen
while not @findobject 'MapChest'
headmsg 'Target your chest with maps'
promptalias 'MapChest'
endwhile
while not @findobject 'MapBook'
headmsg 'Target your Treasure map book'
promptalias 'MapBook'
endwhile
if @findtype 0x14ec 'any' 'MapChest'
movetype '0x14ec' 'MapChest' 'backpack' 0 0 0 0 0
pause 500
endif
while @findtype 0x14ec 'any' 'backpack'
if property 'tattered' 'found'
useobject 'found'
pause 500
else
movetype '0x14ec''backpack' 'MapBook' 0 0 0 0 0
pause 500
endif
endwhile
pause 500