e_player.zombie_vars[ "zombie_powerup_zombie_blood_on" ] = 1;
if(isDefined(player.zombie_vars["zombie_powerup_zombie_blood_on"]))
//Whatever action you want for players with zombie blood
Thanks a lot!This Var is used when zombie blood is activated for a player
Code:e_player.zombie_vars[ "zombie_powerup_zombie_blood_on" ] = 1;
To see if it is activated on a player just do it like this
Code:if(isDefined(player.zombie_vars["zombie_powerup_zombie_blood_on"])) //Whatever action you want for players with zombie blood
No ProblemThanks a lot!