Page 1 of 1

Anyone care for...

Posted: Sat Aug 01, 2015 11:18 pm
by Spillages
A game of checkers?

Code: Select all

       ---------------------------------
    8  | x |   | x |   | x |   | x |   |
       |---+---+---+---+---+---+---+---|
    7  |   | x |   | x |   | x |   | x |
       |---+---+---+---+---+---+---+---|
    6  | x |   | x |   | x |   | x |   |
       |---+---+---+---+---+---+---+---|
    5  |   |   |   |   |   |   |   |   |
       |---+---+---+---+---+---+---+---|
    4  |   |   |   |   |   |   |   |   |
       |---+---+---+---+---+---+---+---|
    3  |   | o |   | o |   | o |   | o |
       |---+---+---+---+---+---+---+---|
    2  | o |   | o |   | o |   | o |   |
       |---+---+---+---+---+---+---+---|
    1  |   | o |   | o |   | o |   | o |
       ---------------------------------
         a   b   c   d   e   f   g   h


Rules: anyone can play either side, but once you pick a side, you cannot make plays for the opposite side.
When posting, state your team, your pieces originating location and it's new location.
to maintain proper structure of the game board and keep edges lined up, simply replace the removed x or o with a space and replace the space with your token.
If two players happen to post from the same team in short succession, the first to post the move goes and the second post is disregarded.

For example, I will make the first play:

I am representing team o
I am moving token from F3 to G4

Code: Select all

       ---------------------------------
    8  | x |   | x |   | x |   | x |   |
       |---+---+---+---+---+---+---+---|
    7  |   | x |   | x |   | x |   | x |
       |---+---+---+---+---+---+---+---|
    6  | x |   | x |   | x |   | x |   |
       |---+---+---+---+---+---+---+---|
    5  |   |   |   |   |   |   |   |   |
       |---+---+---+---+---+---+---+---|
    4  |   |   |   |   |   |   | o |   |
       |---+---+---+---+---+---+---+---|
    3  |   | o |   | o |   |   |   | o |
       |---+---+---+---+---+---+---+---|
    2  | o |   | o |   | o |   | o |   |
       |---+---+---+---+---+---+---+---|
    1  |   | o |   | o |   | o |   | o |
       ---------------------------------
         a   b   c   d   e   f   g   h


Now that I have made this move, I am locked into team o and cannot be found later in the game to be playing for team x.

Re: Anyone care for...

Posted: Tue Nov 03, 2015 2:10 am
by Misato

Code: Select all

       ---------------------------------
    8  | x |   | x |   | x |   | x |   |
       |---+---+---+---+---+---+---+---|
    7  |   | x |   | x |   | x |   | x |
       |---+---+---+---+---+---+---+---|
    6  | x |   | x |   | x |   |   |   |
       |---+---+---+---+---+---+---+---|
    5  |   |   |   |   |   | x |   |   |
       |---+---+---+---+---+---+---+---|
    4  |   |   |   |   |   |   | o |   |
       |---+---+---+---+---+---+---+---|
    3  |   | o |   | o |   |   |   | o |
       |---+---+---+---+---+---+---+---|
    2  | o |   | o |   | o |   | o |   |
       |---+---+---+---+---+---+---+---|
    1  |   | o |   | o |   | o |   | o |
       ---------------------------------
         a   b   c   d   e   f   g   h


G6 to F5, for team X.

Re: Anyone care for...

Posted: Mon Jan 04, 2016 2:53 am
by Gentlemam245

Code: Select all

       ---------------------------------
    8  | x |   | x |   | x |   | x |   |
       |---+---+---+---+---+---+---+---|
    7  |   | x |   | x |   | x |   | x |
       |---+---+---+---+---+---+---+---|
    6  | x |   | x |   | x |   |   |   |
       |---+---+---+---+---+---+---+---|
    5  |   |   |   |   |   | x |   |   |
       |---+---+---+---+---+---+---+---|
    4  |   |   | o |   |   |   | o |   |
       |---+---+---+---+---+---+---+---|
    3  |   | o |   |   |   |   |   | o |
       |---+---+---+---+---+---+---+---|
    2  | o |   | o |   | o |   | o |   |
       |---+---+---+---+---+---+---+---|
    1  |   | o |   | o |   | o |   | o |
       ---------------------------------
         a   b   c   d   e   f   g   h



D3 to C4, playing team o!