Spell Cast based off announcements

rarespoon

Member
Just a quick question, I know somewhere in the raid options there are spell casts being performed based off announcements, ie., cure curse.

I've went through the text and was wondering if there is a way to do this in a group setting for other types. For example, I would like my Illusionist to cast Time Warp based off of my Wizard casting Fiery Blast. Is there a way I can have my wizard announce Fiery Blast that would trigger my Illusionist to cast Time Warp? I am doing it manually now based off the announcement but would like to know if I can automate it.

Thanks again for all the great work, love the product!
 

rarespoon

Member
A lot of things can be coded. I would suggest familiarizing yourself with the ISXEQ2 wiki. http://eq2.isxgames.com/wiki/index.php?title=Main_Page It will be very useful to learn how to code.
Thanks,

I looked over the wiki before but haven't been able to find an example all ready in the text. Guess I'll keep searching for a similar event somewhere.

Event[EQ2_onIncomingChatText]:AttachAtom[MyAtom]
atom MyAtom(int ChatType, string Message, string Speaker, string Target, string SpeakerIsNPC, string ChannelName)
{
;do stuff
}
 

Reddo

Member
Or you can just set your wizard to send tell to illusionist in the announce tab when he casts fiery blast saying Cast: Time Warp. As long as your wizard is in your eq2chars.inc file then it should work just fine
 

rarespoon

Member
Or you can just set your wizard to send tell to illusionist in the announce tab when he casts fiery blast saying Cast: Time Warp. As long as your wizard is in your eq2chars.inc file then it should work just fine
HA!

Will try that out. Was looking through announce options and didn't see anything indicated this would work. "Cast: Time Warp" would be the hidden trigger then?

Thanks again.
 
Top Bottom