ScriptUO

Official ScriptUO EasyUO Scripts => Scripting Chat => Topic started by: declo on January 13, 2017, 08:08:51 PM

Title: Death Robes
Post by: declo on January 13, 2017, 08:08:51 PM
How would I go about removing a death robe?
Title: Re: Death Robes
Post by: The Ghost on January 14, 2017, 04:59:14 AM
You can always use your mouse and left click on it and move it where you want ;)   

Razor do have a macro you can record to dress and undress. 

I believe here the answer you wanted.  Like any object in the game you required to scan for it and after perform the action.


Code: [Select]
finditem  %ItemID C_ , #CHARID  ; <--- this will scan your paperdoll for the define item.
if #Findkind <> -1 ; <----  if item fount, execute follow
  {
         exevent drag #findid
        exevent Dropc #backpackID
         wait 20
        }
Title: Re: Death Robes
Post by: declo on January 14, 2017, 12:20:21 PM
Thank you!!!