Page 1 of 2
MQ2 Condition list/collection
Posted: Fri Aug 22, 2014 3:05 pm
by eggybob
Is there a list or collection somewhere of all the different conditions such as ME.AltAbility ect ect
Thanks in advance
Re: MQ2 Condition list/collection
Posted: Fri Aug 22, 2014 3:15 pm
by Alulien
Re: MQ2 Condition list/collection
Posted: Fri Aug 22, 2014 3:34 pm
by eggybob
thanks but attack seems to not be there im trying to do something like this /if ( ${ME.ATTACKING} ) but i guess thats not right?
sorry im completly new to this

Re: MQ2 Condition list/collection
Posted: Fri Aug 22, 2014 3:40 pm
by Alulien
I personally use NetBots for this sort of a check, so you would need that plugin to be loaded (it's included with most of the packages from MQE iirc): ${NetBots[pc CHARACTERNAME].Attacking} is I believe the syntax I use. I'm at work so not 100% - I can verify tonight.
NetBots is really great because it can do things like check HP (% or #/#) without having to target a character (Mana as well, but targeting is irrelevant).
Re: MQ2 Condition list/collection
Posted: Fri Aug 22, 2014 3:42 pm
by eggybob
it appears i have netbots loaded so i will try this thanks
Re: MQ2 Condition list/collection
Posted: Fri Aug 22, 2014 4:13 pm
by eggybob
doesnt seem to like doing anything with netbots

even looked at the commands myself on mmobugs but wouldnt parse anything *sigh*
Re: MQ2 Condition list/collection
Posted: Fri Aug 22, 2014 6:41 pm
by eggybob
rather than start a new post ill put it here. below is my first ever macro. of course its not working.
|Attack.mac
#turbo
Sub Main
/echo ~~ATTACK MACRO LOADED~~
:main loop
/if (${Me.Attacking}){
/bca //target Sritz
/bca //assist
/else
/bca //target Sritz
/stick 25}
/goto :main loop
/return
any advice. (it is suppose to make my group target me and assist if i have attack on, if i am not attacking they are to stick to me at 25.
Re: MQ2 Condition list/collection
Posted: Fri Aug 22, 2014 6:46 pm
by Dreos
What error is it giving you?
Re: MQ2 Condition list/collection
Posted: Fri Aug 22, 2014 6:48 pm
by eggybob
Failed to parse /if command. Could not find command to execute.
Re: MQ2 Condition list/collection
Posted: Fri Aug 22, 2014 6:52 pm
by Dreos
${Me.Attacking} isn't a valid command it looks like.
EDIT- As for the netbots, have you tried doing /netbots send=on and grab=on on your toons? Sometimes that will make it wrk for me.
Double Edit! Sorry. To be honest, something like this is probably best left in a hotkey and used when you want your toons to attack something.
Something along the lines of:
Code: Select all
/multiline ; /bct melee //target id ${Target.ID} ; /timed 2 /stick 15 ; /timed 2 //atack on
Or something like that.
Or! Try ${Me.Combat} from
http://www.macroquest2.com/wiki/index.php/DataType:character that looks like it might work for what you're looking for.