index out of bounds mean that the number inside the [] of an array exceeds the max number..
Code:
new Array[32]
Array[0] = 1 //works
Array[31] = 1 //works too
Array[32] = 1 // error.. out fo bounds.. why?: new Array[32] initializes an array with 32 elements.. starting from 0 and up to 31...
//so make sure that the number doesnt exceed the max number :P
Hope you understand now..
*still pretty unstable with pawn/small... just know general coding stuff

(wrote it to show you what i was meaning.. kinda.. meh

)
-- GeekFOrce
__________________
C# allows you to shoot yourself in the foot rather easy, C++ allows you to reuse the bullet.