Help with acronyms scripting
#7

not this? coz i got errors, i want like this

Код:
CMD:reply(playerid, params[])
    {
        	new text[256], string[256];
            if(sscanf(params, "s[256]", text)) return SendClientMessage(playerid, COLOR_RED, "USAGE: /reply (message) - Enter your message");
            new pID = pInfo[playerid][Last];
            if(!IsPlayerConnected(pID)) return SendClientMessage(playerid, COLOR_RED, "Player is not connected.");
            if(pID == playerid) return SendClientMessage(playerid, COLOR_RED, "You cannot PM yourself.");
            format(string, sizeof(string), "%s (%d) is not accepting private messages at the moment.", PlayerName(pID), pID);
            if(pInfo[pID][NoPM] == 1) return SendClientMessage(playerid, COLOR_RED, string);
            format(string, sizeof(string), "PM to %s: %s", PlayerName(pID), text);
        	SendClientMessage(playerid, COLOR_YELLOW, string);
        	format(string, sizeof(string), "PM from %s: %s", PlayerName(playerid), text);
        	SendClientMessage(pID, COLOR_YELLOW, string);
        	pInfo[pID][Last] = playerid;
            for (new i = 0; i < MAX_PLAYERS; i++)
            if (IsPlayerAdmin(i))
            {
                    format(string, sizeof(string), "PM: %s(%d) to %s(%d): %s", PlayerName(playerid), playerid, PlayerName(pID), pID, text);
                    {
                            if (IsPlayerAdmin(i))
                            SendClientMessage(i, COLOR_GREY, string);
                    }
            }
        	return 1;
    }
    CMD:r(playerid, params[]) return cmd_reply(playerid, params);
i just want like this, so its easy to just edit it.. plz?
Код:
CMD:r(playerid, params[]) return cmd_reply(playerid, params);
Reply


Messages In This Thread
Help with acronyms scripting - by cleanboy - 03.06.2014, 11:55
Re: Help with acronyms scripting - by cleanboy - 03.06.2014, 12:12
Re: Help with acronyms scripting - by Parallex - 03.06.2014, 12:19
Re: Help with acronyms scripting - by SyntaxQ - 03.06.2014, 12:21
Re: Help with acronyms scripting - by Threshold - 03.06.2014, 12:22
Re: Help with acronyms scripting - by Rittik - 03.06.2014, 12:23
Re: Help with acronyms scripting - by cleanboy - 03.06.2014, 12:24
Re: Help with acronyms scripting - by Threshold - 03.06.2014, 12:54
Re: Help with acronyms scripting - by Threshold - 03.06.2014, 22:17

Forum Jump:


Users browsing this thread: 2 Guest(s)