14.02.2013, 19:24
Hi at all!
So, I have this
And I assign a string:
But, if I want to assign another array:
It give me some errors like: "expression has no effect".
How can I assign a string to a variabile with two arrays?
So, I have this
pawn Код:
new HouseOwner[128];
pawn Код:
HouseOwner[128] = "LolMan95";
pawn Код:
new HouseOwner[MAX_PLAYERS][128];
HouseOwner[playerid][128] = "LolMan95";
How can I assign a string to a variabile with two arrays?