29.02.2012, 00:19
I used this -
https://sampforum.blast.hk/showthread.php?tid=262796
when I do something that what show in the server_log -
What's wrong in that code ?
Thanks Alot
https://sampforum.blast.hk/showthread.php?tid=262796
when I do something that what show in the server_log -
PHP код:
[03:17:34] [debug] Run time error 4: "Array index out of bounds"
[03:17:34] [debug] Accessing element at index 50 past array upper bound 121
[03:17:34] [debug] Backtrace (most recent call first):
[03:17:34] [debug] #0 public OnPlayerObjectMoved()+0x1c1fac from TalDmMod.amx
[03:17:34] [debug] Run time error 4: "Array index out of bounds"
[03:17:34] [debug] Accessing element at index 50 past array upper bound 121
[03:17:34] [debug] Backtrace (most recent call first):
PHP код:
public OnPlayerObjectMoved(playerid,objectid)
{
for ( new i = 0; i <MAX_OBJECTS; i++ )
{
if ( objectid == A_Objects[ i ][playerid] )
{
if ( IsValidPlayerObject( playerid, A_Objects[ i ][playerid] ) )
{
DestroyPlayerObject( playerid, A_Objects[ i ][playerid] );
PlayerObjects[playerid]--;
if ( PlayerObjects[playerid] == 0 && Objects_Hit2[playerid] != 200)
{
Objects_Missed[playerid] = 200 - Objects_Hit2[playerid];
MoveObjectsForPlayerAgain( playerid );
}
}
}
}
return 1;
}