07.05.2017, 02:01
The reason you're getting cut off on the text is because of big the character array is.
str[1000] should be str[4096] or whatever because in the samp limits;
https://sampwiki.blast.hk/wiki/Limits
You can only have up to 4096 characters in the information of a dialog. So that should fix your problem with that.
Код:
str[1000], str1[500], count = 0, name[MAX_PLAYER_NAME];
https://sampwiki.blast.hk/wiki/Limits
You can only have up to 4096 characters in the information of a dialog. So that should fix your problem with that.

