14.03.2013, 21:30
you forgot to delete the pvar when the callback OnPlayerDeath is called
try to add this on OnPlayerDeath
try to add this on OnPlayerDeath
pawn Код:
OnPlayerDeath(playerid, killerid, reason)
{
DeletePVar(playerid,"PillsTaken"); //Deletes the variable that you just set when player dies
return 1;
}