03.08.2014, 11:25
Quote:
Код:
CMD:fac(playerid) return cmd_faction(playerid); CMD:faction(playerid, params[]) { new string[128]; if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command."); if(!PlayerInfo[playerid][pFac]) return SendClientMessage(playerid, COLOR_GREY, "You are not in a faction."); if(sscanf(params, "string[128]", params)) return SendClientMessage(playerid, USAGE, "[Usage]: (/fac)tionchat [text]"); format(string, sizeof(string), "** [FAC] %s %s: %s", RPFRN(playerid), RPN(playerid), params); SendPlayerFactionMessage(playerid, 0, COLOR_GREY, string); return 1; } |