30.01.2015, 12:16
Hello.
This MOTD command, shows only the first word, I mean, If i type "/motd Hello guys" it will show only "Hello".
Someone fix it please:
This MOTD command, shows only the first word, I mean, If i type "/motd Hello guys" it will show only "Hello".
Someone fix it please:
PHP Code:
CMD:motd(playerid,params[])
{
new string[128];
if(AdminLevel[playerid] < 4) return SCM(playerid,COLOR_WHITE,"{AFAFAF}[Error]: {FFFFFF}You do not have the correct admin level for this command.");
if(sscanf(params, "string[128]", params)) return SendClientMessage(playerid,COLOR_WHITE, ""COL_USAGE"[SYNTAX] {FFFFFF}/motd [MESSAGE]");
format(string,sizeof(string),"%s",params);
TextDrawSetString(MOTD, params);
format(string,sizeof(string),"%s(%d) has updated the MOTD",PlayerName(playerid),playerid);
return 1;
}