Heyas ppl, im trying to make a mob that will summon another custom mob like shamans summon elementals, is this possible on either LUA or Ai_agents? and if so, how?. Im using Ascent.
Thanks![]()
Heyas ppl, im trying to make a mob that will summon another custom mob like shamans summon elementals, is this possible on either LUA or Ai_agents? and if so, how?. Im using Ascent.
Thanks![]()
Ok nevermind i found the solution to this using Lua code, and im sharing it with you all, hope its helpful to anyone
What this does is spawn the creature with its ID a few steps to the right of where the mob is standing, staying for 60000 miliseconds aka 1 min then it will despawn.Code:function SummonTest(pUnit, Event) pUnit:SpawnCreature(CreatureID, pUnit:GetX()-5, pUnit:GetY(), pUnit:GetZ(), pUnit:GetO(), 70, 60000) end