Accueil Crush your enemies... and create an EMPIRE!!! Space Empires V -- BUY NOW!!!

Connexion utilisateur

  • Créer un nouveau compte
  • Demander un nouveau mot de passe

Navigation

  • news
    • archive
    • blogs
    • books
    • forums
    • recent posts
    • groups
  • image galleries
  • projects & downloads
  • search
  • create content
  • agrégateur de nouvelles

Rechercher

Qui est en ligne

Il y a actuellement 3 utilisateurs et 176 invités en ligne.

Utilisateurs en ligne

  • GambitUK
  • Santiago
  • Captain Kwok

Languages

  • English English
  • French French

Parcourir les archives

« Septembre 2008  
Lu Ma Me Je Ve Sa Di
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30          
Accueil » news » forums » Space Empires V » Space Empires V FAQs

Empty carriers?

Soumis par Hot-Rod-Lincoln le Lun, 2006-12-04 20:27 Space Empires V FAQs

Yaknow, its wierd. my enemies have 200 carriers but 0 fighters.... is this an AI issue or did I just advance too quick for them.....? its no fun when they dont fight back.

‹ is there a way you can actually get a computer to accept your treaty? Stealing Tech - Does it happen? ›
» Vous devez vous identifier ou créer un compte pour écrire des commentaires

Options d'affichage des commentaires

Sélectionnez la méthode d'affichage des commentaires que vous préférez, puis cliquez sur "Sauvegarder les paramètres" pour activer vos changements.
Image de col.kurtz

The AI doesn’t build fighters

Soumis par col.kurtz le Mar, 2006-12-05 04:23

Yes it’s silly but at the moment the AI doesn’t build fighters, but keeps building empty Carriers nevertheless.

-------------
Feel lucky earthling ?

» Vous devez vous identifier ou créer un compte pour écrire des commentaires

Fighters are units

Soumis par evilginger le Mar, 2006-12-05 05:28

fighters are units and the AI has a different priority for units than ships. Carriers get built along with any other ship at a higher priority than fighters which get lumped in with troops and satellites etc they should have the same priority as the carriers which would carry them but I am not sure how to separate them from the rest of the units but I think thats whats needed

» Vous devez vous identifier ou créer un compte pour écrire des commentaires
Mod Designer

It likes building useless

Soumis par LordHavoc le Mar, 2006-12-05 06:38

It likes building useless drones though

Your lord and master (below Foamy) LordHavoc

» Vous devez vous identifier ou créer un compte pour écrire des commentaires

dont know

Soumis par evilginger le Mar, 2006-12-05 07:30

I have not dug into the coding to see what priority fighters get as compared to the other units. I do know that they all get lumped together. However it would be nice if the existence of an empty carrier in system or for that matter an empty mine layer satellite layer etc bumped the priority of that particular sort of unit in that system.

» Vous devez vous identifier ou créer un compte pour écrire des commentaires
Image de Captain Kwok
Mod Designer

Too few fighters

Soumis par Captain Kwok le Mar, 2006-12-05 12:06

Based on the default values in the stock scripts, the AI should build about 10-12 fighters per carrier...

-----

Space Empires Depot | SE:V Balance Mod

» Vous devez vous identifier ou créer un compte pour écrire des commentaires
Image de Rilbur

AI scripting

Soumis par Rilbur le Mar, 2006-12-05 12:12

Just out of curiosity, is there any way to teach the AI to "read" the number of fighters in a carrier and then prioritize fighters to top it off?
_______________________
There are 10 types of people in the world:

Those that understand binary, and those that don't.

» Vous devez vous identifier ou créer un compte pour écrire des commentaires

Lost Fighters

Soumis par Fishman le Mar, 2006-12-05 12:17

Captain Kwok wrote:
Based on the default values in the stock scripts, the AI should build about 10-12 fighters per carrier...
It might be doing this, but there's a few flaws in this: First, it doesn't build the fighters in the same place as the carriers, so the fighters are stuck on some shithole planet in the sticks, while a pile of empty carriers forms over the AI homeworld.

Second, fighters have an alarming tendency to be shot down against even relatively weak opponents. I only use them as pursuit and mop-up craft, as they get eaten alive by any force that uses direct-fire weaponry, and heaven forbid they meet anything with PD, due to their relatively weak evasion values.

The AI, of course, is probably not aggressively stacking +eva, nor is he using his fighters conservatively, so what few manage to find their way onto a carrier instead of rotting on some planet somewhere probably are quickly shot down, leaving empty carriers that merely run from every fight instead of doing something intelligent and useful, like ramming their enemies to actually cause damage. So instead the AI's fleet is composed of masses of useless carriers that serve no other purpose other than to flee rapidly from anything that doesn't have enough fighters to chase them down (and your balancemod design scripts which tend to cause them to pack lots of PD guns, making it impractical to use your own fighters to chase them!). Thus those carriers exist only to be hunted to the death in pop-and-shoot warp point fights and to stir up unrest in newly conquered systems when chasing them down is an exercise like herding cats.

