EXHIBIT #2304273 CONFIDENTIAL GAMING SCRIPT SEIZURE //This will declare a variable called "Players" which holds 32 numbers. new Players[32] //You can now store values in any of the 32 "slots" this array has. // The slots are numbered from 0 to n-1, or in this case, 0 to 31. //Every slot starts off as 0. //Set slot 0 to 5 Players[0] = 5 //Set slot 1 to whatever is in slot 0, in this case, the number 5 Players[1] = Players[0] //This is invalid! //Although there are 32 slots, they are numbered from 0 to 31. //Doing this results in AMX Native Error 4 - AMX_ERR_BOUNDS // or, it simply won't compile! Players[32] = 15 //This is also totally invalid Players[-1] = 6