17.09.2013, 12:47
Код:
public heal(playerid) // line 614
{
new Float:health;
GetPlayerHealth(playerid,health);
if (health < 1.0)
{
SetPlayerHealth(playerid, 2.0);
SetTimer("heal", 4000, false); // Set a timer of 1000 miliseconds (1 second)
}
return 1;
}
Код:
D:\Don't touCh\Sampi\roleplay windows\filterscripts\spitali.pwn(614) : error 025: function heading differs from prototype

