• 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 - Noparse Problems

Joined
Jun 1, 2016
RedCents
546¢
Hi,

what i want to do is:
- set a variable for myMaster (the char I drive)
- send a bcaa to all chars that they report something to myMaster. e.g. their strength or whatever


Rich (BB code):
 /declare myMaster string outer "Charname"
 /noparse	/bcaa //if (${Me.Exp}<50) /bct ${myMaster} Soon I will loose my level: ${Me.Exp}

Problem is:
- I cannot make myMaster to a variable
- as with noparse all will be parsed at the boxed toon .. and then the toon does not know the myMaster Variable
- if I replace myMaster with the charname all is fine... but I have so many commands and I wanted to be able to Switch myMasters Name easily


Thx for any help
Regards
eqtrader63
 
WOOT and THAT was my 1k post!!! My arms aren't as tired as Raz's when he hit 2k, but my fingers are a little tingly...

I'm still trying to get an IF handled in this fashion. Any issue/error ends the current mac, just wiped lol.

- - - Updated - - -

I don't think I ever got /bcg /bcga or /bca to properly handle an IF (even the embedded conditional IF). In the past I have merely had everyone simply report what their current stats were. here is an old snippet I kept:

Rich (BB code):
/bcg //bct ${Me.Name} Mac: $\{Macro.Name} - Lvl: $\{Me.Level} - PctLvl: $\{Me.PctExp}  - AA: $\{Me.AAPoints} - Plat: $\{Me.Platinum} - Mana: $\{Me.PctMana}  - End: $\{Me.PctEndurance}  - Zone: $\{Zone} - Role: $\{Role} - Radius: $\{MaxRadius} - ReturnToCamp: $\{ReturnToCamp} - Chase: $\{ChaseAssist} - DPSPaused: $\{DPSPaused} - MeleeOn: $\{MeleeOn}

- - - Updated - - -

The thread I linked wasn't quite the one I wanted. There was another one, although not related to its own OP, where ppl posted various cmds (more). Not sure I can find it.

- - - Updated - - -

Ok, EQBC doesn't seem to like embedded conditions. I did however get an regular old IF to work:

Rich (BB code):
/bcg //if ($\{Me.PctExp}<=50) /docommand /bct ${Me} My EXP is: $\{Me.PctExp}

The response kinda gets lost in the original send spam, so maybe using a tell will separate it:
Rich (BB code):
/bcg //if ($\{Me.PctExp}<=50) /docommand /tell ${Me} My EXP is: $\{Me.PctExp}
 
Last edited:
Hm... it was partially working without the /docommand but I had Problems when running Kiss at same time ..

Is it a Problem to ask These Things while running Kissassist ?
And especially if there is a parse error will Kissassist stop?

and one more thought @Maskoi...
Was wondering if there could be a command in kiss that reports some configurable values to the master....
I know should not be high priority but would help to run kiss with over 24 chars

and thy again Incognito

Regards
eqTrader63
 
Is it a Problem to ask These Things while running Kissassist ?
And especially if there is a parse error will Kissassist stop?

Not specifically, only if you typo something, and therefore create an error. In one of my examples above, you will see the majority of the stats are actual KissAssist variables, so yes, you can poll KA stuffs on the fly. If KA is not running, then it will just complain about that variable not being present. Most of the time, when you typo something, or simply attempt something MQ2 doesn't like, it will just throw a msg. Sometimes, current mac will end...

Once you get all the errors out, and everything is working right, then you can issue cmds like these without ever interrupting current running mac.
 
Question - Noparse Problems

Users who are viewing this thread

Back
Top
Cart