14.02.2011, 23:46
Quote:
Oh ok, I will have to read some things again then.
@PowerPC603: Hm, never tried it with a 0 The problem why you cant use it like this: pawn Код:
A String is just a integer-array, with one int for each character. And if you use the normal '=' operator, pawn tries to write a string (array, e.g. "Hello", length 5) into another array (msg[128]). But as you can see, these both array do not have the same size, so you cant just set the one=the other. This gives you the error then. |