Erro, alguйm ajuda?
#6

tб ai mano..
isso deve resolver seu problema..

pawn Код:
//topo do gm:
new mncorregedor[MAX_PLAYERS];

//OnPlayerCommandtext
if (strcmp(cmd, "/chatc", true) == 0 && IsPlayerAdmin(playerid)) {
    new length = strlen(cmdtext);
    while ((idx < length) && (cmdtext[idx] <= ' ')) {
        idx++;
    }
    new offset = idx;
    new result[64];
    while ((idx < length) && ((idx - offset) < (sizeof(result) - 1))) {
        result[idx - offset] = cmdtext[idx];
        idx++;
    }
    result[idx - offset] = EOS;
    if (!strlen(result)) {
        SendClientMessage(playerid, COLOR_GRAD2, "USE: /chatc [texto]");
        return 1;
    }
    new str[128];
    new szPlayerName[MAX_PLAYER_NAME];
    GetPlayerName(playerid, szPlayerName, MAX_PLAYER_NAME);
    if (corregedor(playerid)) {
        format(str, 128, "* Corregedor %s: %s", szPlayerName, result);
        SendClientMessage(playerid, LARANJA, str);
    }
    return 1;
}
Reply


Messages In This Thread
Erro, alguйm ajuda? - by CrossBR - 01.05.2012, 18:18
Re: Erro, alguйm ajuda? - by Kon_BR - 01.05.2012, 18:19
Re: Erro, alguйm ajuda? - by CrossBR - 01.05.2012, 18:30
Re: Erro, alguйm ajuda? - by kikito - 01.05.2012, 18:31
Re: Erro, alguйm ajuda? - by Matheus_Ecko - 01.05.2012, 18:32
Re: Erro, alguйm ajuda? - by Joker_OutLock - 01.05.2012, 18:32
Re: Erro, alguйm ajuda? - by steeldark - 01.05.2012, 18:35
Re: Erro, alguйm ajuda? - by CrossBR - 02.05.2012, 16:45
Re: Erro, alguйm ajuda? - by KinX - 02.05.2012, 18:00

Forum Jump:


Users browsing this thread: 2 Guest(s)