09.06.2017, 14:15
Quote:
PHP код:
#include <a_samp>
#include <izcmd>
static const RandCol[][]=
{
"{00FF00}", "{FF0000}", "{FFFF00}"
};
CMD:testrcol(playerid, params[])
{
new string[15];
new rand = random(sizeof(RandCol));
format(string, sizeof(string), "%s hello.", RandCol[rand]);
SendClientMessage(playerid, -1, string);
return 1;
}
