16.03.2012, 13:20
Quote:
Can't assign a literal string to a two-dimensional array. Use strcpy/strcat/strmid to copy strings.
|
pawn Код:
enum heyyyy {
largestring[128],
smallstring[128],
}
new PlayerInfo[MAX_PLAYERS][heyyyy];
PlayerInfo[playerid][smallstring] = PlayerInfo[playerid][largestring]; // error
PlayerInfo[playerid][largestring] = PlayerInfo[playerid][smallstring]; // no error
use stract...
Stop posting if you're not familiar with any part of coding.