25.04.2013, 12:55
Dude you need to #define them or put them in a enum
like this:
or
if you want to use a new, then you need to do
and im not sure that will work
like this:
pawn Код:
#define DIALOG_WEAPONS 1
#define DIALOG_SEARCH 2
...
pawn Код:
enum
{
DIALOG_WEAPONS
DIALOG_SEARCH
...
}
pawn Код:
new DIALOG_SEARCH = 1;
new DIALOG_WEAPONS = 2;
...

