Need help - Headshot system - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Need help - Headshot system (
/showthread.php?tid=576639)
Need help - Headshot system -
MaxOkay - 05.06.2015
Код:
/*
Headshot System By SNAKE12 Please Dont Remove Credits.
*/
#include <a_samp>
#define GREEN 0x33FF33AA
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);
}
return 1;
}
Код:
error 025: function heading differs from prototype
Error Part:
Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart)
Re: Need help - Headshot system -
Vince - 05.06.2015
Use proper includes. Bodypart parameter was added in SA-MP 0.3z which means you're trying to compile with includes from 0.3x or earlier.
Re: Need help - Headshot system -
MaxOkay - 05.06.2015
Quote:
Originally Posted by Vince
Use proper includes. Bodypart parameter was added in SA-MP 0.3z which means you're trying to compile with includes from 0.3x or earlier.
|
Well,Can you send me the newest update of the include pack?
Re: Need help - Headshot system -
Ahmad45123 - 05.06.2015
www.sa-mp.com
Re: Need help - Headshot system -
Dangjai - 05.06.2015
Quote:
Originally Posted by Ahmad45123
|
I see the link you posted is samp website not includes link.
Re: Need help - Headshot system -
J0sh... - 05.06.2015
Quote:
Originally Posted by Kinglee
I see the link you posted is samp website not includes link.
|
Includes come with the server package.