UOsteam macro for skinning and looting mobs

If you make a Client-side script you can publish it here for other players to use
Locked
User avatar
Dyēus Phater
Expert Scribe
Posts: 37
Joined: Thu Feb 18, 2016 3:31 am

UOsteam macro for skinning and looting mobs

Post by Dyēus Phater »

I found this macro on here but I thought I'd repost it I dont know much about it, but it does work and you can set an organizer to sort the resources for you.


Code: Select all

//you need dagger and scissors in backpack
//auto loot may not work on your server !
//also loots feathers, gold and scales
if not @findtype '0x2006' 'any' 'ground' '1' '2'
  sysmsg ' ******No Corpse Found******' '28'
  stop
else
  @setalias! 'o' 'found'
endif
if not @findtype '0xf52' 'any' 'backpack'
  sysmsg '*****No dagger*****' '25'
  stop
else
  @usetype! '0xf52' 'any' 'backpack'
  waitfortarget '5000'
  target! 'o'
  pause 600
endif
if @findtype! '0x1079' 'any' 'o' 'any' '2'
  @movetype '0x1079' 'o' 'backpack'
  pause 2000
  @usetype! '0xf9f' 'any' 'backpack'
  waitfortarget '2000'
  targettype '0x1079' 'any' 'backpack'
  pause 600
endif
if @findtype! '0x1bd1' 'any' 'o' 'any' '2'
  @movetype '0x1bd1' 'o' 'backpack'
  pause 1000
endif
if @findtype! '0xeed' 'any' 'o' 'any' '2'
  @movetype '0xeed' 'o' 'backpack'
  pause 1000
endif
if @findtype! '0xf26' 'any' 'o' 'any' '2'
  @movetype '0xf26' 'o' 'backpack'
  pause 1000
endif
if @findtype! '0x26b4' 'any' 'o' 'any' '2'
  @movetype '0x26b4' 'o' 'backpack'
  pause 1000
endif
ignoreobject 'o'
sysmsg 'Corpse Now Ignored' '25'
pause '1500'
"I am the Keymaster! Are you the Gatekeeper?" "It's hard being the Sky Father"
Tattersail
Master Scribe
Posts: 57
Joined: Wed Nov 25, 2015 8:22 am

Re: UOsteam macro for skinning and looting mobs

Post by Tattersail »

This one I gotta try...And thanks for posting your other codes btw :)
Adramalech
Expert Scribe
Posts: 30
Joined: Fri Jan 29, 2016 2:57 pm

Re: UOsteam macro for skinning and looting mobs

Post by Adramalech »

Thank you for this code!
User avatar
Dyēus Phater
Expert Scribe
Posts: 37
Joined: Thu Feb 18, 2016 3:31 am

Re: UOsteam macro for skinning and looting mobs

Post by Dyēus Phater »

You guys are welcome. as I said I found this one on here. I have found that you can easily set it to a hotkey and hit that as you have a corpse at your feet and it will skin and loot the resources and gold off of it. then ignore that corpse and you can then hit it again for the next... not sure how to make it run in a loop till its finished...
"I am the Keymaster! Are you the Gatekeeper?" "It's hard being the Sky Father"
Jax2
Grandmaster Scribe
Posts: 95
Joined: Wed Apr 08, 2009 3:23 pm

Re: UOsteam macro for skinning and looting mobs

Post by Jax2 »

How would one edit this so it cuts on corpse before dragging the leather? I get can't hold more weight issue non-stop with this and have to manually cut on corpse.
Locked