Yes, my DB is practically empty.
I'm talking about places where you use a player's ID number (which can be 1-32) as an index in an array:
Code:
new bool:hasTimer[32]
Then later in the code you use the player's ID number to set things in the array:
Code:
hasTimer[id] = false
Since the player ID can be 32, this code would be wrong since the legal indices for an array of size 32 are 0-31:
Code:
hasTimer[32] = false