[UOSteam] TMap Mover (for new books)

If you make a Client-side script you can publish it here for other players to use
Post Reply
Stephen
Master Scribe
Posts: 52
Joined: Thu Mar 29, 2018 4:42 pm

[UOSteam] TMap Mover (for new books)

Post by Stephen »

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
Stephen
Master Scribe
Posts: 52
Joined: Thu Mar 29, 2018 4:42 pm

Re: [UOSteam] TMap Mover (for new books)

Post by Stephen »

Version 2 released to just let u not have to loop and target the first container then the book.

Code: Select all

//T Map Mover
//Version 2 even easier no looping needed
//By Stephen
headmsg 'Target your chest with maps'
promptalias 'MapChest'
headmsg 'Target your Treasure map book'
promptalias 'MapBook'
while @findtype 0x14ec 'any' 'MapChest'
  movetype '0x14ec' 'MapChest' 'backpack' 0 0 0 0 0
  pause 500
  movetype '0x14ec' 'MapChest' 'backpack' 0 0 0 0 0
  pause 500
  while @findtype 0x14ec 'any' 'backpack'
    if property 'tattered' 'found'
      useobject 'found'
      pause 750
    else
      movetype '0x14ec''backpack' 'MapBook' 0 0 0 0 0
      pause 500
    endif
  endwhile
endwhile
Post Reply