Is it possible to create a game like checkers with GS ??
aalzanki
Member Posts: 283
Hi..
Is it possible to create a game like checkers with GS ??
If yes, how would I let the actor move ??
Is it possible to create a game like checkers with GS ??
If yes, how would I let the actor move ??
Comments
Have the human move the checkers. Otherwise you will need to build an AI sequence...which is doable but fairly advanced and difficult.
by the thanks for the helpful information .
when touch is pressed, checkerPiece.position.X and Y = device.touch.X and Y.
when touch is released and when checkerPiece(actor1) overlaps the boardSquare (actor2)...
self.position.X and Y (actor 1) = boardSquare.position.X and Y (actor2)
The above is not the actual syntax...but is the correct logic sequence.
Make sense?
If not...you probably need to do some tutorials and read up in the old forum posts as well as the reference section if you haven't already. It takes a week or two to get your head around everything...but if you take the time to do that...LIFE WILL BE MUCH SIMPLER LATER.
I will take a look at the things you said.
http://itunes.apple.com/us/app/oh-nuts/id333251039?mt=8
Checkers would be the same concept but with many more rules as the board is larger and you have two sets of game pieces.
It can probably be done - but it won't be for the faint of heart.