• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Macro Events Question

Autumn

Well-known member
Joined
Dec 1, 2019
RedCents
69¢
looking to figure out how to add a /tar someone who said Hail X charector. the base code would be #event# says, 'Hail, ToonName' from that i want to target the person who did the hail. anyway to do that?
 
anyone know how to get a scrip or event trigger to target someone after a hail? using the code
#event# says, 'Hail, ToonName'
 
anyone know how to get a scrip or event trigger to target someone after a hail? using the code
#event# says, 'Hail, ToonName'
please don't double post. it makes it near impossible for people to help you. (i moved both your posts to an appropriate thread)
 
INI:
#Event Hail "#*##1# says, in Elvish, 'Hail, #2#'#*#"
Sub Main
    /while (${WhateverConditionals}) {
        Some code here
        /doevents
        Some code here
    }
/return
Sub Event_Hail(string line, string Hailer, string Hailed)
    /if (${Hailed.Equal[${Me.CleanName}]}) {
        /target pc ${Hailer}
    }
/return

Is this what you wanted? Just to target someone that hailed you? This might be able to help you
 
Macro Events Question

Users who are viewing this thread

Back
Top
Cart