09.07.2010, 13:29
i have this in this format
and its getting me these 2 errors
error 033: array must be indexed (variable "DeathPickup")
error 035: argument type mismatch (argument 1)
pawn Код:
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(1240 == DeathPickup)
{
new Float:health;
GetPlayerHealth(playerid, health);
SetPlayerHealth(playerid, health+50);
DestroyPickup(DeathPickup);
return 1;
}
return 0;
}
error 033: array must be indexed (variable "DeathPickup")
error 035: argument type mismatch (argument 1)