K got 2 locks and i want to send both imps in 1st so i wrote out this(its bound to(1) if that makes a difference):
imsen
********************************************
KeyReset 20000
if %KeyCount% = 1
msg imsend
<<Huala>>
Macro /petattack [target=%$Huala%target]
endif
if %KeyCount% = 2
msg imsend
<<Huup>>
Macro /petattack [target=%$Huala%target]
KeyReset
endif
So it should work like: Hualas pet goes on 1st press and Huups pet goes on @nd press.
What is actually happenin is Hualas pet will attack, Huups pet is not doin anything.
Any suggestions?
I've also tried the followin just to see if they would work under 1 press:
<<All>>
Macro /petattack [target=%$Huala%target]
<<Huala,Huup>>
Macro /petattack [target=%$Huala%target]
I wasn't able to get them to go under 1 press either.



Change
To
%xxx% recalls a variable value. GCP has no value %$Huala%, so it will expand as blank. It will evaluate as
This will work for your first toon, who has a target, but not for the 2nd, who doesn't
Phil