can someone give me pm
#1

i wanna make a /pm [id]
texting in privte.
Reply
#2

http://forum.sa-mp.com/showthread.ph...rivate+message
Reply
#3

can i use it with out zcmd?
Reply
#4

Better start learning ZCMD and sscanf now

pawn Код:
CMD:pm(playerid, params[])
{
    new PID, reason[35], pName[MAX_PLAYER_NAME], Sender[MAX_PLAYER_NAME];
    if(sscanf(params, "uz", PID, reason)) return SendClientMessage(playerid, 0xFF0000FF, "Usage: /PM < PlayerID > < Message >");
    if(!IsPlayerConnected(PID)) return SendClientMessage(playerid, 0xFF0000FF, "That user is not connected!");
    else
    {
    new Str[128];
    GetPlayerName(PID, pName, sizeof(pName));
    GetPlayerName(playerid, Sender, sizeof(Sender));
    format(Str, sizeof(Str), "PM From: %s(%d): %s", Sender, playerid, reason);
    SendClientMessage(PID, COLOR_YELLOW, Str);
    format(Str, sizeof(Str), "PM To: %s(%d): %s", pName, PID, reason);
    SendClientMessage(playerid, COLOR_YELLOW, Str);
    }
    return 1;
}
Reply
#5

ZCMD keep blocking my commands if i put zcmd...don't khow why.
Reply
#6

Quote:
Originally Posted by DerickClark
Посмотреть сообщение
ZCMD keep blocking my commands if i put zcmd...don't khow why.
You can't have any STRCMP like commands unless put under a callback that has been created with ZCMD.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)