how do i make the interior cell reset its enemys?
so after i kill every enemy in that cell/dungen how do i make
them reset so i can go back and do it all over again.
Im not very good at scripting can some one help me?
Thanks!
Event OnInit() UnRegisterForUpdate() ; Prevents double registration if OnInit() happens twice RegisterForSingleUpdate(10)EndEventEvent OnUpdate() if GetParentCell() != Game.GetPlayer().GetParentCell() && IsDead() ; If we are dead and the player's not here Reset() endifEndEvent