• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Need help with a macro

Abyss

Well-known member
Joined
Sep 30, 2005
RedCents
69¢
How would I go about adding a feature in a macro, that once I have no room in my inventory it would process a certain command?

I am using ninjadvloot

This is a example of what I am trying to do:

Rich (BB code):
/if (${Me.FreeInventory}>=0) {
	/echo No more Inventory space
	/call movetovendor

Any ideas?
 
Rich (BB code):
/if (${Me.FreeInventory}<1) {
	/echo No more Inventory space
	/call movetovendor
}

I use a code very similar to this. Just changed the conditional.
 
i like to use events

#event Full "#*#There was no place to put that#*#"

sub Event_full
do things
/return
 
What I use in kissassist same thing piratically.

Rich (BB code):
       /if (${Me.FreeInventory}==0) {
            /echo Inventory is full. Looting OFF
            /varset LootOn 0
        }

Events are good too and if combined usually makes almost a full proof detection method.
 
Need help with a macro

Users who are viewing this thread

Back
Top
Cart