• 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

Config - Looting Question

Joined
Feb 4, 2019
RedCents
20¢
Is there a way to get Kissassist to not turn looting off when your inventory is full? I am trying to farm stackable items on an emulator server. My brother has a macro that will keep looting, but with Kissassit turns looting off once full.

Thanks for any advice.
 
if you have more than 1 character in your group, kiss will assign someone else in the group as master looter when the looters inventory is full. You have to set LootOn=1 for each character you want to be able to loot.

Also you can make a change to the macro.

Change this:
Code:
    Sub LootStuff
        /if (!${LootOn} || (!${Me.UseAdvancedLooting} && ${AggroTargetID}) || (${IAmMA} && ${AggroTargetID}) || (${DMZ} && ${Me.InInstance}==FALSE) || ${Me.Invis}) /return
        DEBUGN LootStuff: Enter
        /if (${Me.FreeInventory}==0) {
            /echo Inventory is full. Looting OFF
            /varset LootOn 0
            /if (${Defined[NALStatus]}) {
                /varset NALStatus 0
            }
            /return
        }
        /doevents
        /if (${Me.UseAdvancedLooting}) {
            /if (${Bool[${Plugin[MQ2AutoLoot]}]}) {
                /if (${AutoLoot.Active}) /return
            }
            /call UseAdvLoot
        } else {
            /call LootMobs
        }
        /call DoWeMove 0 lootstuff
        DEBUGN LootStuff: Leave
    /return

To This:

Code:
    Sub LootStuff
        /if (!${LootOn} || (!${Me.UseAdvancedLooting} && ${AggroTargetID}) || (${IAmMA} && ${AggroTargetID}) || (${DMZ} && ${Me.InInstance}==FALSE) || ${Me.Invis}) /return
        DEBUGN LootStuff: Enter
        |/if (${Me.FreeInventory}==0) {
            |/echo Inventory is full. Looting OFF
            |/varset LootOn 0
            |/if (${Defined[NALStatus]}) {
                |/varset NALStatus 0
            |}
            |/return
        |}
        /doevents
        /if (${Me.UseAdvancedLooting}) {
            /if (${Bool[${Plugin[MQ2AutoLoot]}]}) {
                /if (${AutoLoot.Active}) /return
            }
            /call UseAdvLoot
        } else {
            /call LootMobs
        }
        /call DoWeMove 0 lootstuff
        DEBUGN LootStuff: Leave
    /return


That will keep it from checking for free inventory slots.
 
Config - Looting Question

Users who are viewing this thread

Back
Top
Cart