devastator
New member
- Joined
- Apr 28, 2005
- RedCents
- 0¢
Looking for a cash loot only macro preferably just plat and gold. I couldn't seem to find one listed that did just this. Any help is appreciated.
thank you
thank you
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

Sub Main
#event toofar "#*#You are too fay away#*#"
/declare looted string outer
/declare looted2 string outer
/declare looted3 string outer
/declare looted4 string outer
/declare looted5 string outer
:loopstart
/tar corpse next
/if (${Target.Equal[$looted}]} /tar corpse next
/if (${Target.Equal[$looted2}]} /tar corpse next
/if (${Target.Equal[$looted3}]} /tar corpse next
/if (${Target.Equal[$looted4}]} /tar corpse next
/if (${Target.Equal[$looted5}]} /tar corpse next
/if (${Target.Equal[Corpse]}) && /if (${Target.Distance}>100) /goto :loopstart
:loop2
/stick
/delay 5s
/loot
/doevents
/varset looted ${Target}
/delay 3s
/keypress esc
/tar corpse next
/if (${Target.Equal[$looted}]} /tar corpse next
/if (${Target.Equal[$looted2}]} /tar corpse next
/if (${Target.Equal[$looted3}]} /tar corpse next
/if (${Target.Equal[$looted4}]} /tar corpse next
/if (${Target.Equal[$looted5}]} /tar corpse next
/if (${Target.Equal[Corpse]}) && /if (${Target.Distance}>100) /goto :loopstart
:loop2
/stick
/delay 5s
/loot
/doevents
/varset looted2 ${Target}
/delay 3s
/keypress esc
/tar corpse next
/if (${Target.Equal[$looted}]} /tar corpse next
/if (${Target.Equal[$looted2}]} /tar corpse next
/if (${Target.Equal[$looted3}]} /tar corpse next
/if (${Target.Equal[$looted4}]} /tar corpse next
/if (${Target.Equal[$looted5}]} /tar corpse next
/if (${Target.Equal[Corpse]}) && /if (${Target.Distance}>100) /goto :loopstart
:loop2
/stick
/delay 5s
/loot
/doevents
/varset looted3 ${Target}
/delay 3s
/keypress esc
/tar corpse next
/if (${Target.Equal[$looted}]} /tar corpse next
/if (${Target.Equal[$looted2}]} /tar corpse next
/if (${Target.Equal[$looted3}]} /tar corpse next
/if (${Target.Equal[$looted4}]} /tar corpse next
/if (${Target.Equal[$looted5}]} /tar corpse next
/if (${Target.Equal[Corpse]}) && /if (${Target.Distance}>100) /goto :loopstart
:loop2
/stick
/delay 5s
/loot
/doevents
/varset looted4 ${Target}
/delay 3s
/keypress esc
/tar corpse next
/if (${Target.Equal[$looted}]} /tar corpse next
/if (${Target.Equal[$looted2}]} /tar corpse next
/if (${Target.Equal[$looted3}]} /tar corpse next
/if (${Target.Equal[$looted4}]} /tar corpse next
/if (${Target.Equal[$looted5}]} /tar corpse next
/if (${Target.Equal[Corpse]}) && /if (${Target.Distance}>100) /goto :loopstart
:loop2
/stick
/delay 5s
/loot
/doevents
/varset looted5 ${Target}
/delay 3s
/keypress esc
/goto :loopstart
/return
Sub event_toofar
/goto :loop2
/return
Cadewen said:Since you don't have to click anything but the corpse, that should be easy.
Chances are, this won't work, cause I'm an idiot, but you can try it anyway. It shouldn't loot the same corpse twice. Never used /varset before, dunno if I used it right, prolly not.
NopeDo you ever put up a code and NOT degrade yourself in the same post?
Cadewen said:Since you don't have to click anything but the corpse, that should be easy.
Chances are, this won't work, cause I'm an idiot, but you can try it anyway. It shouldn't loot the same corpse twice. Never used /varset before, dunno if I used it right, prolly not.
Moorthon said:Do you ever put up a code and NOT degrade yourself in the same post?
Come on now, you can just say it may not work! No need for self-degrading here... You give us great ideas even if they don't work, and the "Gurus" can fix em up.Cadewen said:Nopelol, I think Cadewen has been loitering around the mq2 boards for too long!! I love ya work Cad... I use a lot of your stuff all the time... No one here to flame the hell out of youIf you don't stop the self degradation, I'll just have to bitchslap you til you come to your senses....
![]()
Well what are the errors? We're not psychic.been playing with this some and can't get it to work getting error messages
Things I noticed at a quick readover...
If you don't loot items on the corpse even just to destroy, this will only keep track of one corpse that has been looted and once you move to another one, /target corpse next may bring up a corpse that has already been looted but not flagged as such. You could lock yourself in a loop between two corpses until they expire...
Also, the var looted itries to get ${Me.Target}. Target is not a member of Character, but is a totally different datatype. So you would want ${Target}. ${Target} is a string, so looted should be a string rather than an int. Or you could use ${Target.ID} but then you'd have to change the check line slightly.
Also, /goto :loop2 in the event sub, can you do that referencing a label in another subroutine? I guess I never tried, I just assumed you couldn't. And if you /loot and it's too far, isn't the event you'd need "your target is too far away, move closer"? (I'm sure that's not the exact text but I don't feel like testing right now) Only get the decay timer when you /con or right click
I wasn't thinking when I did that event, fixed that too. And I THINK you can use /goto :loop2 in a sub, not sure of that though
