SA-MP Forums Archive
[ERRO] Erros Ao tentar copilar GM! - 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: [ERRO] Erros Ao tentar copilar GM! (/showthread.php?tid=277719)



[ERRO] Erros Ao tentar copilar GM! - biaamorin - 19.08.2011

Bom Estou com alguns erros no qual nгo consigu arrumar.. porfavor quem souber me ajuda!!

Код:
C:~~~~~~.pwn(6102) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(6113) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(8624) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(8630) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(9171) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10928) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10928) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10929) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10940) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10940) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10941) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10953) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10953) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10954) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10964) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10964) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10965) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10973) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10974) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10975) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10976) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10977) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10978) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10979) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10980) : error 017: undefined symbol "pSkin"
C:~~~~~~.pwn(10981) : error 017: undefined symbol "pSkin"

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


26 Errors.
POrfavor me ajudem!


Re: [ERRO] Erros Ao tentar copilar GM! - Miqueias Barros - 19.08.2011

Tenta isso no topo

PHP код:
enum pInfo
{
    
pSkin
}; 
Logo abaixo da enum acima coloca isso:
PHP код:
new PlayerInfo[MAX_PLAYERS][pInfo]; 
Acho que й assim, que nгo mecho com RPG :S



Re: [ERRO] Erros Ao tentar copilar GM! - RockFire - 19.08.2011

pawn Код:
new pSkin[MAX_PLAYERS];



Re: [ERRO] Erros Ao tentar copilar GM! - biaamorin - 19.08.2011

Adicionar o:
Quote:

new pSkin[MAX_PLAYERS];;

Ocorre os seguintes erros!
Код:
C:~~~~~~.pwn(3402) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(3411) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(3415) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(3454) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(3770) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(3896) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(3901) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(3906) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(3911) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(3916) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(3921) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(5809) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(5812) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(5818) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(5825) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(5828) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(5834) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(5841) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(5844) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(5850) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(6057) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(6071) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(6105) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(6116) : error 032: array index out of bounds (variable "pSkin")
C:~~~~~~.pwn(6218) : error 032: array index out of bounds (variable "pSkin")

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


26 Errors.



Re: [ERRO] Erros Ao tentar copilar GM! - ViniBorn - 19.08.2011

Pesquisa " enum pInfo " no GM

e coloca isso lб no inнcio :

pawn Код:
pSkin,



Re: [ERRO] Erros Ao tentar copilar GM! - biaamorin - 19.08.2011

Nгo Intendi.. й para subistituir "enum pInfo" por "pSkin," ??


Re: [ERRO] Erros Ao tentar copilar GM! - [AF]Junior - 19.08.2011

Nгo, vocк deve acrescentar o pSkin dentro do pInfo.

Exemplo:
pawn Код:
enum pInfo
{
pSkin
}  ;
new PlayerInfo[MAX_PLAYERS][pInfo];



Re: [ERRO] Erros Ao tentar copilar GM! - biaamorin - 19.08.2011

Consegui Agora deu um erro assim у:
Код:
C:\Users\Joгo Feipe\Desktop\Arquivos GTA\Brasil Magic Games\BWGnovo\gamemodes\BWG22.pwn(33620) : error 017: undefined symbol "ChosenSkin"
C:\Users\Joгo Feipe\Desktop\Arquivos GTA\Brasil Magic Games\BWGnovo\gamemodes\BWG22.pwn(33620) : warning 215: expression has no effect
C:\Users\Joгo Feipe\Desktop\Arquivos GTA\Brasil Magic Games\BWGnovo\gamemodes\BWG22.pwn(33620) : error 001: expected token: ";", but found "]"
C:\Users\Joгo Feipe\Desktop\Arquivos GTA\Brasil Magic Games\BWGnovo\gamemodes\BWG22.pwn(33620) : error 029: invalid expression, assumed zero
C:\Users\Joгo Feipe\Desktop\Arquivos GTA\Brasil Magic Games\BWGnovo\gamemodes\BWG22.pwn(33620) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


5 Errors.



Re: [ERRO] Erros Ao tentar copilar GM! - [AF]Junior - 19.08.2011

Manda o pInfo inteiro pra mim.


Re: [ERRO] Erros Ao tentar copilar GM! - biaamorin - 19.08.2011

Sу uma pergunta aonde comeзa o PInfo desde o comeзo?? ;P