• 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 - Declaring Variables?

AnonymousHero

Active member
Joined
Apr 22, 2011
RedCents
516¢
I was wondering if there is a way to declare variables when you first start EQ or MQ2... like in the INI file or something...

I've recently started using MQ2Events but there are some times when I'd rather disable them so having a variable I can check to see if I want to do a particular action or not could be helpful.
 
you can declare variables in 2 ways (that i know of) through macros using /declare or by creating a plugin and doing a custom TLO... (my best idea for what your talking about would be creating the plugin or asking someone with coding knowledge to create it for you) both are fairly simple to do
 
you can create hot keys. This will create a variable in MQ2 that is active until MQ2 shuts down

Rich (BB code):
/declare MyVarName int global 0
Turn the variable on
Rich (BB code):
/varset MyVarName 1
Turn the variable off
Rich (BB code):
/varset MyVarName 0
Do something if on
Rich (BB code):
/if (${MyVarName}) /echo Do something here

Also could be accomplished with config files
http://www.macroquest2.com/wiki/index.php/CFG_Files
 
Question - Declaring Variables?

Users who are viewing this thread

Back
Top
Cart