• 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 - /Burn is suddenly not doing anything

surfdog21

Seasoned veteran member
Joined
Jul 26, 2016
RedCents
1,234¢
I am hitting my /burn keys and its not doing anything atm...it worked fine earlier not sure whats up?
 
it's hit or miss for me when i send it through eqbc. wish we had the old trigger method back
 
I believe there was an issue in KISS 10 where burns would no longer trigger after you zoned, which was fixed by restarting the macro after zoning. Don't know whether that would apply in KISS11 though
 
The BurnText was never removed from the ini file and there is still a check in the top of the burn routine for a blank BurnText. The check for the blank/null BurnText needs to be removed from the burn routine, but if you deleted the text from the ini file, this would be an issue.
 
The Event Burn needs to be changed:

Code:
    Sub Event_Burn
        /if (${IAmDead} || ${Me.Hovering} || ${CampZone}!=${Zone.ID} || ${BurnText.Equal[null]} || !${BurnText.Length}) {
            /doevents flush Burn
            /return
        }

Needs to change too:

Code:
    Sub Event_Burn
        /if (${IAmDead} || ${Me.Hovering} || ${CampZone}!=${Zone.ID}) {
            /doevents flush Burn
            /return
        }
 
/echo burn was the issue, once I eliminate the /echo and just have /burn everything is right as rain
 
Question - /Burn is suddenly not doing anything

Users who are viewing this thread

Back
Top
Cart