[Ajuda] Erro no servidor! - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Erro no servidor! (
/showthread.php?tid=568772)
Erro no servidor! -
Clesio - 25.03.2015
Olб amigos.
Eu botei o crash detect para ver qual bug estava ocorrendo no meu servidor pois ele ficava crashando os players
Ai no console aparece isso:
[22:24:50] [debug] Run time error 4: "Array index out of bounds"
[22:24:50] [debug] Accessing element at index 696 past array upper bound 301
[22:24:50] [debug] AMX backtrace:
[22:24:50] [debug] #0 000f3470 in public OnPlayerStateChange (12, 2, 1) from PRL.amx
Alguem pode me ajudar?
Re: Erro no servidor! -
arakuta - 25.03.2015
Vocк estб acessando uma cйlula de ID superior as cйlulas existentes.
Basicamente, o que tб acontecendo:
PHP код:
new MyVar[20];
printf("MyVar[%d] = %d",30,MyVar[30]);
Nгo existe uma cйlula 30, a maior й 19.
A soluзгo seria, aumentar o tamanho do vetor/matriz OU corrigir seu sistema caso 696 seja algo errado.