Moderator: MacroQuest Developers




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 needcreations 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.
Code: Select all
#Event event_hailme "#1# says, 'Hail, PUTYOURNAMEHERE'"
sub event_hailme(Line, Person)
/target Person
/return
He/she'll write back saying it don't work.JGC84 wrote:i'll be nice:
havnt tested, dont care to, wrote in 1.2s flat.Code: Select all
#Event event_hailme "#1# says, 'Hail, PUTYOURNAMEHERE'" sub event_hailme(Line, Person) /target Person /return

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 
Code: Select all
#Event hailme "#1# says, 'Hail, ${Me.Name}'"
sub event_hailme(Line, Person)
/target ${Person}
/return
