13.11.2016, 16:22
Why i have this error? ....
the ERROR CODE
the ERROR CODE
Код:
error 025: function heading differs from prototype
PHP код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart)
{
if(issuerid != INVALID_PLAYER_ID && (weaponid == 34 || weaponid == 33) && bodypart == 9)//check if the shooter shoot in sniper and check if shoot in head
{
PlayAudioStreamForPlayer(playerid, "http://soundcli.ps/download/1639.mp3");// play music for who killed.
PlayAudioStreamForPlayer(issuerid, "http://soundcli.ps/download/1639.mp3");// play music for killer.
SetPlayerHealth(playerid, 0.0);//kill player
GameTextForPlayer(issuerid, "~r~Head shot!", 3000, 6);
GameTextForPlayer(playerid, "~r~Head shot!", 3000, 6);
SetPlayerScore(issuerid, GetPlayerScore(issuerid) + 2);//give +2 score for killer.
SendClientMessage(issuerid, COLOR_GREEN,"You get +2 score for killing in headshot");
}
return 1;
}