26.01.2015, 16:37
pawn Код:
command(helpme, playerid, params[])
{
if(isnull(params)) SendClientMessage(playerid,-1, "SYNTAX: /helpme [message]");
else{
new string[145];
format(string, sizeof(string), "{FE2EC8}[HELP]: {FFFFFF}%s{FE2EC8}: %d", params, playerid);
SendToStaff(COLOR_PINK, string);
SendClientMessage(playerid, YELLOW, "Your question was sent to the Staff team, await a reply.");
}
return 1;
}