• 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 --->

Need Loot Macro (1 Viewer)

Blackfeather

New member
Joined
May 25, 2009
RedCents
98¢
Does anyone have a working loot macro, which uses Ninjadvloot.inc, they would care to share?

Ive searched the hud and macro forum but cant find one there.

My programming skills are nil :(

Thanks in advance.
 
Here is what I use:

It reports to the MQ2 window if it stops from mobs to close or no corpse in range. These settings are adjusted in the ninjadvloot.inc file.

I also included the sellstuff mac by Maskio. Allows you to sell off vender junk with single mouse click. Requires the items to be flagged for sell in the loot.ini file

Rich (BB code):
| LootMobs.mac v1.1 by hoosierbilly 23 Sept 2011
| Based on - Sellstuff.mac v1.1 by Maskoi 11/27/2010
| Type /mac lootmobs
| Required  Ninjadvloot.inc v2.+ and MQ2Moveutils

#include Ninjadvloot.inc
Sub Main
   /call SetupAdvLootVars
	/if (!${SpawnCount[corpse radius ${CorpseRadius} zradius 100 noalert 25]}) {
	/echo There are no corpse's within ${CorpseRadius} units range.
	/squelch /endmac
	}
	/if (${SpawnCount[npc radius ${MobsTooClose} zradius 100 noalert ${AlertList}]}) {
	/echo Can't loot while mobs are within ${MobsTooClose} units range.
	/squelch /endmac
	}
    /call LootMobs
	/look
	/echo Looting complete - go slay some more.
/squelch /return
 
Last edited:
Red cented thanks for sharing.

Nice I will include this in the compile macro folder for those that just need quick cleanup looting. I will put Sellstuff in the next compile macro folder too.
 
Attached is an updated SellStuff.mac

After automatically selling everything it will retarget the merchant & open your bags. If you sell additional items to the merchant it will automatically update your Loot.ini file to auto sell that item next time.


Rich (BB code):
| Sellstuff.mac v1.1 by Maskoi 11/27/2010
| Target the vendor you want to sell to and type /mac sellstuff
| Required  Ninjadvloot.inc v2.+ and a loot.ini file with items marked as sell
#include Ninjadvloot.inc
Sub Main
   /call SetupAdvLootVars
   /call DoLootStuff sell

/target merchant
/echo autoselling complete - your turn
/popup autoselling complete - your turn

/click right target
/keypress OPEN_INV_BAGS
:wait
/doevents
/if (${Target.ID} && ${Target.Distance}<25) /goto :wait

/return
 
Need Loot Macro

Users who are viewing this thread

Back
Top