• 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

Toggle Advanced Looting System On/Off

Maskoi

old and salty
Joined
Sep 28, 2005
RedCents
82,796¢
Was just informed of the /useadvlooting on/off command lmao
Rich (BB code):
 /useadvlooting off/on

I will this macro up if anyone needs to see Advanced looting window locations.

I whipped up this macro up to toggle advanced looting on and off while I look at this dumb ass system.

ToggleAdvloot.mac v 1.0 by Maskoi 04/05/2015
Toggle advanced loot system on or off
/mac toggleadvloot on/off

Rich (BB code):
| ToggleAdvloot.mac v 1.0 by Maskoi 04/05/2015 
| toggle advanced loot system on or off
| /mac toggleadvloot on/off

Sub Main
    
    /if (${Defined[Param0]}) {
        /declare OnOff outer string 
        /varset OnOff ${Param0} 
    } else {
        /echo Usage: /mac toogleadvloot on or /mac toogleadvloot off
        /end
    }

    /if (!${Window[AdvancedLootWnd].Open}) /windowstate AdvancedLootWnd open
    /delay 20 ${Window[AdvancedLootWnd].Open}
    /if (${Window[AdvancedLootWnd].Open}) /notify AdvancedLootWnd ADLW_EditFiltersBtn leftmouseup
    /delay 20 ${Window[LootFiltersWnd].Open}
    /if (${Window[LootFiltersWnd].Open} && ${Window[LootFiltersWnd].Child[LF_UseAdvancedLootingCheckbox].Checked} && ${OnOff.Equal[off]})  {
        /notify LootFiltersWnd LF_UseAdvancedLootingCheckbox leftmouseup
        /echo Advanced Looting is now OFF
    } else /if (${Window[LootFiltersWnd].Open} && !${Window[LootFiltersWnd].Child[LF_UseAdvancedLootingCheckbox].Checked} && ${OnOff.Equal[on]})  {
        /notify LootFiltersWnd LF_UseAdvancedLootingCheckbox leftmouseup
        /echo Advanced Looting is now ON
    } else {
        /echo Advanced Looting is already ${OnOff}
    }
    /delay 10
    /if (${Window[LootFiltersWnd].Open}) /windowstate LootFiltersWnd close
    /delay 20 !${Window[LootFiltersWnd].Open}
    /if (${Window[AdvancedLootWnd].Open}) /windowstate AdvancedLootWnd close
    /delay !20 ${Window[LootFiltersWnd].Open}

/return
 

Attachments

Last edited:
Was just informed of the /useadvlooting command lmao
Rich (BB code):
 /useadvlooting

but /useadvlooting is a toggle. My mac knows if advance looting is on or off. so it will leave it won't toggle it on if already off.

So if some toons have it on and some have it off /mac toggleadvloot off might be a little better than /useadvlooting
 
Toggle Advanced Looting System On/Off

Users who are viewing this thread

Back
Top
Cart