19.09.2015, 11:39
Or you can use "IsPlayerDying"
something like this
something like this
Code:
public OnPlayerPickUpPickup(playerid, pickupid){
if(IsPlayerDying(playerid)) return 0;
//all other things here
if(pickupid....)
return 1;
}

