1156
Axe / Shifting Order
« on: April 11, 2010, 08:48:23 pm »
Say that 7 players have a number (1-7).
Say there is a list that is populated with these numbers (1-7).
The concept here is to establish some sort of order here.
i.e. When Player 1 moves, he moves to the bottom of the list and works his way up the list. Every other player follows suit.
EDIT: The list looks like this.
*Player 1 ends his turn
The list should look like this.
Say there is a list that is populated with these numbers (1-7).
The concept here is to establish some sort of order here.
i.e. When Player 1 moves, he moves to the bottom of the list and works his way up the list. Every other player follows suit.
EDIT: The list looks like this.
Code: [Select]
1
2
3
4
5
6
7
*Player 1 ends his turn
The list should look like this.
Code: [Select]
2
3
4
5
6
7
1