06.12.2012, 19:42
Password is a string, not an integer. Go to your enum and change
TO
pawn Код:
enum info
{
Pass, // <-- this
// rest;
}
pawn Код:
enum info
{
Pass[ 129 ], // <-- to this
// rest;
}