SA-MP Forums Archive
[Ajuda] Warning - 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] Warning (/showthread.php?tid=333026)



[Ajuda] Warning - Caio_Freeze - 10.04.2012

como tiro essa warning

pawn Код:
C:\Documents and Settings\Fernando\Desktop\BPLV2.pwn(1267) : warning 219: local variable "Nome" shadows a variable at a preceding level
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


1 Warning.
Linha
pawn Код:
new bibi[128], Nome[MAX_PLAYERS];



Re: [Ajuda] Warning - Josma_cmd - 10.04.2012

pawn Код:
new bibi[128];
A variбvel "Nome" jб foi criada.


Re: [Ajuda] Warning - Caio_Freeze - 10.04.2012

agora deu esse erros
pawn Код:
C:\Documents and Settings\Fernando\Desktop\BPLV2.pwn(1269) : error 076: syntax error in the expression, or invalid function call
C:\Documents and Settings\Fernando\Desktop\BPLV2.pwn(1269) : error 072: "sizeof" operator is invalid on "function" symbols
C:\Documents and Settings\Fernando\Desktop\BPLV2.pwn(1270) : error 076: syntax error in the expression, or invalid function call
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


3 Errors.



Re: [Ajuda] Warning - histire - 10.04.2012

Sу da esses erros quando й retirado a
PHP код:
new Nome[MAX_PLAYERS]; 
?


Re: [Ajuda] Warning - Caio_Freeze - 10.04.2012

Quote:
Originally Posted by histire
Посмотреть сообщение
Sу da esses erros quando й retirado a
PHP код:
new Nome[MAX_PLAYERS]; 
?
sim!


Re: [Ajuda] Warning - ViniBorn - 10.04.2012

Posta as linhas.


Re: [Ajuda] Warning - Caio_Freeze - 10.04.2012

pawn Код:
GetPlayerName(playerid, Nome, sizeof(Nome));
 format(bibi, sizeof(bibi), "[Anti-SpamCar]: %s foi banido Por Cometer Spam Car.", Nome);



Re: [Ajuda] Warning - ViniBorn - 10.04.2012

pawn Код:
GetPlayerName(playerid, Nome, MAX_PLAYER_NAME);
format(bibi, sizeof bibi ,"[Anti-SpamCar]: %s foi banido Por Cometer Spam Car.", Nome);



Re: [Ajuda] Warning - Caio_Freeze - 10.04.2012

deu esses aki

pawn Код:
C:\Documents and Settings\Fernando\Desktop\BPLV2.pwn(1269) : error 076: syntax error in the expression, or invalid function call
C:\Documents and Settings\Fernando\Desktop\BPLV2.pwn(1270) : error 076: syntax error in the expression, or invalid function call
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


2 Errors.



Re: [Ajuda] Warning - ViniBorn - 10.04.2012

Acabei de colocar isso e funcionou .
pawn Код:
new bibi[74],Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, Nome, MAX_PLAYER_NAME);
format(bibi, sizeof bibi ,"[Anti-SpamCar]: %s foi banido Por Cometer Spam Car.", Nome);