• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Question - Syntax Q, help me! it will take 15 sec... (1 Viewer)

bertoxboy

New member
Joined
Nov 19, 2015
RedCents
Rich (BB code):
/declare pauserot int outer 0


:pauserot
if(${pauserot.Equal[1]}){

/goto :pauserot
}

What is the correct syntax to set pauserot to 1 and what is the correct syntax to check if it is equal to 1 in the if statement? I keep getting errors trying to edit this macro...
 
Just change pauserot?
Rich (BB code):
/varset pauserot 1

Start with it at 1?
Rich (BB code):
/declare pauserot int outer 1

Easy if. Since it's either 1 or 0, true/false, you don't need to check it further than this.
Rich (BB code):
/if (${pauserot}) {
/goto :pauserot
}

Not sure what errors you are seeing, post them with what code is broken.
 
Last edited:
Question - Syntax Q, help me! it will take 15 sec...

Users who are viewing this thread

Back
Top