23.05.2014, 15:50
(
Последний раз редактировалось NaClchemistryK; 23.05.2014 в 15:52.
Причина: There are no limits for strings in pawn? :O
)
@ the code you've shown
If the string "combine" can't hold the amount of characters of string1 and string2 added, it won't display all of it. Example:
That will only show 3/4 of the message. Why? Cause "combine" can only hold 150 characters, and not 200.
EDIT:: sorry for saying something wrong, I thought it had a limit. Pardon me.
If the string "combine" can't hold the amount of characters of string1 and string2 added, it won't display all of it. Example:
pawn Код:
new strin1[100];
new string2[100];
new combine [150];
EDIT:: sorry for saying something wrong, I thought it had a limit. Pardon me.