15.02.2012, 19:01
Nice tutorial...
And we can use enums for example:
And we usually use it like (example):
but we can use it:
p.s sorry if you already post it :S
And we can use enums for example:
pawn Code:
enum Info
{
Some,
Else,
More
}
new Data[MAX_PLAYERS][Info];
pawn Code:
Data[playerid][Some] = 2;
Data[playerid][Else] = 1456416;
pawn Code:
Data[playerid][Info:0] = 2; //Is the same like Data[playerid][Some]
Data[playerid][Info:1] = 1456416