SA-MP Forums Archive
[Ajuda] 202: number of arguments does not match definition - 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] 202: number of arguments does not match definition (/showthread.php?tid=438950)



202: number of arguments does not match definition - MatheusMendes - 23.05.2013

Код:
C:\Users\Matheus-PC\Desktop\[Gamemode] Gaming Fox Brasil ® (0.3x)\gamemodes\Iniciante.pwn(633) : warning 202: number of arguments does not match definition
C:\Users\Matheus-PC\Desktop\[Gamemode] Gaming Fox Brasil ® (0.3x)\gamemodes\Iniciante.pwn(633) : warning 202: number of arguments does not match definition
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


2 Warnings.
PHP код:
   if(strcmp(cmdtext,"/skydive",true)==0)
       {
       new 
string [50];
       new 
pname[30];
       
GetPlayerName(playeridpnameMAX_PLAYER_NAME); // PEGA O NOME DO JOGADOR
       
format(stringsizeof(string), "%s Foi Pular de Paraquedas: {FFFF00}(/skydive2)"pname); //MENSAGEM A TODOS
       
SendClientMessageToAll(Verdestring);
       
ResetPlayerWeapons(playerid);// RESETA ARMAS
       
SetPlayerPos(playerid,1955.4077,606.0811,1407.8107); //COORDENADAS
       
SetPlayerInterior(playerid,0); // INTERIOR
       
SendClientMessage(playeridAmarelo,"Queda livre!! Espero que nгo morra '-'",4000,6);
       return 
1;
       } 
Nгo estou achando onde esta dando esses wanings me ajudem


Re: 202: number of arguments does not match definition - Gii - 23.05.2013

pawn Код:
SendClientMessage(playerid, Amarelo,"Queda livre!! Espero que nгo morra '-'");



Re: 202: number of arguments does not match definition - MatheusMendes - 23.05.2013

vlw