Quote:
Originally Posted by Abagail
Use strcat, and ShowDialogForPlayer.
Example:
pawn Код:
CMD:help(playerid, params[]) { new string[125]; // change this to suit your needs. strcat(string, "Line 1\n", sizeof(string)); strcat(string, "Line 2\n", sizeof(string)); ShowDialogForPlayer(playerid, -1, DIALOG_STYLE_MSGBOX, "Messagebox Title", string, "", ""); return 1; }
And use SendClientMessage for chat messages.
|
Thanks, but I' confused here. I need to make the admin commands list only for levels 1 to 4, how do I do that?
And also, could you be a bit more specific on SendClientMessage? Sorry for being an ultra n00b. Thanks!