SA-MP Forums Archive
enums? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: enums? (/showthread.php?tid=169169)



enums? - Luis- - 18.08.2010

Hey, I made this enum for Team but i get an error..

pawn Код:
enum Teams
{
    Team:1,
    Team:2,
    Team:3,
    Team:4,
    Team:5,
}
Код:
C:\Users\BooNii3\Geramia RP\LS-RP\gamemodes\LSRP.pwn(23) : error 001: expected token: "-identifier-", but found "-integer value-"



Re: enums? - Dark_Kostas - 18.08.2010

i think the problem is at the character ":" try removing it so you will have "Team1/Team2/....."


Re: enums? - playbox12 - 18.08.2010

pawn Код:
enum Teams
{
    Team1,
    Team2,
    Team3,
    Team4,
    Team5,
}

new NAME.THIS.TO.SOMETHING.YOU.WANT[Teams];
example: new teams[Teams];


Re: enums? - playbox12 - 18.08.2010

Sorry for this double post