T
The_Prophet
Guest
ok basically i have this trigger call a function that creates all the spawns and stuff. now line *1* works perfectly fine. Line *2* only works if i make line 1 a comment or i call it using a completly different trigger. Why can't i get line 1 and 2 to work right after each other as listed? I listed below a slim down version of my trigger, just containing all the lines that i though might cuase the problem.
set udg_Counter = udg_Counter + 1
if udg_Counter == 1 or udg_Counter == 3 or udg_Counter == 5 or udg_Counter == 7 then
*1* call Create_Spawn('h005','h008', 'h007', 'u001', "Abilities\\Spells\\Demon\\DarkPortal\\DarkPortalTarget.mdl", Player(13))
*2* call Create_Spawn('h005','h000', 'h002', 'u00E', "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl", Player(14))
endif
if udg_Counter == 8 then
set udg_Counter = 0
endif