Meanwhile, all the AI's fighters(that weren't senselessly shot down in a random carrier skirmish) are grounded on some distant runway, where they don't launch in defense of the planet and get vulched.

» Vous devez vous identifier ou créer un compte pour écrire des commentaires
Image de maran

Forcing the number of carriers to create more fighters?

Soumis par maran le Mar, 2006-12-05 13:20

I have just effectively set a 1 carrier max (like kwok's AI) because I realised how ineffective they were. I have also turned up the base build points on fighters because they seemed to be far too low when counting the minus modifiers for being in existance and being in the queue.

Previously the AI would be lucky to get ten in its build queue's, never mind in a fleet or on a carrier, before the priority dropped below most other things.

I wonder if its possible to have the number of carriers raise the build priority for fighters... thats something i'll have to check, how about using this loop and if statement on the build priorities, i have borrowed it from Script_AI_Lists.txt.

A loop if you will of all ships you own, excuse my loop coding its been awhile but kwok or someone should be able to tidy it up Smiling

For Script_AI_construction.txt

loopcount long
carriercount long

for loopcount in [lst_AI_Our_Ships]

do
call lst_AI_Our_Ships.add(sobj_id)
set ai_design_type := Sys_Get_Space_Object_Ai_Design_Type(sobj_id)

if ai_design_type := "carrier" then

carriercount := carriercount + 1

endif

done

// Depending on how high carrier count is then

set type_name := "Fighter"
set veh_size_class := AI_VEHICLE_SIZE_CLASS_FIGHTER
set tf_role := TASK_FORCE_ROLE_PICKET
set add_type := bool_Race_Uses_Fighters
set curr_in_existence := -100
set curr_in_queues := -100
set curr_base := 2000

if carriercount > 2 then
set curr_base := 3000
endif

if carriercount > 5 then
set curr_base := 5000
endif

if carriercount > 10 then
set curr_base := 10000
endif

Been fiddling with the loop and i'm not sure about the call lst_AI_Our_Ships.add statement, should it be list_AI_Our_ships.get or set?
But you get the idea. Anyone think it would work with a bit of code correction?

---

Designing an advanced, diplomatic AI + shipset
Consult the great SEV Wiki

» Vous devez vous identifier ou créer un compte pour écrire des commentaires

Re: dont know

Soumis par BlueM99n84 le Jeu, 2007-02-15 06:46

There is a file, I think it is Script_AI_Construction that along with the AI_GlobalSettings that is used to set those priorities discussed.

I think the problem is that in this code it calls out specifically for Attack Ships (Defense Ships get the same default for Attack), Satellites, Mines, Weapons Platforms, and wallah Carriers. I suspect that you could add in code that gives a high priority to fighters.

» Vous devez vous identifier ou créer un compte pour écrire des commentaires

Re: Forcing the number of carriers to create more fighters?

Soumis par BlueM99n84 le Jeu, 2007-02-15 06:54

I think you are on to something. I have only just read through the scripts for this but I think it is feasible or in the Script_AI_GlobalSettings file you could introduce some lines that check the players number of carriers and adjusts the priority for them up to what an Attack Ship gets...then they cannot be bumped. Once you hit the total unit space for the carriers the priority could be adjusted back down. I think the latter would have to happen in the Script_AI_Construction file.

» Vous devez vous identifier ou créer un compte pour écrire des commentaires
Image de pikcachu20

Re: Empty carriers?

Soumis par pikcachu20 le Jeu, 2007-02-15 10:15

I must be playing a different game...As I stated in a different post, in a stock game, since 1.25 I have run into carriers with fighters on numorous occasions.

» Vous devez vous identifier ou créer un compte pour écrire des commentaires

Re: Empty carriers?

Soumis par evilginger le Jeu, 2007-02-15 10:21

Empty carriers used to be a problem is stock pre 1.25 but now if you hit an empty carier its frequently because its just been built/refited or has lanched all its fighters and gone back for more. Not seen one not in orbit of as shipyard world since 1.25

» Vous devez vous identifier ou créer un compte pour écrire des commentaires

Options d'affichage des commentaires

Sélectionnez la méthode d'affichage des commentaires que vous préférez, puis cliquez sur "Sauvegarder les paramètres" pour activer vos changements.

Now on STEAM

Now on STEAM!Space Empires V via STEAMSpace Empires IV via STEAMSTEAM online by Valve Corporation

Contenu populaire

Aujourd'hui :

  • Babylon 5 Space Empires V mod?
  • Balance Mod v1.05 Available!
  • Space Empires V
  • Killing crew
  • Ship Capture Issues

Depuis toujours :

  • Space Empires V and VI: Expansions and the Future: Tell the Company What's on Your Wish List
  • Space Empires V
  • Gritty Galaxy Fleet Clash
  • Damn Dirty Bugs/Annoyances
  • Space Empires V: General Thoughts, Observations, and Suggestions

Dernier accès :

  • So Where the @#$% is...
  • Its Time To Say Good Bye
  • Killing crew
  • Strictly Scripting...
  • Preveiw of the BSG MOD!
(c) Strategy First, Inc. All rights reserved.