I am trying to make a main menu using an array in Game Maker, and am using the following code to initialize it in the "Create" event. For the life of me I cannot figure out why it isn't working. I am getting the error:
Error at line 1 pos 5: Assignment operator expected.
So apparently the string variables are not assigning to the array indexes? Here is my code:
I am running Game Maker studio Professional Edition (v1.4.1567) if that helps.
menu[0] = "Start";
menu[1] = "Continue";
menu[2] = "Level Select";
menu[3] = "Options";
menu[4] = "Quit";