- Joined
- Nov 30, 2007
- Messages
- 1,202
How to organize so that you have a 'boolean' for every player to find out if that player can 1) ally 2) war 3) neutral another player.
X CAN ALLY Y = TRUE
X CAN WAR Y = TRUE
X CAN NA Y = TRUE
12*12*3
Any suggestions?
One way would be creating player groups.
Group canAlly[X] contains all players that can ally player X.
Group canWar[X] same as above but for war.
Group canNeutral[x] same as above but for na.
1-144 for can ally? 145-289 for can war etc.? It's kind of hard to keep track of things though...
X CAN ALLY Y = TRUE
X CAN WAR Y = TRUE
X CAN NA Y = TRUE
12*12*3
Any suggestions?
One way would be creating player groups.
Group canAlly[X] contains all players that can ally player X.
Group canWar[X] same as above but for war.
Group canNeutral[x] same as above but for na.
1-144 for can ally? 145-289 for can war etc.? It's kind of hard to keep track of things though...
Last edited:



