I have a variable that show some items separated with a "^n" character.
My noob question is that the "^n" is taken a place in the size specified for the string variable, so for example:
Code:
new days[18]
days = "^n1. Lunes^n2. Martes^n"
How much places will take from the declared size of the variable the character "^n"? 1, 2 or 0?
Maybe the above question is stupid, but it is still dificult for me to know if when I make a variable:
the number 10 is the amount of characters that she can hold? or it is an array of 10 places?. I'm confiused since I read the scripting help from the Amx Mod X Scripting Help Docs.
Thanks.
PD: I always have work with ObjetcPascal (Delphi) variables that are a little different that the ones Pawn uses.