Help with crash.. i can't understand what does crashdetect mean.
#1

So here is the log which i got after running crash detect plugin with my gamemode.


Whole log.
PHP Code:
RP.amx
[09:42:35] [debugRun time error 4"Array index out of bounds"
[09:42:35] [debug]  Accessing element at index 9 past array upper bound 8
[09:42:35] [debugAMX backtrace:
[
09:42:35] [debug#0 001682cc in ?? () from RP.amx
[09:42:35] [debug#1 001644dc in public NOPSetPlayerPos () from RP.amx
[09:42:36] [debugRun time error 4"Array index out of bounds"
[09:42:36] [debug]  Accessing element at index 9 past array upper bound 8
[09:42:36] [debugAMX backtrace:
[
09:42:36] [debug#0 001682cc in ?? () from RP.amx
[09:42:36] [debug#1 001644dc in public NOPSetPlayerPos () from RP.amx
[09:42:38] [debugRun time error 4"Array index out of bounds"
[09:42:38] [debug]  Accessing element at index 9 past array upper bound 8
[09:42:38] [debugAMX backtrace:
[
09:42:38] [debug#0 001682cc in ?? () from RP.amx
[09:42:38] [debug#1 001644dc in public NOPSetPlayerPos () from RP.amx
[09:42:39] [debugRun time error 4"Array index out of bounds"
[09:42:39] [debug]  Accessing element at index 9 past array upper bound 8
[09:42:39] [debugAMX backtrace:
[
09:42:39] [debug#0 001682cc in ?? () from RP.amx
[09:42:39] [debug#1 001644dc in public NOPSetPlayerPos () from RP.amx 
This is all the error..After i joined In game..
This code keep spamming..
Please help

And
The code from "NopSetPlayerPos callback

PHP Code:
forward NOPSetPlayerPos();
public 
NOPSetPlayerPos()
{
    
// NOP Vehicle Cheat
    
foreach(Playerplayerid)
    {
        if(
GetPlayerState(playerid) != PLAYER_STATE_PASSENGER)
        {
            if(
IsLeoVehicle(GetPlayerVehicleID(playerid)) && PlayerInfo[playerid][pFac] != || IsTruckerVehicle(GetPlayerVehicleID(playerid)) && PlayerInfo[playerid][pJob] != JOB_TRUCKER)
            {
                new 
string[128];
                
format(stringsizeof(string), "AdmWarn: %s is either desynced or using NOP hacks. (Driving Restricted Vehicle)"RPN(playerid));
                
SendAdminMessage(COLOR_DARKRED1string);
                
RemovePlayerFromVehicle(playerid);
            }
        }
    }
    return 
1;

Reply


Messages In This Thread
Help with crash.. i can't understand what does crashdetect mean. - by Gaurav_Rawat - 03.02.2013, 02:50
Re: Help with crash.. i can't understand what does crashdetect mean. - by T0pAz - 03.02.2013, 02:54
Re: Help with crash.. i can't understand what does crashdetect mean. - by Gaurav_Rawat - 03.02.2013, 02:57
Re: Help with crash.. i can't understand what does crashdetect mean. - by T0pAz - 03.02.2013, 03:03
Re: Help with crash.. i can't understand what does crashdetect mean. - by Gaurav_Rawat - 03.02.2013, 03:11

Forum Jump:


Users browsing this thread: 1 Guest(s)