• 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

Question - Auto inventry

Joined
May 5, 2013
RedCents
544¢
Hey guys, Odd question and I'm at a loss to find the answer. On one PC I have wizirds giving me issues when they get a mod rod and it's not dropping it into inventory.. I get a This is an invalid slot and they don't cast much. I drop the mod rod into the inventory and boom they start rocking the DPS. Where do fix this at? EOK nuke and even in KA it won't drop the rods automatically.
 
This is how I fixed it in my copy of EOKNuke

I ripped off Kissassist...

In the sub main after the existing declares add:

PHP:
    /declare CursorID               int         outer       0
    /declare CursorIDCount          int         outer       0
    /declare CursorIDTimer          timer       outer       0

In the mainloop before the /call specialsubs line I added:

PHP:
    /if (${Cursor.ID} && !${CursorIDTimer}) {
        /varset CursorIDTimer 10S
        /if (${Me.FreeInventory}) {
            /echo ${Cursor.Name} is stuck on my cursor. Dropping it into inventory in 15s.
            /timed 150 /autoinventory
        } else /if (!${Me.FreeInventory}) {
            /echo HEY YOUR INVENTORY IS FULL!
        }
    }

Make sure you take out the:

PHP:
    /if ( ${Cursor.Name.Equal[${Rod}]} ) /autoinventory
 
Question - Auto inventry

Users who are viewing this thread

Back
Top
Cart