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

hi

I get this error in this code:

PHP Code:
extra_timer[id][EXTRA_CLIP] = 40 // secs
check_timer(idEXTRA_CLIP)

// ....

public check_timer(iditem)
{
    
extra_timer[id][item]--;

    if (
extra_timer[id][item] > 0)
    {
        new 
args[1]
        
args[0] = item
        
        set_task
(1.0"check_timer"idargssizeof args)
    }
    else
    {
        
extra_timer[id][item] = 0
    
}


Last edited by Arenmake; 04-15-2012 at 14:15.
Arenmake is offline