Page 1 of 6
target whoever hails
Posted: Fri Jan 07, 2005 6:33 pm
by creations
could anyone help me out with a sub that would target anyone that hails me?
Posted: Fri Jan 07, 2005 6:37 pm
by dont_know_at_all
What would happen if you searched for "Hail" in the macro forum?
Posted: Fri Jan 07, 2005 7:02 pm
by missingfiles
dont_know_at_all wrote:What would happen if you searched for "Hail" in the macro forum?
Maby Your though process has increased +1 (2)
or Lazyness skill has decreased -1 (999)
Posted: Fri Jan 07, 2005 7:11 pm
by aChallenged1
I found some macros that would be helpful searching setting it to find all parameters that I used. That wasn't hard at all.
Posted: Fri Jan 07, 2005 7:15 pm
by creations
not trying to be lazy.. i've searched the forums. i found a macro that alerts/beeps when someone hails you, but that's not what i'm looking for.
i need to be able to /target anyone that hails me.
Posted: Fri Jan 07, 2005 7:32 pm
by missingfiles
creations wrote:not trying to be lazy.. i've searched the forums. i found a macro that alerts/beeps when someone hails you, but that's not what i'm looking for.
i need to be able to /target anyone that hails me.
Ever think of modifying that macro to do what you want it to do? It honestly makes me mad your not saying I found X tryed Y and it didnt work could someone check my work. Read the manual learn how it works and add what you need
YOU ARE LAZY YOU WANT SOMEONE ELSE TO WRITE YOUR MACRO
ALMOST EVERY POST YOU HAVE MADE CONSISITS OF:
Can some one or Could you were your asking for someone else to make things the way you want them. Take the time to learn.
Posted: Sat Jan 08, 2005 12:19 pm
by JGC84
i'll be nice:
Code: Select all
#Event event_hailme "#1# says, 'Hail, PUTYOURNAMEHERE'"
sub event_hailme(Line, Person)
/target Person
/return
havnt tested, dont care to, wrote in 1.2s flat.
Posted: Sat Jan 08, 2005 12:38 pm
by JJ
JGC84 wrote:i'll be nice:
Code: Select all
#Event event_hailme "#1# says, 'Hail, PUTYOURNAMEHERE'"
sub event_hailme(Line, Person)
/target Person
/return
havnt tested, dont care to, wrote in 1.2s flat.
He/she'll write back saying it don't work.
Change #Event event_hailme to #Event hailme
Posted: Sun Jan 09, 2005 2:05 am
by JGC84
? can the event sub title not have an underscore in it?
Posted: Sun Jan 09, 2005 6:46 am
by aChallenged1
Acutal SUBs must have event_subname.
The event just has the subname followed by the conditions.
Code: Select all
#Event hailme "#1# says, 'Hail, PUTYOURNAMEHERE'"
(don't forget your /doevents in your loop or it will never happen)
sub event_hailme
/target {Param0}
/return
At least I think param will work.
Posted: Sun Jan 09, 2005 12:42 pm
by JGC84
ah yes i see the whole event_ thing now, i was being retarded, and i'm good at that!
Posted: Mon Jan 10, 2005 9:13 am
by Night Hawk
PUTYOURNAMEHER = ${Me.Name}
Posted: Mon Jan 10, 2005 4:03 pm
by JGC84
Code: Select all
#Event hailme "#1# says, 'Hail, ${Me.Name}'"
sub event_hailme(Line, Person)
/target ${Person}
/return
wow that took way to much coordinated effort for such a usless sub.....
Posted: Mon Jan 10, 2005 4:59 pm
by missingfiles
Love how the ass hat creations hasent even posted to say thanks.
Posted: Tue Jan 11, 2005 12:00 pm
by Night Hawk
acctually in events I thought it was |${Me.Name}|
but what do I know.