
Posts
2
Respect
Forum Rank
Fresh Corpse
Primary Group
Member
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
function zombies_init()
{
while(1)
{
zombies = getaispeciesarray( "axis", "all" );
for( i = 0; i < zombies.size; i++ )
zombies[i] thread watch_for_death();
}
wait 0.1;
}
function watch_for_death()
{
self waittill("death");
//Whatever you want
}
#using scripts\zm\_zm_spawner;
zm_spawner::register_zombie_death_event_callback( &zombie_death_do_function );
function zombie_death_do_function()
{
//code goes here
}