Jump to content


Eldriyn

Member Since 20 Jun 2017
Offline Last Active Jul 10 2017 08:51 AM

Topics I've Started

Totemic Druid Spirit Animal in an AI Script.

09 July 2017 - 06:46 PM

Hello. I was not sure where to put this so I'll just drop it here.

 

 

I currently have this which works fine:

 

IF
	ActionListEmpty()
	See(NearestEnemyOf(Myself))
	HaveSpell(TOTEMIC_DRUID_SUMMON_SPIRIT_ANIMAL)  // SPCL621.SPL (Summon Spirit Animal)
	HPGT(NearestEnemyOf(Myself),1)
THEN
	RESPONSE #100
		Spell(NearestEnemyOf(Myself),TOTEMIC_DRUID_SUMMON_SPIRIT_ANIMAL)  // SPCL621.SPL (Summon Spirit Animal)
END

 

However, the part that I can't figure out is the "Choose Wolf, Snake, Bear or Lion" and cast it when the top script triggers.  A spell selection tray comes up when the top part is cast and what I am trying to figure out is how do you select from that tray with the same script to cast whatever animal you want?

 

 

In this example I just want to cast a wolf which is SPCL625 but it doesn't work at all. It does work with ForceSpell but I don't want to cheat with this.