View Single Post
Arenmake
Junior Member
Join Date: Apr 2012
Old 04-15-2012 , 14:32   Re: index out of bounds
Reply With Quote #3

sry

PHP Code:
// Hard coded extra items
enum
{
    
EXTRA_NVISION 0,
    
EXTRA_ANTIDOTE,
    
EXTRA_MADNESS,
    
EXTRA_INFBOMB,
    
EXTRA_CLIP,
    
EXTRA_WEAPONS_STARTID
}

new 
extra_timer[33][EXTRA_WEAPONS_STARTID]

// [ ... ]

// Buy item
        
case EXTRA_CLIP:
        {
            
// Increase clip purchase count for this round
            
g_clipcounter++
            
            
extra_timer[id][EXTRA_CLIP] = 40
            check_timer
(idEXTRA_CLIP)
        } 
I'll try your code now, thanks
Arenmake is offline