23.02.2013, 21:22
So, I'm assigning strings to a global variable and I was wondering this:
Why would this work:
But why do you need to change this:
to this:
I'm trying to understand it but I don't really get it, and I really wanna know.
Thank you in advance.
Why would this work:
pawn Код:
new Msg[][MAX_PLAYERS];
pawn Код:
new Msg[][MAX_PLAYERS][5];
pawn Код:
new Msg[MAX_PLAYERS][5][128] // 128 for string length.
Thank you in advance.