General Command by Class?
Reply
Command by Class?
Is there a method of issuing commands to (or excluding) a particular class?

I want to have all priest classes ... except the clerics ... cast Focus of Healing on command. Something like /bca !cleric //casting 9971

That snippet doesn't work obviously or the problem would be solved. Just looking for a one line solution if one is possible?

Thanks
Thu Feb 21, 2013 9:41 pm
Use channels in EQBC. A character can join more than one channel.

/bct <channelname> //command

A one line solution can also use /multiline
Macro
More +

/multiline ; /bct druidchannel //comand; /bct shamanchannel //command; /bct paladinchannel //command; ...


also

Macro
More +
/noparse /bcaa //docommand ${If[${Me.Class.Name.NotEqual[cleric]},/command,/echo I'm a cleric!]}
Thu Feb 21, 2013 10:30 pm
Senior Project Member
Thanks Grumble. All good now.
Fri Feb 22, 2013 12:57 am
General Command by Class?
Reply