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



problema com comando - Caio_Freeze - 22.03.2014

quando alguйm digita /r o certo seria "/r ** [Rбdio Caio_Freeze] Frase aqui!, cambio. **" sу que estб retornando assim: ** [Rбdio Caio_Freeze] ** [Rбdio Caio_Freeze] Frase aqui!, cambio. **, cambio. ** dependendo da quantidade players que ta on no servidor...

pawn Code:
CMD:r(playerid,params[])
{
    new str[128];
    if(sscanf(params, "s[128]", str))return SendClientMessage(playerid, -1, "Use: /r [texto]");
    for(new i = 0; i < MAX_TEAMS; i++)
    {
        if(PlayerInfo[playerid][pGang] == PlayerInfo[i][pGang])
        {
            format(str,sizeof(str),"** [Rбdio %s] %s, cambio. **", Nome(playerid),str);
            SendClientMessage(i,GetPlayerColor(playerid), str);
        }
    }
    return 1;
}



Re: problema com comando - VeNuZ_ - 22.03.2014

pawn Code:
return 0;
?


Re: problema com comando - PT - 22.03.2014

pawn Code:
CMD:r(playerid,params[])
{
    if(sscanf(params, "s[128]", params[0]))
        return SendClientMessage(playerid, -1, "Use: /r [texto]");
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(PlayerInfo[playerid][pGang] == PlayerInfo[i][pGang])
        {  
            new str[128];
            format(str,sizeof(str),"** [Rбdio %s] %s, cambio. **", Nome(playerid), params[0]);
            SendClientMessage(i, GetPlayerColor(playerid), str);
        }
    }
    return 1;
}



Re: problema com comando - Caio_Freeze - 22.03.2014

Quote:
Originally Posted by PT
View Post
pawn Code:
CMD:r(playerid,params[])
{
    if(sscanf(params, "s[128]", params[0]))
        return SendClientMessage(playerid, -1, "Use: /r [texto]");
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(PlayerInfo[playerid][pGang] == PlayerInfo[i][pGang])
        {  
            new str[128];
            format(str,sizeof(str),"** [Rбdio %s] %s, cambio. **", Nome(playerid), params[0]);
            SendClientMessage(i, GetPlayerColor(playerid), str);
        }
    }
    return 1;
}
vou testar e dou um edit '-'

@edit

funciono perfeitamente +rep