• 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

Problem - Rogue doesn't use Hiatus if AutoHide=1

Joined
Dec 24, 2017
RedCents
1,813¢
Besides manual clicking the bastard, there a way around this? My other toons use Hiatus just fine, this is the only reason I can see the rogue doesn't.
 
I think a better question here is why are you using Hiatus, thing has a 1,000% self slow on it :p
1550362605321.png

I've always been a fan of Breather as it lasts almost as long and has a significantly faster recast timer.
1550362648485.png
Also, pretty sure default says no casting or using abilities if you're invis, IE: Hiding.
 
So, I toyed around with this and got some crude coding to work out.
In the Kissassist1004e15 file, you can goto line: 10568 and swap Roguestuff for the below code. If you prefer Breather, you can swap out Hiatus. Rogue is now keeping way better endurance with out manual clicks.


Code:
| ----------------------------------------------------------------------------
| SUB: Roguestuff
| ----------------------------------------------------------------------------
    Sub Roguestuff
  
        /if (${Me.Class.Name.Equal[Rogue]}) {
            /if (!${Me.CombatState.Equal[COMBAT]}) {
                /if (${Me.CombatAbilityReady[Hiatus Rk. II]} && ${Me.PctEndurance} < 25) {
                /Echo Time for some endurance Regen!
                /Disc Hiatus Rk. II
                }
            }
        }
                              
        /if (${Me.Class.Name.Equal[Rogue]}) {
            /if (!${Me.Combat} && ${AutoHide}) {
                /if (${Me.AbilityReady[hide]} && ${Me.AbilityReady[sneak]}) {
                    /Echo Stealth Mode Activated!
                    /doability hide
                    /doability sneak
                }
            }
        }
    /return
| ----------------------------------------------------------------------------
| SUB: LoadSpellSet
| ----------------------------------------------------------------------------


I created a new post as a tip, instead of a problem, just an FYI.
 
Last edited:
Problem - Rogue doesn't use Hiatus if AutoHide=1

Users who are viewing this thread

Back
Top
Cart