Ola galera gostaria de ajuda em um sistema de uma GM,
fica dando erro ao compilar,
onde fica dando o erro
o erro e este http://prntscr.com/htz8y0
fica dando erro ao compilar,
onde fica dando o erro
PHP Code:
public OnPlayerTakeDamage(playerid, issuerid, Float: amount, weaponid, bodypart)
{
if(issuerid != INVALID_PLAYER_ID && weaponid == 34 && bodypart == 9)
{
SetPlayerHealth(playerid, 0.0);
}
new Float:health;
GetPlayerHealth(playerid,health);
if (health < 30.0)
{
ApplyAnimation(playerid, "CRACK", "crckdeth2", 4.0, 1, 0, 0, 0, 0);
GameTextForPlayer(playerid, "You're bleeding...", 3000, 3);
SetTimer("Krvarenje", 15000, false);
Krvari[playerid] = 1;
}
return 1;
}