Need Help Which I Get Using CrashDetect - 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 Which I Get Using CrashDetect (
/showthread.php?tid=633946)
Need Help Which I Get Using CrashDetect -
Speaker - 10.05.2017
Hello Guys,Well I Need Your Help In Fix These Error.
Код:
18:44:39] [debug] #0 00085b58 in public AB_OnPlayerDeath (playerid=2, killerid=65535, reason=255) at C:\Users\ThunderCot\Desktop\Call of Duty Online\gamemodes\cod8aaw.pwn:5464
[18:44:39] [debug] #1 00010ec0 in public FC_OnPlayerDeath (playerid=2, killerid=65535, reason=255) at C:\Users\ThunderCot\Desktop\Call of Duty Online\pawno\include\OPA.inc:131
[18:44:39] [debug] #2 native CallLocalFunction () from sampsvr-port_9909
[18:44:39] [debug] #3 00003218 in public OnPlayerDeath (playerid=2, killerid=65535, reason=255) at C:\Users\ThunderCot\Desktop\Call of Duty Online\pawno\include\fuckCleo.inc:158
And Here Is The Code For 1st Error With Error Line Marked
Код:
if(StealingPaProt[playerid] == 1)
{
SendClientMessage(playerid, 0x00BFFFAA, "You failed stealing the Pakistan Prototype!");
RemovePlayerMapIcon(playerid,1);
GivePlayerCash(playerid, -500);
StealingPaProt[playerid] = 0;
new pname[24];
GetPlayerName(playerid, pname, 24);
new kk[128];
format(kk, sizeof(kk), "** %s (%d) failed stealing Pakistan Prototype from team %s!",pname,playerid,GetTeamName(playerid));
SendClientMessageToAll(0xC93CCE00,kk);
}
I Think My 1st Problem Is Due To My Second Problem Therefore Here Is The Code For My 2nd Problem But I Don't Know In Which Line Is The Error But In Error It Says About OnPlayerDeath So Here IS The Code For OnPlayerDeath Of Include
Код:
public OnPlayerDeath(playerid, killerid, reason)
{
s_AirbreakDetectImmunity[playerid] = gettime() + 3;
#if defined AB_OnPlayerDeath
return AB_OnPlayerDeath(playerid, killerid, reason);
#else
return 1;
#endif
}
Plzz Guys Help Me