Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

12 lines
307 B
Plaintext

void main()
{
SetLocalInt(OBJECT_SELF,"iCounter",0);
{
effect eSwarm;
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
eSwarm = EffectSwarm(TRUE, "WarriorSlave", "Wanderer", "HalffiendFade", "UettinMage");
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eSwarm, oPC, 180.0f);
}
}