EZ Server

General Category => Warrior => Topic started by: Poker-ecaf on May 05, 2015, 04:33:28 am



Title: Help for Command!
Post by: Poker-ecaf on May 05, 2015, 04:33:28 am
hi, lookin for toggle grp member button

grp2 -> Lead -> second -> third .... last -> Lead .....
grp3 -> Lead -> second -> third .... ..... ......


would be awesome each grp toggle in one button each time an other member

thanks if anyone can help or info if it is possable

or the other way is split toons ... one button got few chars i choose and toggle them as more are possable on one button as better it is.


Title: Re: Help for Command!
Post by: Natedog on May 05, 2015, 05:08:24 am
Are you talking about a command to move players around in the raid window?


Title: Re: Help for Command!
Post by: Poker-ecaf on May 05, 2015, 05:24:03 am
no targeting

Button click

target Grp 2 player 1

click again

target Grp 2 Player 2

click again

target Grp 2 Player 3

.......

or

direct ( Name1) ( Name2 ) but same system
that i get 6 players on 1 button


Title: Re: Help for Command!
Post by: Darpey on May 05, 2015, 07:09:44 am
For single target buffing?


Title: Re: Help for Command!
Post by: Poker-ecaf on May 05, 2015, 09:29:58 am
yes that sequenzial thing


Title: Re: Help for Command!
Post by: Darpey on May 05, 2015, 09:44:11 am
/bct Buffersname //target id ${Dudeyouneedbuffed.ID}
/bct Buffersname //cast 3 -maxtries|4
/pause 30
/bct Buffersname //target id ${Otherdudethatneedsbuffsname.ID}
/bct Buffersname //cast 3 -maxtries|4

^ that makes buffing man buff first guy, pause 3 seconds, then buff second guy with whatever is in spell gem #3, allowing for up to 3 fizzles

don't know if that's what you're looking for


Title: Re: Help for Command!
Post by: Darpey on May 05, 2015, 09:48:49 am
Stole this one from some forum... wasn't aware you could target group members.

/target ${Group.Member[1]}

^ This command supposedly targets the first member of your group


Title: Re: Help for Command!
Post by: Darpey on May 05, 2015, 09:49:54 am
/bct Buffersname //target ${Group.Member[1]}
/bct Buffersname //cast 3 -maxtries|4
/pause 30
/bct Buffersname //target ${Group.Member[2]}
/bct Buffersname //cast 3 -maxtries|4

^ This might be closer to what you're looking for...

You would need 2 others of these, with 3, 4 and 5, 6



Full disclaimer... I have not tried this, so no idea if it actually works


Title: Re: Help for Command!
Post by: Poker-ecaf on May 05, 2015, 11:06:07 am
thanks for helping i want an sequetial hotkey like World of Warcraft

maybe that looks like [sequential]/target toon1;/target toon2;/target toon3

maybe that exist or work if not np then my question if it possable to get an way to know how the toons in grp 2 and 3 looks

using Underfoot client and base UI


Title: Re: Help for Command!
Post by: Blurring on May 05, 2015, 12:42:40 pm
Look into /multiline and /timed commands for this.


Title: Re: Help for Command!
Post by: balidet on May 05, 2015, 01:17:35 pm
the enhanced UI's on this board will show you the health and mana for all toons in your raid up to 15...look into it... its a simple plug in...


stop using single target buffs!

or any buffs other than XP buff!

join the dark side...


Title: Re: Help for Command!
Post by: Phah on May 05, 2015, 06:11:21 pm
if you want to fully automate casting a single-target buff, it is probably easiest to simply write an MQ2 macro instead of relying on the built-in game macros. MQ2 macros aren't limited to only 5 lines, and you get all sorts of extra nice things from MQ2, like the 'raid' variable, and loops!

something like this:

/for counter 1 to ${raid.Members}  
/target id ${raid.Member[counter].id}
/cast <buff spell>
/next counter

http://www.macroquest2.com/includes/wassup/manual.php as reference, for anyone who cares