Quote from: aedwards00 on Mon 15/03/2010 15:35:24
EDIT: Using your method i get the following error
"Failed to save room room1.crm; details below
room1.asc(3): Error (line 3): Expected integer value after '='"
The line in question beingCode: ags int combination = new int[6];
You must write this:
int combination[] = new int[6];
You missed [] after variable name. That is - you declared simple integer instead of array and tried to apply array reference to it.