How Do You Create A Cast Command From Act Text?

Freeze

New Member
The text comes from the log file and is not player generated. Examples include an ACT trigger.

So I want CB to scan for game emote text and then use Cast.

Ex. "You are connected to the Celestial Gate|RI_Obj_Cb:Cast[Fiery Incineration]"

This syntax don't work.

Should it be "... [Fiery Incineration, TRUE]"

Could you also give an example for how to do CastOn? Like a command that requires an illy to cast Temporal Mimicry on a DPS toon upon a group trigger or incoming text from that DPS toon?
 

Herculezz

ISX Specialist
The text comes from the log file and is not player generated. Examples include an ACT trigger.

So I want CB to scan for game emote text and then use Cast.

Ex. "You are connected to the Celestial Gate|RI_Obj_Cb:Cast[Fiery Incineration]"

This syntax don't work.

Should it be "... [Fiery Incineration, TRUE]"

Could you also give an example for how to do CastOn? Like a command that requires an illy to cast Temporal Mimicry on a DPS toon upon a group trigger or incoming text from that DPS toon?

Object names in Innerspace are case sensitive, As such you need to Capitalize the B in CB, "You are connected to the Celestial Gate|RI_Obj_CB:Cast[Fiery Incineration]"

CastOn is very similar to cast but needs 2 args passed in, RI_Obj_CB:CastOn[Spell Name,ToonName]

so to cast Temporal Mimicry on a specific toon, when a Text is detected, "Text from eq2|RI_Obj_CB:CastOn[Temporal Mimicry,Toon]"

both Cast and CastOn have a final optional argument, for Cancelling cast, it defaults to FALSE but you can add ,TRUE or ,1 to make it cancel whatever it is casting to cast

P.S. Remember to select the correct option either IncomingText or AnnounceText!! there is a difference.
 
Top Bottom