03.06.2017, 21:06
You're constantly showing a new dialog and overwriting the previous. Instead, you should combine strings into a larger string and show the dialog outside of the loop.
Example:
Make sure you end your format or whatever with \n, this is a new line in the dialog.
Example:
pawn Код:
new
largestring[500],
smallstring[128],
format(smallstring, ... whatever\n)
strcat(largestring, smallstring);
// outside of loop
ShowPlayerDialog: use largestring as body text.