Party Targeting

Post Reply
DarkShade
Posts: 6
Joined: Thu Oct 28, 2010 3:33 am

Party Targeting

Post by DarkShade »

Trying to get my party targetting system working for Achaea. Below are the triggers and the commands to be put in their relative script boxes. For whatever reason none of this is working.

\(Party\): (\w+) says\, \"I am calling targets\, focus your fire on my
command\.\"
raidleader = matches[2]

\(Party\)\: (\w+) says\, \"Changed target to (\w+)\.\"
if matches[2] == raidleader then target = matches[3] end

Can someone please tell me the correct lines to put and where? Above is all I was given to do this. Not much of a coder.

Sabiru
Posts: 4
Joined: Mon Oct 04, 2010 2:03 am

Re: Party Targeting

Post by Sabiru »

1. Put: \(Party\): (\w+) says\, \"I am calling targets\, focus your fire on my command\.\"
in the trigger line box, and set it to perl regex (should turn blue)
2. Put: raidleader = matches[2]
in the big white script box
3. Repeat the above steps for the second trigger.
4. Seriously consider whether you want someone else calling your targets for you for the duration of your character's game life.

Parnakra
Posts: 35
Joined: Tue Apr 21, 2009 10:48 am

Re: Party Targeting

Post by Parnakra »

I'm pretty sure you don't have to escape comma's and I'm guessing double quotes don't need it either.

DarkShade
Posts: 6
Joined: Thu Oct 28, 2010 3:33 am

Re: Party Targeting

Post by DarkShade »

4. Seriously consider whether you want someone else calling your targets for you for the duration of your character's game life.

hahahahahahaha I hope to lead someday. We all got to start somewhere *shrugs*

Post Reply