27.07.2014, 14:36
Quote:
|
CurePlayer() and the others are user created functions.
Adding new will not solve this problem. Try creating or searching for these functions and then add them to the script. For example: pawn Код:
|
PHP код:
stock CurePlayer(playerid)
{
if(pInfo[playerid][IsPlayerInfected] == 1)
{
KillTimer(pInfo[playerid][IsPlayerInfectedTimer]);
pInfo[playerid][IsPlayerInfected] = 0;
SetPlayerColor(playerid,COLOR_HUMAN);
ApplyAnimation(playerid,"MEDIC","CPR",4.1,0,1,1,1,1);
SetPlayerDrunkLevel(playerid,0);
TextDrawHideForPlayer(playerid,Infected[playerid]);
}
return 1;
}


