04.09.2017, 22:35
You literally waited FOUR minutes before bumping again.
Be patient and you might get some help.
Here's an example of a way you could do it:
You don't need to format it if it's just plain text. For example:
Be patient and you might get some help.
Here's an example of a way you could do it:
PHP код:
new
primary_str[900],
sub_str[128]
;
format(sub_str, sizeof(sub_str), "Your player ID is: %i\n", playerid);
strcat(primary_str, sub_str);
ShowPlayerDialog(playerid, DIALOG_ID, DIALOG_STYLE, "Caption", primary_str, "<<", "");
//primary_str: destination.
//sub_str: source.
PHP код:
strcat(primary_str, "On the next line is your other information:\n");