[Ajuda] Ajuda
#1

alguem me diz oque fazer?

Код:
(6989) : warning 202: number of arguments does not match definition
Код:
if(strcmp(cmd,"/a",true)==0){
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), P_CONTAS, aname);
if(pAdmin[playerid] == 1 || pAdmin[playerid] == 2 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5){
new tmp[256];
strmid(tmp,cmdtext,2,strlen(cmdtext));
if(!strlen(tmp)) {
SendClientMessage(playerid,admcmd, "Digite: /a [texto]");
return 1;
} else {
format(string, sizeof(string), "[Admin] %s diz: %s ", aname, tmp);
SendClientMessageToAll(azul);
return 1;
}
}else{
SendClientMessage(playerid,Vermelho,"{0099FF}[x]{CCCCFF} Vocк nгo tem acesso a esse comando!");
return 1;
}
}
a linha do erro seria a:

SendClientMessageToAll(azul);
Reply
#2

Quote:
Originally Posted by AssasinoLM
Посмотреть сообщение
alguem me diz oque fazer?

Код:
(6989) : warning 202: number of arguments does not match definition
Код:
if(strcmp(cmd,"/a",true)==0){
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), P_CONTAS, aname);
if(pAdmin[playerid] == 1 || pAdmin[playerid] == 2 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5){
new tmp[256];
strmid(tmp,cmdtext,2,strlen(cmdtext));
if(!strlen(tmp)) {
SendClientMessage(playerid,admcmd, "Digite: /a [texto]");
return 1;
} else {
format(string, sizeof(string), "[Admin] %s diz: %s ", aname, tmp);
SendClientMessageToAll(azul);
return 1;
}
}else{
SendClientMessage(playerid,Vermelho,"{0099FF}[x]{CCCCFF} Vocк nгo tem acesso a esse comando!");
return 1;
}
}
a linha do erro seria a:

SendClientMessageToAll(azul);
Tenta Assim...

SendClientMessageToAll(azul ,string);
Reply
#3

PHP код:
if(strcmp(cmd,"/a",true)==0)
{
    new 
aname[MAX_PLAYER_NAME];
    
GetPlayerName(playeridanameMAX_PLAYER_NAME);
    
format(filesizeof(file), P_CONTASaname);
    if(
pAdmin[playerid] == || pAdmin[playerid] == || pAdmin[playerid] == || pAdmin[playerid] == || pAdmin[playerid] == 5)
    {
        new 
tmp[256];
        
strmid(tmp,cmdtext,2,strlen(cmdtext));
        if(!
strlen(tmp))
        {
            
SendClientMessage(playerid,admcmd"Digite: /a [texto]");
            return 
1;
        }
         else
        {
            
format(stringsizeof(string), "[Admin] %s diz: %s "anametmp);
            
SendClientMessageToAll(azulstring);
            return 
1;
        }
    }
    else
    {
        
SendClientMessage(playerid,Vermelho,"{0099FF}[x]{CCCCFF} Vocк nгo tem acesso a esse comando!");
        return 
1;
    }

Reply
#4

Posso ajudar ?

pawn Код:
if(strcmp(cmd,"/a",true)==0){
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(pAdmin[playerid] == 1 || pAdmin[playerid] == 2 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5){
new tmp[256];
//new msg[256];
strmid(tmp,cmdtext,2,strlen(cmdtext));
if(!strlen(tmp)) {
SendClientMessage(playerid,Vermelho, "Digite: /a [texto]");
return 1;
} else {
format(string, sizeof(string), "* Administrador(a) %s: %s", aname, tmp);
SendClientMessageToAll(AdminCor,string);
return 1;
}
}else{
SendClientMessage(playerid,Vermelho,"| ERRO | Vocк nгo tem permissгo!");
return 1;
}
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)