20.10.2012, 08:19
Hello I have long needed a way to make my command will be long and not by line stop and after a few words that will open another line please help my command so please help
Код:
command(me, playerid, params[]) { new string[128]; if(isnull(params)) { return SendClientMessage(playerid, WHITE, "SYNTAX: /me [action]"); } if(Player[playerid][pMask] == 1) { format(string, sizeof(string), "*[Mask_%d] %s", Player[playerid][MaskRandom], params); } else { format(string, sizeof(string), "* %s %s", RemoveUnderScore(playerid), params); } NearByMessage(playerid, COLOR_PURPLE, string); Player[playerid][MeActions]++; return 1; }