• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Autoloot command? (1 Viewer)

Joined
Feb 6, 2007
RedCents
1,463¢
Is there a command in EQ that I can use in a social to automatically loot mobs? If not is there a plugin or macro that will allow me to target and autoloot mobs that I have killed? I don't want to loot from mobs across the zone or steal loot from mobs that I havn't killed. I just want a simple one button macro or social to loot whatever my mob has on it.

Thanks in advance for any insight provided.
 
Rich (BB code):
Sub Main
/if (!${Defined[t]})         /declare t         int outer 0
/if (!${Defined[loottotal]}) /declare loottotal int outer
/if (!${Defined[lootslot]})  /declare lootslot  int outer
/if (!${Defined[lootleft]})  /declare lootleft  int outer 0
/target mycorpse
/call Loot
/return

Sub Loot
:corpsepull
/corpse
/if (${Target.Distance}>20) {
/plugin mq2csum
/sumcorpse
/delay 2s
/goto :corpsepull
}
/if (${Target.CleanName.Equal[${Me}'s corpse]}) {
  /loot
} else {
  /return
}
/delay 5s ${Me.State.Equal[BIND]}
/if (${Me.State.NotEqual[BIND]}) /goto :corpsepull
/varset loottotal 0
:LootLag
/if (${loottotal}!=${Corpse.Items}) {
  /varset loottotal ${Corpse.Items}
  /delay 1s
  /goto :LootLag
}
/if (${loottotal}<=${lootleft}) {
  /notify LootWnd DoneButton leftmouseup
  /return
}
/varset loottotal ${Math.Calc[${Corpse.Items}-${lootleft}]}
/for lootslot 1 to ${loottotal}
:LootItem
/itemnotify loot${lootslot} rightmouseup
/delay 5 !${Corpse.Item[${lootslot}].ID}
/if (!${Corpse.Item[${lootslot}].ID}) {
  /next lootslot
} else {
  /goto :LootItem
}
/if (${Math.Calc[${Corpse.Items}-${lootleft}]}>0) /goto :LootLag
:DoneLooting
/notify LootWnd DoneButton leftmouseup
/return


This is what i use. Dont remember where i got it from but its not mine. I think siddin wrote it
 
I am trying to understand the macro that "someoneorsomething" provided. I'm not a programer by any stretch of the imgaination but, it looks to me that it loots my corpse after I've died. I'm gonna play with it a bit because that might be handy too.

However, I am interested in command or macro that will loot a mob's corpse that I have killed. Currently I use a social hotbutton that will target the closest corpse, /target corpse, and open the loot window, /loot. I'd like to be able to take the next step and automatically loot the corpse without clicking on every item.
 
Autoloot command?

Users who are viewing this thread

Back
Top