• 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

Request - A dummies guide for if statements?

Joined
Aug 5, 2013
RedCents
396¢
could anyone help me figure out a if statement?

/if (! ${Target.State.Equal[SIT]})
/call xxxxxx

would this work?

trying to add this to macro and failing because I really im bad with if statements currently.
 
${Target.State.Equal[SIT]} returns true if sitting and false if not. The call command has to be on the same line as the IF unless you do

/if (!${Target.State.Equal[SIT]}) {
/call xxxxx
}

or

/if (!${Target.State.Equal[SIT]}) /call xxxxx
 
Also, you can paste any commands into the EQ window by putting /echo in front of it. You will see TRUE or FALSE or NULL which will give you an idea of where you are going wrong. If you don't know how to paste, open the key commands and go to ALL. Find paste and assign it a key. I use CTL + F12.
 
Request - A dummies guide for if statements?

Users who are viewing this thread

Back
Top
Cart