03.09.2016, 08:33
";" is a way of saying to compiler that we reached end of statement.
You can create two variables without having to repeat "new" keyword, using a comma
But you have a typo, and did
Change it to comma and you're good to go.
pawn Код:
new a;
new b[32];
pawn Код:
new a, b[32];
pawn Код:
new a; b[32];