[Pedido] sitema de pms
#6

pawn Код:
// STRCMP

if(strcmp(cmd, "/mp", true) == 0)
{
    new id, msg[128];
    if(sscanf(cmdtext, "us[128]", id, msg))
        return SendClientMessage(playerid, COLOR_GRAD2, "USE: (/mp) [id] [texto]");
    if(!IsPlayerConnected(id))
        return SendClientMessage(playerid, COLOR_GRAD1, "   Esse jogador estб off-line.");
    new string[128], player[MAX_PLAYER_NAME], obj[MAX_PLAYER_NAME];
    GetPlayerName(playerid, player, sizeof(player));
    GetPlayerName(id, obj, sizeof(obj));
    format(string, sizeof(string), "MP enviada para %s(ID: %d). Msg: %s", obj, id, msg);
    SendClientMessage(playerid,  COLOR_YELLOW, string);
    format(string, sizeof(string), "MP recebida de %s(ID: %d). Msg: %s", player, playerid, msg);
    SendClientMessage(id,  COLOR_YELLOW, string);
    return 1;
}

// ZCMD

CMD:mp(playerid, params[])
{
    if(sscanf(params, "us[128]", params[0], params[1]))
        return SendClientMessage(playerid, COLOR_GRAD2, "USE: (/mp) [id] [texto]");
    if(!IsPlayerConnected(params[0]))
        return SendClientMessage(playerid, COLOR_GRAD1, "   Esse jogador estб off-line.");
    new string[128], player[MAX_PLAYER_NAME], obj[MAX_PLAYER_NAME];
    GetPlayerName(playerid, player, MAX_PLAYER_NAME);
    GetPlayerName(params[0], obj, MAX_PLAYER_NAME);
    format(string, sizeof(string), "MP enviada para %s(ID: %d). Msg: %s", obj, params[0], params[1]);
    SendClientMessage(playerid,  COLOR_YELLOW, string);
    format(string, sizeof(string), "MP recebida de %s(ID: %d). Msg: %s", player, playerid, params[1]);
    SendClientMessage(params[0],  COLOR_YELLOW, string);
    return 1;
}
Reply


Messages In This Thread
sitema de pms - by xXCallXX - 12.02.2014, 19:44
Re: sitema de pms - by Canema - 12.02.2014, 19:45
Re: sitema de pms - by xXCallXX - 12.02.2014, 19:52
Re: sitema de pms - by Canema - 12.02.2014, 19:57
Re: sitema de pms - by xXCallXX - 12.02.2014, 19:58
Re: sitema de pms - by PT - 12.02.2014, 20:11
Re: sitema de pms - by xXCallXX - 12.02.2014, 20:18
Re: sitema de pms - by PT - 12.02.2014, 20:19
Re: sitema de pms - by Wanderson_SAMP - 12.02.2014, 20:27
Re: sitema de pms - by Leandro123 - 15.02.2014, 03:25

Forum Jump:


Users browsing this thread: 1 Guest(s)