Results 1 to 6 of 6

Thread: How do you give money to other factions?

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default How do you give money to other factions?

    Is there a easier way to do this than to use force_diplomacy on other factions? It would take a few turns to get diplomats to places like Armenia. I heard you can use the add_money cheat on other factions but when I try it it never works. Im trying to do a realistic Roman campaign so I want the AI factions, pirticually in the east to be at peace for a while

    +rep to the person that helps me



  2. #2

    Default Re: How do you give money to other factions?

    Hmm, I'm pretty sure those are the only ways.but I found this and maybe just find the other factions and edit it. Sorry :*(

    Go to
    <your directory>\Data\world\maps\campaign\imperial_campaign
    Then open the text file &quot;descr_strat&quot;.
    Go all the way down till you see (Heres what it should look like) it shouldn't take long. Then just edit the denari you want to have say from 5000 to 999999 (Most i've done) on your selected faction and then close the file run the game and when you play Imperial Campaign you should have the selected amount of Denari
    ; &gt;&gt;&gt;&gt; start of factions section &lt;&lt;&lt;&lt;
    faction romans_julii, comfortable caesar
    denari 5000
    settlement

  3. #3

    Default Re: How do you give money to other factions?

    When you type in a console a command like this: ?add_money you're going to see how the add_money command should be constructed: add_money <opt:faction_type><amount>
    The problem is that there's a comma missing. The proper command should be like this:
    add_money <opt:faction_type>,<amount>
    So lets,s say you want to give 5000 dennari to Parthia. The command will be as follows:
    Code:
    add_money parthia,5000
    Don't forget about a comma or the command will not work.
    I'm sittin' here completely surrounded by no beer.

  4. #4

    Default Re: How do you give money to other factions?

    If you are willing to code the Decr_strat, go down to the bottom and put the middle eastern diplomacy and general "attitudes" as such:

    A code quote from my own descr_strat, you could copy and paste this into a back up version of your current descr strat, but make sure you read it and understand what they are doing:

    Code:
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    ; >>>> start of diplomacy section <<<<
    ;DS_ALLIED            = 0    
    ;DS_SUSPICIOUS            = 100
    ;DS_NEUTRAL            = 200
    ;DS_HOSTILE            = 400
    ;DS_AT_WAR            = 600
    
    core_attitudes    romans_julii,    600        romans_brutii
    core_attitudes    romans_julii,    200        carthage
    core_attitudes    romans_julii,    600        slave
    core_attitudes    romans_brutii,    200        romans_scipii
    core_attitudes    romans_brutii,    600        romans_julii
    core_attitudes    romans_brutii,    600        slave
    core_attitudes    romans_brutii,    100        carthage
    core_attitudes    romans_brutii,    400        gauls
    core_attitudes    romans_brutii,    0        greek_cities
    core_attitudes    romans_scipii,    200        romans_brutii
    core_attitudes    romans_scipii,    600        slave
    core_attitudes    macedon,    300        romans_brutii
    core_attitudes    macedon,    100        numidia
    core_attitudes    macedon,    600        slave
    core_attitudes  macedon,        0               greek_cities
    core_attitudes    egypt,        0        seleucid
    core_attitudes  egypt,          0               carthage
    core_attitudes    egypt,        600        slave
    core_attitudes  egypt,          300             romans_brutii
    core_attitudes    seleucid,    0        parthia
    core_attitudes    seleucid,    0        pontus, armenia
    core_attitudes    seleucid,    600        slave
    core_attitudes    seleucid,    0        egypt
    core_attitudes    seleucid,    0        numidia
    core_attitudes  seleucid,       300             romans_brutii
    core_attitudes    carthage,    100        romans_julii, romans_scipii
    core_attitudes    carthage,    0        spain
    core_attitudes    carthage,    600        slave
    core_attitudes    carthage,    600        romans_brutii
    core_attitudes    parthia,    0        armenia
    core_attitudes    parthia,    200        slave
    core_attitudes    parthia,    0        seleucid
    core_attitudes  parthia,        300             romans_brutii
    core_attitudes    pontus,        0        armenia
    core_attitudes    pontus,        600        slave
    core_attitudes  pontus,         0               numidia
    core_attitudes    gauls,        400        romans_brutii
    core_attitudes    gauls,        600        slave
    core_attitudes    gauls,        100        germans
    core_attitudes    germans,    100        gauls
    core_attitudes    germans,    200        slave
    core_attitudes    armenia,    0        pontus, seleucid
    core_attitudes    armenia,    200        slave
    core_attitudes    dacia,        600        slave
    core_attitudes  dacia,          300             romans_brutii
    core_attitudes  dacia,          200             macedon
    core_attitudes    greek_cities,    0        romans_brutii
    core_attitudes  greek_cities,   0        macedon
    core_attitudes    greek_cities,    600        slave
    core_attitudes    numidia,    600        slave
    core_attitudes    numidia,    600        britons
    core_attitudes    numidia,    0        seleucid
    core_attitudes    scythia,    600        slave
    core_attitudes  scythia,        0               thrace
    core_attitudes    spain,        0        carthage
    core_attitudes    spain,        600        slave
    core_attitudes    spain,        600        britons
    core_attitudes    thrace,        0        scythia
    core_attitudes    thrace,        600        slave
    core_attitudes    britons,    200        parthia
    core_attitudes    britons,    600        romans_julii, romans_brutii, romans_scipii, macedon, egypt, seleucid, carthage, pontus, gauls, germans, slave, armenia, dacia, greek_cities, numidia, scythia, spain, thrace
    core_attitudes    slave,        200        parthia
    core_attitudes    slave,        600        romans_julii, romans_brutii, romans_scipii, macedon, egypt, seleucid, carthage, pontus, gauls, germans, britons, armenia, dacia, greek_cities, numidia, scythia, spain, thrace
    
    faction_relationships    romans_julii,        600        romans_brutii
    faction_relationships    romans_julii,         0        romans_scipii
    faction_relationships    romans_julii,         600        slave
    faction_relationships    romans_brutii,         600        romans_julii
    faction_relationships    romans_brutii,        200        romans_scipii
    faction_relationships    romans_brutii,        200        greek_cities
    faction_relationships    romans_brutii,         400        carthage
    faction_relationships    romans_brutii,        600        slave
    faction_relationships    romans_scipii,        0        romans_julii
    faction_relationships    romans_scipii,        200        romans_brutii
    faction_relationships    romans_scipii,        600        slave
    faction_relationships    macedon,        600        slave
    faction_relationships    macedon,        200        britons
    faction_relationships    macedon,        200        numidia
    faction_relationships   macedon,                200             greek_cities
    faction_relationships    egypt,            600        slave
    faction_relationships    egypt,            0        seleucid
    faction_relationships    egypt,            200        carthage
    faction_relationships    seleucid,        100        egypt
    faction_relationships    seleucid,        600        slave
    faction_relationships   seleucid,               200             parthia
    faction_relationships    seleucid,        100        pontus, armenia, numidia
    faction_relationships    carthage,        200        egypt
    faction_relationships    carthage,        600        slave
    faction_relationships    carthage,        400        romans_brutii
    faction_relationships    parthia,        200        slave, britons
    faction_relationships    parthia,        200        seleucid
    faction_relationships    pontus,            600        slave
    faction_relationships    pontus,            100        seleucid, armenia
    faction_relationships    gauls,            600        slave
    faction_relationships    germans,        600        slave
    faction_relationships    britons,        200        parthia
    faction_relationships    britons,        600        romans_julii, romans_brutii, romans_scipii, macedon, egypt, seleucid, carthage, pontus, gauls, germans, slave, armenia, dacia, greek_cities, numidia, scythia, spain, thrace
    faction_relationships    armenia,        600        slave
    faction_relationships    armenia,        100        seleucid, pontus
    faction_relationships    dacia,            600        slave
    faction_relationships    greek_cities,        600        slave
    faction_relationships    greek_cities,        200        romans_brutii
    faction_relationships   greek_cities,           200             macedon
    faction_relationships    numidia,        600        britons
    faction_relationships    numidia,        200        macedon
    faction_relationships    numidia,        600        slave
    faction_relationships    numidia,        200        seleucid
    faction_relationships    scythia,        600        slave
    faction_relationships   scythia,                200             thrace
    faction_relationships    spain,            600        slave
    faction_relationships    spain,            600        britons
    faction_relationships    thrace,            600        slave
    faction_relationships   thrace,                 200             scythia
    faction_relationships    slave,            200        parthia
    faction_relationships    slave,            600        romans_julii, romans_brutii, romans_scipii, macedon, egypt, seleucid, carthage, pontus, gauls, germans, britons, armenia, dacia, greek_cities, numidia, scythia, spain, thrace
    So its a lot, but here is how it works. The first set of numbers Core_Attitudes is how they feel about each other, and the second set faction_relationships, sets their beginning diplomacy. I believe I have all the middle eastern factions all allied and friendly towards each other.

    Also as people above said, in that same descr_Strat you will need to start out those middle eastern NPCs bankrupt.

    Personally because Seleucids start out with an entire empire they generate some massive steam, so I start them out at negative, -1,500,000 denarii. Additionally Macedon seems impervious to modding because regardless of how you set them they will make war with greek cities. If you aren't watching I noticed they almost wiped out Dacians, so I saved them in time.

    Of course for the other computers you will have to decide how to set them. When you are playing historically and the AUC year rolls around (you start to fight them) just feed them money using the add_money faction, #### command to bolster their bank accounts so they become active again.

    This isn't fool proof, but it does buy you around 100 or so turns before the middle east becomes anarchy. Currently I am looking into making a money script to modify the computer's gold until their years come around for Roman interaction.

  5. #5
    ISA Gunner's Avatar Campidoctor
    Join Date
    Oct 2008
    Location
    Melbourne, Australia
    Posts
    1,753

    Default Re: How do you give money to other factions?

    add_money 'Mordor' 40000

    Replace Mordor with the faction you want.

    Rhun = Rhun
    Dale = Dale
    Isengard = Isengard
    Rohan = Rohan
    Gondor = Gondor
    Harad = Harad
    Orcs of the Misty Mountains = OOMM (i think)
    Eriador = Eriador
    Silvan Elves = Silvan
    High Elves = Noldor (not sure. forgot - maybe just high? i dunno)
    Dwarves = Dwarves (me thinks)

    Leave the apostraphes. Also, you can change the sum of money from -40000 all the way up to 40000. Can't give/take more or less.
    [SIGPIC][/SIGPIC]

  6. #6

    Default Re: How do you give money to other factions?

    thanks for all the help guys +rep'd



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •