Matrix Games Forums

Forums  Register  Login  Photo Gallery  Member List  Search  Calendars  FAQ 

My Profile  Inbox  Address Book  My Subscription  My Forums  Log Out

RE: Strategy 101 resources wanted

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
  Printable Version
All Forums >> [Current Games From Matrix.] >> [World War II] >> Norm Koger's The Operational Art Of War III >> RE: Strategy 101 resources wanted Page: <<   < prev  1 2 [3]
Login
Message << Older Topic   Newer Topic >>
RE: Strategy 101 resources wanted - 2/14/2014 11:35:34 PM   
ralphtricky


Posts: 6685
Joined: 7/27/2003
From: Colorado Springs
Status: offline

quote:

ORIGINAL: sPzAbt653

quote:

He should not be overstacking, I'll look at that and the flanking. Part of that is that he can be much less cautious depending on the formation stance.


I just realised that changes may have been made since 3.4 or early 3.5, so I may be using an outdated Elmer. Sorry about that.

I don't think it has changed that much. I guess the question is what do you mean by overstack? He DOES overstack when prosecuting an attack on the most aggressive level. Other than that he does stack, but tries not to exceed the limit where the overstacking indicator appears.

(in reply to sPzAbt653)
Post #: 61
RE: Strategy 101 resources wanted - 2/14/2014 11:40:17 PM   
ralphtricky


Posts: 6685
Joined: 7/27/2003
From: Colorado Springs
Status: offline

quote:

ORIGINAL: golden delicious


quote:

ORIGINAL: ralphtrick

Here's a good talk about the difference between 'good' and 'fun' AI. Eventually, I also want to add 'personality' to the AIs, some might be more aggressive, some might be more passive. Usage of armor for breakthroughs, different levels of reserves might be kept, etc.

http://www.youtube.com/watch?v=IJcuQQ1eWWI&feature=sub



IF year = 1900 AND playerwinning = "Yes" THEN DOWHuman()

Wow.

If you're losing and close to the end of the scenario, forget history and see if you can take anything.
if (Events.winner() != currentPlayer) {
	if (OPCalendar.calendar.currentTurn > (OPCalendar.calendar.finalTurn - 3)) {
		generalOrdersBias = BANZAI;
		generalEmphasis = ALL_COSTS;
		poAttackFlavor = ATTACKING_STATUS;
		poLog(logPOGeneral, " PO general orders: Banzai.");
		poLog(logPOGeneral, " PO general emphasis: Ignore losses.");
	}
}


(in reply to golden delicious)
Post #: 62
RE: Strategy 101 resources wanted - 2/14/2014 11:43:52 PM   
ralphtricky


Posts: 6685
Joined: 7/27/2003
From: Colorado Springs
Status: offline
quote:

ORIGINAL: governato
Ralph,

There is an hour long lecture from Dave O'Connor, (Arjuna), the developer of Command Ops here:

http://www.wargamer.com/hosted/dropzone/articles/index.html

You are probably familiar with the description of the game, but the audio file on the AI algorithms is quite interesting and the short articles are hopefully useful to improve the AI a bit.

Thanks, I'll take a look.

(in reply to governato)
Post #: 63
RE: Strategy 101 resources wanted - 2/15/2014 12:53:17 AM   
ralphtricky


Posts: 6685
Joined: 7/27/2003
From: Colorado Springs
Status: offline
The current code tries to help the AI make good decisions, but it may make it a little harder for people to program it. It does this using the total AP force on the map, then it does something else for each of the formations to modify it based on all VISIBLE units within about 9 hexes of the center of the formation. It uses this final multiplier to determine how the AI reacts.

This initial check is the one that I wonder if I shouldn't just eliminate (except for the final push.) I understand why it's there, and how it can help, but it seems like it makes it harder for designers. The other option I might pursue is to treat the designer value as an override instead of a modifier if set to anything other than 'stand'.


(in reply to ralphtricky)
Post #: 64
RE: Strategy 101 resources wanted - 2/15/2014 1:48:34 AM   
sPzAbt653


Posts: 9511
Joined: 5/3/2007
From: east coast, usa
Status: offline

quote:

ORIGINAL: ralphtrick


quote:

ORIGINAL: sPzAbt653

quote:

He should not be overstacking, I'll look at that and the flanking. Part of that is that he can be much less cautious depending on the formation stance.


I just realised that changes may have been made since 3.4 or early 3.5, so I may be using an outdated Elmer. Sorry about that.

I don't think it has changed that much. I guess the question is what do you mean by overstack? He DOES overstack when prosecuting an attack on the most aggressive level. Other than that he does stack, but tries not to exceed the limit where the overstacking indicator appears.



This is an example using 3.4. As the German (grey) units are on the defense, they are in a good terrain position (the mountians to the southwest have badlands, so they are good flank protection). But, they are too dense, on minimal losses and not dug in. It seems to be a good defensive position, but with a horrible defensive unit arrangement. Can Elmer make a determination like 'if on defense, and stacked in the red, go for some depth' ?




Attachment (1)

(in reply to ralphtricky)
Post #: 65
RE: Strategy 101 resources wanted - 2/15/2014 1:52:33 AM   
sPzAbt653


Posts: 9511
Joined: 5/3/2007
From: east coast, usa
Status: offline
quote:

(OPCalendar.calendar.finalTurn - 3))


I know there is good reason for this, but it usually means that Elmer plays better on the final three turns. I've tried setting him to Attack and Berzerk but he still doesn't go for it unitl the last three turns. Is there a way to trick him into thinking its that late earlier in the scenario ?

(in reply to ralphtricky)
Post #: 66
RE: Strategy 101 resources wanted - 2/15/2014 1:58:52 AM   
sPzAbt653


Posts: 9511
Joined: 5/3/2007
From: east coast, usa
Status: offline

quote:

ORIGINAL: ralphtrick

The current code tries to help the AI make good decisions, but it may make it a little harder for people to program it. It does this using the total AP force on the map, then it does something else for each of the formations to modify it based on all VISIBLE units within about 9 hexes of the center of the formation. It uses this final multiplier to determine how the AI reacts.

This initial check is the one that I wonder if I shouldn't just eliminate (except for the final push.) I understand why it's there, and how it can help, but it seems like it makes it harder for designers. The other option I might pursue is to treat the designer value as an override instead of a modifier if set to anything other than 'stand'.



I don't understand enough of this to make a useful comment, but the 'VISIBLE units within 9 hexes' thing is something I think Soren Johnson discussed. He said that a human player will generally know the probability of a unit being in a location even if its not visible, and in may cases it is therefore 'ok' to let the PO see units that have been seen previously. I think that's what he said.

(in reply to ralphtricky)
Post #: 67
RE: Strategy 101 resources wanted - 2/15/2014 8:45:51 AM   
Grognard


Posts: 216
Joined: 6/24/2004
From: Madison, Wisconsin
Status: offline
quote:

It seems to be a good defensive position, but with a horrible defensive unit arrangement. Can Elmer make a determination like 'if on defense, and stacked in the red, go for some depth' ?


This example illustrates some of Elmer's common tendancies:

Some points might be illustrated (or argued) in this example. (Let's assume its Elmer vs Elmer)

1. Not dug in - bad Elmer/not drilled Elmer. A unit not planning to move the rest of the turn should/must always dig in. No arguements. Even with clear superiority.
1a. Min losses - Not sure why - Elmer is weak at risk/reward
2. The Panzer Rgt stack doesn't even need to be there as the other Elmer would never push a unit into the subsequent gap. Never...
3. The red stack might be (IMO "is") there to keep the odds <2:1 in which case Elmer knows Elmer won't attack.
4. I'm betting there's Arty under the Army HQ - otherwise Elmer wouldn't have assigned his SP unit to Tac Rsv. (assuming Arty is range 5 )
5. Regardless of recon level (even 0) Elmer knows that Army Arty is there. (My tin hat paranoia)
6. Corollary of 4 & 5. - If no Arty under Army HQ I wonder if the SP unit would be on Tac Rsv. - not necessarily...

Like I said - open to argument - but it generally has held true in my PO games. Operative word is "generally"

And actually - the above example is a little better than his usual behavior. I probably would not assault that position w/o a few more assets. Or a boatload of Arty under that HQ

_____________________________

Find 'em, Fix 'em, & Kill 'em

(in reply to sPzAbt653)
Post #: 68
RE: Strategy 101 resources wanted - 2/15/2014 6:55:06 PM   
sPzAbt653


Posts: 9511
Joined: 5/3/2007
From: east coast, usa
Status: offline
quote:

A unit not planning to move the rest of the turn should/must always dig in.


I'd take it a step further and say that any unit that will stay in place should dig in, but I don't know if Elmer ever determines that a unit with movement allowance left will not move. I would guess that as the situation may change due to friendly combat, he is always leaving his units available to move. As the human I always dig in if possible (why stand around if you can take cover?).

quote:

Elmer would never push a unit into the subsequent gap.


Very true, discouraging Elmer from doing the pp dance has made him not want to move thru gaps covered by zoc's (even untis with 99% recon).

quote:

assigned his SP unit to Tac Rsv. (assuming Arty is range 5 )


Range is 4, but maybe he couldn't move closer that turn.

quote:

the above example is a little better than his usual behavior. I probably would not assault that position w/o a few more assets.


Yes, but we are offering suggestions to Ralph that might help improve Elmer. One question is, as a player, could you set up a better defense, and if so could this also be made obvious to Elmer. Another question would be is the 'overstacking' necessary. I would think defense in depth would be better. What would other players do if facing a human opponent ?

(in reply to Grognard)
Post #: 69
RE: Strategy 101 resources wanted - 2/17/2014 10:56:20 PM   
Grognard


Posts: 216
Joined: 6/24/2004
From: Madison, Wisconsin
Status: offline
quote:

Another question would be is the 'overstacking' necessary. I would think defense in depth would be better. What would other players do if facing a human opponent ?


Exactly; this illustrates the difference 'tween Elmer & us. Against Elmer I will overstack to get the odds under 2:1 because I know Elmer won't attack. Against a Hu-man - never, never, never - defense in depth is more tactically sound. Reversing the roles, I would certainly do a frontal assault against a red stack at less than 2:1 just to produce the excess casualties and I would expect any Hu-man opponent to do the same. Whereas if I see your defense in depth (even with > 2:1 odds for the initial attack), a possible counterattack would certainly give me pause in the example above.

Would it be possible to program Elmer with a chance variability in his attack routine? i.e. instead of Elmer just crunching numbers - if certain conditions are met (red stacks, objective hex, key terrain hex) give him a binary yes to attack where he normally wouldn't.

To what extent does Elmer currently recognize key terrain? Chokepoints, flank anchors, etc.

_____________________________

Find 'em, Fix 'em, & Kill 'em

(in reply to sPzAbt653)
Post #: 70
RE: Strategy 101 resources wanted - 2/17/2014 11:12:22 PM   
ralphtricky


Posts: 6685
Joined: 7/27/2003
From: Colorado Springs
Status: offline
quote:

This is an example using 3.4. As the German (grey) units are on the defense, they are in a good terrain position (the mountians to the southwest have badlands, so they are good flank protection). But, they are too dense, on minimal losses and not dug in. It seems to be a good defensive position, but with a horrible defensive unit arrangement. Can Elmer make a determination like 'if on defense, and stacked in the red, go for some depth' ?

Probably, one issue is that the only defense that Elmer knows right now is a a rolling defense, not a static one. I'll take a look at what he does on defense so see if I can stiffen it.

(in reply to sPzAbt653)
Post #: 71
RE: Strategy 101 resources wanted - 2/17/2014 11:15:29 PM   
ralphtricky


Posts: 6685
Joined: 7/27/2003
From: Colorado Springs
Status: offline

quote:

ORIGINAL: sPzAbt653

quote:

(OPCalendar.calendar.finalTurn - 3))


I know there is good reason for this, but it usually means that Elmer plays better on the final three turns. I've tried setting him to Attack and Berzerk but he still doesn't go for it unitl the last three turns. Is there a way to trick him into thinking its that late earlier in the scenario ?

I am probably going to rework that for 4.0, right now, there is also a reliance on the overall odds which make it more difficult to determine that. I know there there is a global value for each side that controls Elmer's aggressiveness which should normally do what you want, although I don't remember what it's called.

(in reply to sPzAbt653)
Post #: 72
RE: Strategy 101 resources wanted - 2/17/2014 11:17:38 PM   
ralphtricky


Posts: 6685
Joined: 7/27/2003
From: Colorado Springs
Status: offline

quote:

ORIGINAL: sPzAbt653


quote:

ORIGINAL: ralphtrick

The current code tries to help the AI make good decisions, but it may make it a little harder for people to program it. It does this using the total AP force on the map, then it does something else for each of the formations to modify it based on all VISIBLE units within about 9 hexes of the center of the formation. It uses this final multiplier to determine how the AI reacts.

This initial check is the one that I wonder if I shouldn't just eliminate (except for the final push.) I understand why it's there, and how it can help, but it seems like it makes it harder for designers. The other option I might pursue is to treat the designer value as an override instead of a modifier if set to anything other than 'stand'.



I don't understand enough of this to make a useful comment, but the 'VISIBLE units within 9 hexes' thing is something I think Soren Johnson discussed. He said that a human player will generally know the probability of a unit being in a location even if its not visible, and in may cases it is therefore 'ok' to let the PO see units that have been seen previously. I think that's what he said.

Yes, but if done right, this should let Elmer fall for feints, etc. which he won't if he knows where the units actually are (at least that's my thought.) It should make him slightly more aggressive since he can't see all the units.

(in reply to sPzAbt653)
Post #: 73
RE: Strategy 101 resources wanted - 2/17/2014 11:31:31 PM   
ralphtricky


Posts: 6685
Joined: 7/27/2003
From: Colorado Springs
Status: offline
quote:

ORIGINAL: Grognard

quote:

Another question would be is the 'overstacking' necessary. I would think defense in depth would be better. What would other players do if facing a human opponent ?


Exactly; this illustrates the difference 'tween Elmer & us. Against Elmer I will overstack to get the odds under 2:1 because I know Elmer won't attack. Against a Hu-man - never, never, never - defense in depth is more tactically sound. Reversing the roles, I would certainly do a frontal assault against a red stack at less than 2:1 just to produce the excess casualties and I would expect any Hu-man opponent to do the same. Whereas if I see your defense in depth (even with > 2:1 odds for the initial attack), a possible counterattack would certainly give me pause in the example above.

Would it be possible to program Elmer with a chance variability in his attack routine? i.e. instead of Elmer just crunching numbers - if certain conditions are met (red stacks, objective hex, key terrain hex) give him a binary yes to attack where he normally wouldn't.

To what extent does Elmer currently recognize key terrain? Chokepoints, flank anchors, etc.

It might be possible to add some more stances (or tune the existing ones) so that Elmer will attack at < 1:1, the problem is that with combats taking a variable number of rounds, 1:1 odds are more likely to burn the whole turn, that's why he doesn't like low odds.

He doesn't recognize chokepoints or flank anchors, he's strictly objective based right now. He does recognize good defensive terrain and bad defensive terrain, and bridging engineers try to bridge rivers, but that's it for right now.

(in reply to Grognard)
Post #: 74
RE: Strategy 101 resources wanted - 2/17/2014 11:35:27 PM   
governato

 

Posts: 1079
Joined: 5/6/2011
From: Seattle, WA
Status: offline

quote:

ORIGINAL: ralphtrick

quote:

This is an example using 3.4. As the German (grey) units are on the defense, they are in a good terrain position (the mountians to the southwest have badlands, so they are good flank protection). But, they are too dense, on minimal losses and not dug in. It seems to be a good defensive position, but with a horrible defensive unit arrangement. Can Elmer make a determination like 'if on defense, and stacked in the red, go for some depth' ?

Probably, one issue is that the only defense that Elmer knows right now is a a rolling defense, not a static one. I'll take a look at what he does on defense so see if I can stiffen it.



My two priorities for AI improvements are connected with the ongoing discussion:

- reduce the amount of unnecessary movement of the AI units when on the defence. That will increase their supply and entrenchment levels.

- improve the ability of Elmer to create a 'continuous' front. This ideally would be a parameter to set by the scenario designer as a function of scenario scale/time period etc.

(in reply to ralphtricky)
Post #: 75
RE: Strategy 101 resources wanted - 2/18/2014 3:57:46 AM   
Grognard


Posts: 216
Joined: 6/24/2004
From: Madison, Wisconsin
Status: offline
quote:

He does recognize good defensive terrain and bad defensive terrain


Sometimes at the expense of any semblance of a defensive line - and never any flank protection...

quote:

improve the ability of Elmer to create a 'continuous' front


The difference here is contiguous vs continuous. Elmer always makes a straight contiguous line even when there aren't enuf units to accomplish the mission - so he doesn't. This is where we (humans) will alternate hexes if we have to. And reinforce the bends in the line. Elmer doesn't do bends and sometime you just have to. I think this (adequate/sensible defensive lines) would be tricky programming. Sorry Ralph - no pun intended.



_____________________________

Find 'em, Fix 'em, & Kill 'em

(in reply to governato)
Post #: 76
RE: Strategy 101 resources wanted - 2/18/2014 5:23:13 PM   
Crking

 

Posts: 1
Joined: 2/18/2014
Status: offline
I decided to register to see if I could maybe contribute to this thread. I do play a a fair amount of TOAW, but almost exclusively against the PO. Trying not repeat anything anyone else has said (sorry if I am) I would say the greatest weakness of a objective based system is there is no true strategic reserve. For smaller and shorter scenarios this is not a problem but when you get to the large and long scenarios this will leave the PO at a real disadvantage against a player. When a problem or an opportunity appears the player can use their reserves while the PO cannot. You would almost want a group of units without objective that could then take a formations objective (if it is worn out) or share one (to bolster attacks and defence). If the PO could do this, which I know is no simple matter, it would certainly help it. Although once you have the PO being able to do that, it then needs to decide when it should do that.

(in reply to Grognard)
Post #: 77
RE: Strategy 101 resources wanted - 2/18/2014 7:02:23 PM   
Telumar


Posts: 2236
Joined: 1/3/2006
From: niflheim
Status: offline

quote:

ORIGINAL: Chris K

I decided to register to see if I could maybe contribute to this thread. I do play a a fair amount of TOAW, but almost exclusively against the PO. Trying not repeat anything anyone else has said (sorry if I am) I would say the greatest weakness of a objective based system is there is no true strategic reserve. For smaller and shorter scenarios this is not a problem but when you get to the large and long scenarios this will leave the PO at a real disadvantage against a player. When a problem or an opportunity appears the player can use their reserves while the PO cannot. You would almost want a group of units without objective that could then take a formations objective (if it is worn out) or share one (to bolster attacks and defence). If the PO could do this, which I know is no simple matter, it would certainly help it. Although once you have the PO being able to do that, it then needs to decide when it should do that.


This is indeed a PO weakness, but one that can at least partially be compensated by programming a reserve in the editor. In theory the designer can immobilize a formation when under PO control and release it by an event when certain conditions are met like a hex (with or without radius) changing ownership, the variable reaching a certain value, by the victory differential etc pp. However scenario designers can not forsee all possibilities and a flexible, intelligent reserve logic as you propose would certainly be better than a 'hard coded' one.

_____________________________


(in reply to Crking)
Post #: 78
RE: Strategy 101 resources wanted - 2/19/2014 3:21:20 PM   
secadegas

 

Posts: 275
Joined: 5/16/2007
Status: offline
quote:

ORIGINAL: Telumar


quote:

ORIGINAL: Chris K

I decided to register to see if I could maybe contribute to this thread. I do play a a fair amount of TOAW, but almost exclusively against the PO. Trying not repeat anything anyone else has said (sorry if I am) I would say the greatest weakness of a objective based system is there is no true strategic reserve. For smaller and shorter scenarios this is not a problem but when you get to the large and long scenarios this will leave the PO at a real disadvantage against a player. When a problem or an opportunity appears the player can use their reserves while the PO cannot. You would almost want a group of units without objective that could then take a formations objective (if it is worn out) or share one (to bolster attacks and defence). If the PO could do this, which I know is no simple matter, it would certainly help it. Although once you have the PO being able to do that, it then needs to decide when it should do that.


This is indeed a PO weakness, but one that can at least partially be compensated by programming a reserve in the editor. In theory the designer can immobilize a formation when under PO control and release it by an event when certain conditions are met like a hex (with or without radius) changing ownership, the variable reaching a certain value, by the victory differential etc pp. However scenario designers can not forsee all possibilities and a flexible, intelligent reserve logic as you propose would certainly be better than a 'hard coded' one.


Totally agree with Telumar but I'd add something.

PO has obvious shotcomigs but most PO "problems" are clear designer flaws

PO is damned difficult to program. Takes (a lot of) not exciting time and demands (a lot of) expertise.

In 10/+ years of fora experience what i see is that even before understanding TOAW - or even "fire a pbem turn in anger" - there are a lot of "designers" and "scenarios".
And then - because nowadays most people can't lose too much time to go deep in something - a lot of claims about whole system...













< Message edited by Sekadegas -- 2/19/2014 4:34:06 PM >

(in reply to Telumar)
Post #: 79
RE: Strategy 101 resources wanted - 2/19/2014 3:24:45 PM   
secadegas

 

Posts: 275
Joined: 5/16/2007
Status: offline
double post, sorry

< Message edited by Sekadegas -- 2/19/2014 4:29:20 PM >

(in reply to secadegas)
Post #: 80
RE: Strategy 101 resources wanted - 2/19/2014 3:26:58 PM   
secadegas

 

Posts: 275
Joined: 5/16/2007
Status: offline
triple post... sorry again...

< Message edited by Sekadegas -- 2/19/2014 4:31:39 PM >

(in reply to secadegas)
Post #: 81
RE: Strategy 101 resources wanted - 2/19/2014 4:33:07 PM   
Telumar


Posts: 2236
Joined: 1/3/2006
From: niflheim
Status: offline
Come on, one more.. ;) for the quadruple...

_____________________________


(in reply to secadegas)
Post #: 82
RE: Strategy 101 resources wanted - 2/19/2014 4:51:52 PM   
governato

 

Posts: 1079
Joined: 5/6/2011
From: Seattle, WA
Status: offline

One of the things I really liked of v3.4 was the opportunity of letting the PO manage the formations, but allowing the player to change their objectives and emphasis on a turn by turn basis. That is fun and close to how I 'd like to play a lot of scenarios, especially the large ones. Also, probably a lot simpler in terms of AI programming.

However, I have always found the instructions on how to precisely do that a little obscure and I am not sure that the option is available in PBEM play. But it is something it'd be nice to emphasize in 3.5/4.

(in reply to Telumar)
Post #: 83
RE: Strategy 101 resources wanted - 2/19/2014 5:38:02 PM   
secadegas

 

Posts: 275
Joined: 5/16/2007
Status: offline

quote:

ORIGINAL: Telumar

Come on, one more.. ;) for the quadruple...


I wish i could... but i'm exhausted....

(in reply to Telumar)
Post #: 84
RE: Strategy 101 resources wanted - 2/19/2014 6:57:40 PM   
sPzAbt653


Posts: 9511
Joined: 5/3/2007
From: east coast, usa
Status: offline
quote:

I have always found the instructions on how to precisely do that a little obscure


Turn it 'on' in the Advanced Game Options, then you will see the buttons at the lower right. Then you can highlight the selected formation's objectives as seen on the left, and you can change them if you want. Then you can hit the button to 'Move the PO' and all formations will move a little. If you want a formation to not move on its own, set its orders to Manual (in the Formation Report box). Its easy to do, but can be time consuming if you make a lot of changes and if the original design has many objectives (as seen in the mini map at lower right).

Its a great way to assume command and then watch your units do or not do exactly what you intended. Designers can also use this to make PO adjustments, which is excellent. So its fun, and functional. Thanks to Ralph for putting this feature in !




Attachment (1)

(in reply to governato)
Post #: 85
RE: Strategy 101 resources wanted - 2/22/2014 2:10:53 AM   
ralphtricky


Posts: 6685
Joined: 7/27/2003
From: Colorado Springs
Status: offline
quote:

ORIGINAL: governato
One of the things I really liked of v3.4 was the opportunity of letting the PO manage the formations, but allowing the player to change their objectives and emphasis on a turn by turn basis. That is fun and close to how I 'd like to play a lot of scenarios, especially the large ones. Also, probably a lot simpler in terms of AI programming.

However, I have always found the instructions on how to precisely do that a little obscure and I am not sure that the option is available in PBEM play. But it is something it'd be nice to emphasize in 3.5/4.

It's not you, it's me. It started out life as something I threw together to diagnose the AI. I realized I could add a couple of tweaks and some other sucker, I mean worthy gentleman with time on his hands, might find it fun. I'm hoping to make it more intuitive this time.

(in reply to governato)
Post #: 86
RE: Strategy 101 resources wanted - 3/5/2014 1:18:39 AM   
governato

 

Posts: 1079
Joined: 5/6/2011
From: Seattle, WA
Status: offline
I just stumbled on this wargame of the Gettysburg battle, it is in development, but the AI seems pretty fun/capable
and the developers have a fun blog and forum.

Here is the LINK

Oh..and it's crowd funded!



(in reply to ralphtricky)
Post #: 87
Page:   <<   < prev  1 2 [3]
All Forums >> [Current Games From Matrix.] >> [World War II] >> Norm Koger's The Operational Art Of War III >> RE: Strategy 101 resources wanted Page: <<   < prev  1 2 [3]
Jump to:





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts


Forum Software © ASPPlayground.NET Advanced Edition 2.4.5 ANSI

1.563