ok, I wanted to create game similar to one game that I used to play 15 years ago. It's a logical/puzzle game for 2 players. The goal is to dominate all fields and color them in your color.
You start with empty grid and you have to click on a square to color it with your color. Then it's 2nd players turn to do same.
If you click again on field you already colored you increase it's value by 1.
Fields have their maximum values. Squares in corners have 2, by the edge 3, and in the middle of grid 4.
If you click on a square that already has it's maximum value - it "explodes" adding one point to neighbor squares (like on picture after clicking on square with 4 dots). If there are more squares with maximum value, you can create nice chain reactions.
And here's end of the game, after one big chain reaction.
AND NOW....... QUESTIONS:
a) I know I'll have to use 2D array for saving values of squares. How do they work in Game Editor?
b) How to "connect" clicking on grid of actors so it adds value to array with values?
c) Is it possible to create a network game in GE?
d) Any idea's how to create good computer player AI?
that's enough for start. thnx