all Rai AI is refusing to use Sea and only Air
Moderators: hoijui, Moderators
- crazy dave
- Posts: 65
- Joined: 17 Aug 2010, 21:39
all Rai AI is refusing to use Sea and only Air
every time i join a game in single player Rai AI refuses to use sea, and only uses Air on island sea maps. can i fix this in any way as all othere AIs use Air and land
-
- Posts: 823
- Joined: 21 Oct 2008, 02:54
Re: all Rai AI is refusing to use Sea and only Air
Wrong section. Try the "AI" section.
Re: all Rai AI is refusing to use Sea and only Air
if you know C++ well, you could change RAI.. there is no other way.
Re: all Rai AI is refusing to use Sea and only Air
I've seen RAI build boats before what game/mod are you playing?
- crazy dave
- Posts: 65
- Joined: 17 Aug 2010, 21:39
Re: all Rai AI is refusing to use Sea and only Air
i use BA, CA and NOTA all the time and they never build sea, they use amphibious tanks but never sea and ships. They only use Air Bomber attacks on sea maps.
If there is no solution could some one recommend me a download link for a Good AI that can use SEA AIR and LAND
and tell me how to install it coz i am a noob
Thx for all help
If there is no solution could some one recommend me a download link for a Good AI that can use SEA AIR and LAND
and tell me how to install it coz i am a noob

Thx for all help

Re: all Rai AI is refusing to use Sea and only Air
I just tested a game with RAI, AAI and E323 and all of them build ships. This is with the bots from the latest spring release. I started a online game tho, not single player...not sure if that could make a difference.
Re: all Rai AI is refusing to use Sea and only Air
E323AI does not officially support naval gameplay. Building of naval units by AI is just a side effect of _partial_ naval units support. It is not finished yet.
- crazy dave
- Posts: 65
- Joined: 17 Aug 2010, 21:39
Re: all Rai AI is refusing to use Sea and only Air
i just played a game with AAI and E323 and they build tide machines but not Dock yards to make ships or subs
could anyone recommend me a good AI for ships

could anyone recommend me a good AI for ships
Re: all Rai AI is refusing to use Sea and only Air
You can make one with by writing a config for shard.
Re: all Rai AI is refusing to use Sea and only Air
Be aware Shard at the moment has no capacity for detecting ponds and small lakes, it will build shipyards on water close to the builder at the time if told to, though it wont go out of its way to seek out water.
- crazy dave
- Posts: 65
- Joined: 17 Aug 2010, 21:39
Re: all Rai AI is refusing to use Sea and only Air
soz guys im a noob i can't mod anything except cry engine 2
so i can't fix the AI
so i can't fix the AI

Re: all Rai AI is refusing to use Sea and only Air
Well making a config for shard it actually pretty simple. It's little more than making lists of units. I would be willing to show you if need be.
- crazy dave
- Posts: 65
- Joined: 17 Aug 2010, 21:39
Re: all Rai AI is refusing to use Sea and only Air
i picture tutorial or something would help lots im used to using a flow grath in the cry engine i guessing this is alot different, thx for all the help guys


Re: all Rai AI is refusing to use Sea and only Air
A 5 year old could understand Shards most primitive mechanism for supporting games. Their only obstacle would be their typing speed and reading comprehension
Builders have task lists, or build orders. Shard starts at the beginning of this list, and works its way to the end skipping any it cant do, then repeats. Build orders are lists of unit names
This is a list of things to build called commanderlist. At the end your telling Shard, that the 'corcom' unit type, is to follow the 'commanderlist' taskqueue.
That is all you need to know to get started. That inside:
<yourSpringfolder>\AI\Skirmish\Shard\0.3-Hairy\ai\<gameshortname>\taskqueues.lua
Shard will print out the 'shortname' in the console at startup if you don't already know it, and if the folder and file don't exist, just create a new folder and a new file and paste that in there.
For inspiration look in the other game folders to see what other people did.
Builders have task lists, or build orders. Shard starts at the beginning of this list, and works its way to the end skipping any it cant do, then repeats. Build orders are lists of unit names
Code: Select all
commanderlist = {
"corsolar",
"cormex",
"cormex",
}
taskqueues = {
corcom = commanderlist,
}
That is all you need to know to get started. That inside:
<yourSpringfolder>\AI\Skirmish\Shard\0.3-Hairy\ai\<gameshortname>\taskqueues.lua
Shard will print out the 'shortname' in the console at startup if you don't already know it, and if the folder and file don't exist, just create a new folder and a new file and paste that in there.
For inspiration look in the other game folders to see what other people did.
Re: all Rai AI is refusing to use Sea and only Air
Due to RAI official forum thread is disappeared i'm posting here.
According to attached log file AI thinks it can build nothing on this water map. So, definitely the problem exists.
According to attached log file AI thinks it can build nothing on this water map. So, definitely the problem exists.
- Attachments
-
- test.log
- (4.57 KiB) Downloaded 109 times