Quote:
Originally Posted by Team_PRO
change the string to more higher
you might wanna try this:
pawn Код:
COMMAND:me(playerid, params[]) { new action[200], string[246]; if(sscanf(params, "s[128]", action)) return SCME(playerid, COLOR_ORANGE, "USAGE: {FFFFFF}/me [action]"); else { format(string, sizeof(string), "* %s %s",RPName(playerid),action); SendNearbyMessage(playerid, COLOR_PURPLE, string, 30.0); } return 1; }
|
This is wrong.
Increasing the string size would not do anything.
SendClientMessage's limit is 128 characters, there is no way you can send more than that.