Page 1 of 1

[UOSteam] TMap Mover (for new books)

Posted: Mon May 28, 2018 10:55 pm
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

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

Posted: Thu May 31, 2018 2:30 pm
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