Is there a way to trigger a set of events by checking the party has cast a certain spell at location x,y?
ie like when you summon the vines.
How to check Spell is cast at Location?
-
- Posts: 163
- Joined: Fri Sep 14, 2012 6:20 pm
Re: How to check Spell is cast at Location?
The vines summon is done via a usable item (prob. through the onUseItem-hook, and checking party location)
If you want to do the same thing with a spell you'll prob. need to go through the onCastSpell-hook:
PartyComponent.onCastSpell(self, champion, spell)
If you want to do the same thing with a spell you'll prob. need to go through the onCastSpell-hook:
PartyComponent.onCastSpell(self, champion, spell)
Links to my YouTube playlist of "tutorials" and to my forum thread.
-
- Posts: 163
- Joined: Fri Sep 14, 2012 6:20 pm
Re: How to check Spell is cast at Location?
That's kind of helpful, but I'll be doing it without an item, ie needing a way to check party casts the spell when stood somewhere. it's how I do it without a trigger being used etc.