View Single Post
IEcliPsEI95
Junior Member
Join Date: Jul 2011
Location: Romania
Old 08-09-2015 , 07:21   Re: [TUT] Enumerations (enum)
Reply With Quote #114

Can anyone help me with this one, if I done it correctly?

PHP Code:
enum _:days{
   
freeday = -1,
   
sunday,
   
monday,
   
tuesday,
   
wensday,
   
thirsday,
   
friday,
   
saturday
}

new 
today freeday //game starts in freeday to allow players to connect

new bool:wasThisDay[days//this will be an array of bools 


... somewhere in the code
if(bool:wasThisDay[thirsday] == false)
{
    
wasThisDay[thirsday] = true
    today 
thirsday 

it's ok to make it like this, wanted to associate numers to defines just like in c
IEcliPsEI95 is offline