Results 1 to 15 of 15

Thread: Adding new temple

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Deranged rock ape Member Quirinus's Avatar
    Join Date
    Sep 2006
    Location
    Malaysia
    Posts
    982

    Default Adding new temple

    I've been trying to add a new temple to the vanilla Parthians so that their temple set is not so boring. I used the Scythian "temple_of_horse_2" (Kolaksay) as a template.

    Here's the code I changed (everything I added is in red).

    In the EDB:
    Code:
    }
    building temple_of_horse_2
    {
        levels temple_of_horse_2_shrine temple_of_horse_2_temple temple_of_horse_2_large_temple temple_of_horse_2_awesome_temple temple_of_horse_2_pantheon 
        {
            temple_of_horse_2_shrine requires factions { scythia, parthia, } 
            {
                capability
                {
                    happiness_bonus bonus 1
                    recruits_exp_bonus bonus 1
                }
                construction  1 
                cost  400 
                settlement_min town
                upgrades
                {
                    temple_of_horse_2_temple
                }
            }
            temple_of_horse_2_temple requires factions { scythia, parthia, } 
            {
                capability
                {
                    happiness_bonus bonus 2
                    recruits_exp_bonus bonus 2
                }
                construction  2 
                cost  800 
                settlement_min large_town
                upgrades
                {
                    temple_of_horse_2_large_temple
                }
            }
            temple_of_horse_2_large_temple requires factions { scythia, parthia, } 
            {
                capability
                {
                    happiness_bonus bonus 3
                    recruits_exp_bonus bonus 3
                }
                construction  3 
                cost  1600 
                settlement_min city
                upgrades
                {
                    temple_of_horse_2_awesome_temple
                }
            }
            temple_of_horse_2_awesome_temple requires factions { scythia, parthia, }
            {
                capability
                {
                    happiness_bonus bonus 4
                    recruits_exp_bonus bonus 4
                }
                construction  5 
                cost  3200 
                settlement_min large_city
                upgrades
                {
                    temple_of_horse_2_pantheon
                }
            }
            temple_of_horse_2_pantheon requires factions { scythia, parthia, }
            {
                capability
                {
                    happiness_bonus bonus 5
                    recruits_exp_bonus bonus 4
    		law_bonus bonus 2
    		trade_base_income_bonus bonus 2
                }
                construction  6 
                cost  6400 
                settlement_min huge_city
                upgrades
                {
                }
            }
        }
    (original EDB) :
    Spoiler Alert, click show to read: 
    Code:
    }
    building temple_of_horse_2
    {
        levels temple_of_horse_2_shrine temple_of_horse_2_temple temple_of_horse_2_large_temple 
        {
            temple_of_horse_2_shrine requires factions { scythia, } 
            {
                capability
                {
                    happiness_bonus bonus 1
                    recruits_exp_bonus bonus 1
                }
                construction  1 
                cost  400 
                settlement_min town
                upgrades
                {
                    temple_of_horse_2_temple
                }
            }
            temple_of_horse_2_temple requires factions { scythia, } 
            {
                capability
                {
                    happiness_bonus bonus 2
                    recruits_exp_bonus bonus 2
                }
                construction  2 
                cost  800 
                settlement_min large_town
                upgrades
                {
                    temple_of_horse_2_large_temple
                }
            }
            temple_of_horse_2_large_temple requires factions { scythia, } 
            {
                capability
                {
                    happiness_bonus bonus 3
                    recruits_exp_bonus bonus 3
                }
                construction  3 
                cost  1600 
                settlement_min city
                upgrades
                {
                }
            }
        }



    In the EDB enums:
    Code:
    temple_of_horse_2_shrine
    temple_of_horse_2_shrine_desc
    temple_of_horse_2_shrine_desc_short
    temple_of_horse_2_shrine_barbarian
    temple_of_horse_2_shrine_barbarian_desc
    temple_of_horse_2_shrine_barbarian_desc_short
    temple_of_horse_2_shrine_carthaginian_desc
    temple_of_horse_2_shrine_carthaginian_desc_short
    temple_of_horse_2_shrine_eastern_desc
    temple_of_horse_2_shrine_eastern_desc_short
    temple_of_horse_2_shrine_parthia
    temple_of_horse_2_shrine_parthia_desc
    temple_of_horse_2_shrine_parthia_desc_short
    temple_of_horse_2_shrine_egyptian_desc
    temple_of_horse_2_shrine_egyptian_desc_short
    temple_of_horse_2_shrine_greek_desc
    temple_of_horse_2_shrine_greek_desc_short
    temple_of_horse_2_shrine_roman_desc
    temple_of_horse_2_shrine_roman_desc_short
    temple_of_horse_2_temple
    temple_of_horse_2_temple_desc
    temple_of_horse_2_temple_desc_short
    temple_of_horse_2_temple_barbarian
    temple_of_horse_2_temple_barbarian_desc
    temple_of_horse_2_temple_barbarian_desc_short
    temple_of_horse_2_temple_carthaginian_desc
    temple_of_horse_2_temple_carthaginian_desc_short
    temple_of_horse_2_temple_eastern_desc
    temple_of_horse_2_temple_eastern_desc_short
    temple_of_horse_2_temple_parthia
    temple_of_horse_2_temple_parthia_desc
    temple_of_horse_2_temple_parthia_desc_short
    temple_of_horse_2_temple_egyptian_desc
    temple_of_horse_2_temple_egyptian_desc_short
    temple_of_horse_2_temple_greek_desc
    temple_of_horse_2_temple_greek_desc_short
    temple_of_horse_2_temple_roman_desc
    temple_of_horse_2_temple_roman_desc_short
    temple_of_horse_2_large_temple
    temple_of_horse_2_large_temple_desc
    temple_of_horse_2_large_temple_desc_short
    temple_of_horse_2_large_temple_barbarian
    temple_of_horse_2_large_temple_barbarian_desc
    temple_of_horse_2_large_temple_barbarian_desc_short
    temple_of_horse_2_large_temple_carthaginian_desc
    temple_of_horse_2_large_temple_carthaginian_desc_short
    temple_of_horse_2_large_temple_eastern_desc
    temple_of_horse_2_large_temple_eastern_desc_short
    temple_of_horse_2_large_temple_parthia
    temple_of_horse_2_large_temple_parthia_desc
    temple_of_horse_2_large_temple_parthia_desc_short
    temple_of_horse_2_large_temple_egyptian_desc
    temple_of_horse_2_large_temple_egyptian_desc_short
    temple_of_horse_2_large_temple_greek_desc
    temple_of_horse_2_large_temple_greek_desc_short
    temple_of_horse_2_large_temple_roman_desc
    temple_of_horse_2_large_temple_roman_desc_short
    temple_of_horse_2_awesome_temple
    temple_of_horse_2_awesome_temple_desc
    temple_of_horse_2_awesome_temple_desc_short
    temple_of_horse_2_awesome_temple_barbarian
    temple_of_horse_2_awesome_temple_barbarian_desc
    temple_of_horse_2_awesome_temple_barbarian_desc_short
    temple_of_horse_2_awesome_temple_carthaginian_desc
    temple_of_horse_2_awesome_temple_carthaginian_desc_short
    temple_of_horse_2_awesome_temple_eastern_desc
    temple_of_horse_2_awesome_temple_eastern_desc_short
    temple_of_horse_2_awesome_temple_parthia
    temple_of_horse_2_awesome_temple_parthia_desc
    temple_of_horse_2_awesome_temple_parthia_desc_short
    temple_of_horse_2_awesome_temple_egyptian_desc
    temple_of_horse_2_awesome_temple_egyptian_desc_short
    temple_of_horse_2_awesome_temple_greek_desc
    temple_of_horse_2_awesome_temple_greek_desc_short
    temple_of_horse_2_awesome_temple_roman_desc
    temple_of_horse_2_awesome_temple_roman_desc_short
    temple_of_horse_2_pantheon
    temple_of_horse_2_pantheon_desc
    temple_of_horse_2_pantheon_desc_short
    temple_of_horse_2_pantheon_barbarian
    temple_of_horse_2_pantheon_barbarian_desc
    temple_of_horse_2_pantheon_barbarian_desc_short
    temple_of_horse_2_pantheon_carthaginian_desc
    temple_of_horse_2_pantheon_carthaginian_desc_short
    temple_of_horse_2_pantheon_eastern_desc
    temple_of_horse_2_pantheon_eastern_desc_short
    temple_of_horse_2_pantheon_parthia
    temple_of_horse_2_pantheon_parthia_desc
    temple_of_horse_2_pantheon_parthia_desc_short
    temple_of_horse_2_pantheon_egyptian_desc
    temple_of_horse_2_pantheon_egyptian_desc_short
    temple_of_horse_2_pantheon_greek_desc
    temple_of_horse_2_pantheon_greek_desc_short
    temple_of_horse_2_pantheon_roman_desc
    temple_of_horse_2_pantheon_roman_desc_short
    (original EDB enum) :
    Spoiler Alert, click show to read: 
    Code:
    temple_of_horse_2_shrine
    temple_of_horse_2_shrine_desc
    temple_of_horse_2_shrine_desc_short
    temple_of_horse_2_shrine_barbarian
    temple_of_horse_2_shrine_barbarian_desc
    temple_of_horse_2_shrine_barbarian_desc_short
    temple_of_horse_2_shrine_carthaginian_desc
    temple_of_horse_2_shrine_carthaginian_desc_short
    temple_of_horse_2_shrine_eastern_desc
    temple_of_horse_2_shrine_eastern_desc_short
    temple_of_horse_2_shrine_parthia_desc
    temple_of_horse_2_shrine_parthia_desc_short
    temple_of_horse_2_shrine_egyptian_desc
    temple_of_horse_2_shrine_egyptian_desc_short
    temple_of_horse_2_shrine_greek_desc
    temple_of_horse_2_shrine_greek_desc_short
    temple_of_horse_2_shrine_roman_desc
    temple_of_horse_2_shrine_roman_desc_short
    temple_of_horse_2_temple
    temple_of_horse_2_temple_desc
    temple_of_horse_2_temple_desc_short
    temple_of_horse_2_temple_barbarian
    temple_of_horse_2_temple_barbarian_desc
    temple_of_horse_2_temple_barbarian_desc_short
    temple_of_horse_2_temple_carthaginian_desc
    temple_of_horse_2_temple_carthaginian_desc_short
    temple_of_horse_2_temple_eastern_desc
    temple_of_horse_2_temple_eastern_desc_short
    temple_of_horse_2_temple_parthia_desc
    temple_of_horse_2_temple_parthia_desc_short
    temple_of_horse_2_temple_egyptian_desc
    temple_of_horse_2_temple_egyptian_desc_short
    temple_of_horse_2_temple_greek_desc
    temple_of_horse_2_temple_greek_desc_short
    temple_of_horse_2_temple_roman_desc
    temple_of_horse_2_temple_roman_desc_short
    temple_of_horse_2_large_temple
    temple_of_horse_2_large_temple_desc
    temple_of_horse_2_large_temple_desc_short
    temple_of_horse_2_large_temple_barbarian
    temple_of_horse_2_large_temple_barbarian_desc
    temple_of_horse_2_large_temple_barbarian_desc_short
    temple_of_horse_2_large_temple_carthaginian_desc
    temple_of_horse_2_large_temple_carthaginian_desc_short
    temple_of_horse_2_large_temple_eastern_desc
    temple_of_horse_2_large_temple_eastern_desc_short
    temple_of_horse_2_large_temple_parthia_desc
    temple_of_horse_2_large_temple_parthia_desc_short
    temple_of_horse_2_large_temple_egyptian_desc
    temple_of_horse_2_large_temple_egyptian_desc_short
    temple_of_horse_2_large_temple_greek_desc
    temple_of_horse_2_large_temple_greek_desc_short
    temple_of_horse_2_large_temple_roman_desc
    temple_of_horse_2_large_temple_roman_desc_short



    In the export_buildings:
    Code:
    ¬--------------
    
    {temple_of_horse_2_shrine}	Temple of Horse 2 Shrine
    
    {temple_of_horse_2_shrine_desc}	[#PLACEHOLDER DEFAULT Base description for 
    
    building and effects#]
    
    {temple_of_horse_2_shrine_desc_short}	[#Short Description PLACEHOLDER 
    
    DEFAULT text#]
    
    {temple_of_horse_2_shrine_barbarian}	Shrine to Kolaksay
    
    {temple_of_horse_2_shrine_barbarian_desc}
    This Shrine is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky.\n\nReligion also makes a people feel happy and content to know that the Gods are honoured. \n\nThe Shrine can be improved as the settlement grows in size and importance.
    
    {temple_of_horse_2_shrine_barbarian_desc_short}
    This Shrine is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. 
    
    {temple_of_horse_2_shrine_carthage_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_carthage_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_eastern_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_eastern_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_parthia}	Shrine to Kolaksay
    
    {temple_of_horse_2_shrine_parthia_desc}
    This Shrine is dedicated to Kolaksay, the demi-god and supreme horse-lord of the steppes. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky. A sacred fire is kept burning at all times within the shrine.\n\nReligion also makes a people feel happy and content to know that the Gods are honoured. \n\nThe Shrine can be improved as the settlement grows in size and importance.
    
    {temple_of_horse_2_shrine_parthia_desc_short}
    This Shrine is dedicated to Kolaksay, the demi-god and supreme horse-lord of the steppes. A sacred fire is kept burning at all times within the shrine.
    
    {temple_of_horse_2_shrine_egyptian_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_egyptian_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_greek_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_greek_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_roman_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_roman_desc_short}
    WARNING! This text should never appear on screen!
    
    
    ¬--------------
    
    {temple_of_horse_2_temple}	Temple of Horse 2 Temple
    
    {temple_of_horse_2_temple_desc}	[#PLACEHOLDER DEFAULT Base description for 
    
    building and effects#]
    
    {temple_of_horse_2_temple_desc_short}	[#Short Description PLACEHOLDER 
    
    DEFAULT text#]
    
    {temple_of_horse_2_temple_barbarian}	Sacred Grove of Kolaksay
    
    {temple_of_horse_2_temple_barbarian_desc}
    This Sacred Grove is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky.\n\nReligion also makes a people feel happy and content to know that the Gods are properly honoured. \n\nThe Sacred Grove can be improved as the settlement grows in size and importance.
    
    {temple_of_horse_2_temple_barbarian_desc_short}
    This Sacred Grove is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. 
    
    {temple_of_horse_2_temple_carthage_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_carthage_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_eastern_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_eastern_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_parthia}	Temple of Kolaksay
    
    {temple_of_horse_2_temple_parthia_desc}
    This Temple is dedicated to Kolaksay, the demi-god and supreme horse-lord of the steppes. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky. A sacred fire is kept burning at all times within the temple.\n\nReligion also makes a people feel happy and content to know that the Gods are properly honoured. \n\nThe Temple can be improved as the settlement grows in size and importance.
    
    {temple_of_horse_2_temple_parthia_desc_short}
    This Temple is dedicated to Kolaksay, the demi-god and supreme horse-lord of the steppes.
    
    {temple_of_horse_2_temple_egyptian_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_egyptian_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_greek_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_greek_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_roman_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_roman_desc_short}
    WARNING! This text should never appear on screen!
    
    
    ¬--------------
    
    {temple_of_horse_2_large_temple}	Temple of Horse 2 Large Temple
    
    {temple_of_horse_2_large_temple_desc}	[#PLACEHOLDER DEFAULT Base 
    
    description for building and effects#]
    
    {temple_of_horse_2_large_temple_desc_short}	[#Short Description 
    
    PLACEHOLDER DEFAULT text#]
    
    {temple_of_horse_2_large_temple_barbarian}	Sacred Circle of Kolaksay
    
    {temple_of_horse_2_large_temple_barbarian_desc}
    This Sacred Circle is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky.\n\nReligion also makes a people feel happy and content to know that the Gods are lavishly honoured. 
    
    {temple_of_horse_2_large_temple_barbarian_desc_short}
    This Sacred Circle is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. 
    
    {temple_of_horse_2_large_temple_carthage_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_carthage_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_eastern_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_eastern_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_parthia}	Large Temple of Kolaksay
    
    {temple_of_horse_2_large_temple_parthia_desc}
    This Large Temple is dedicated to Kolaksay, the demi-god and supreme horse-lord of the steppes. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky. A sacred fire is kept burning at all times within the temple.\n\nReligion also makes a people feel happy and content to know that the Gods are lavishly honoured. \n\nThe Large Temple can be improved as the settlement grows in size and importance.
    
    {temple_of_horse_2_large_temple_parthia_desc_short}
    This Large Temple is dedicated to Kolaksay, the demi-god and supreme horse-lord of the steppes.
    
    {temple_of_horse_2_large_temple_egyptian_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_egyptian_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_greek_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_greek_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_roman_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_roman_desc_short}
    WARNING! This text should never appear on screen!
    
    ¬--------------
    
    {temple_of_horse_2_awesome_temple}	Temple of Horse 2 Awesome Temple
    
    {temple_of_horse_2_awesome_temple_desc}	[#PLACEHOLDER DEFAULT Base 
    
    description for building and effects#]
    
    {temple_of_horse_2_awesome_temple_desc_short}	[#Short Description 
    
    PLACEHOLDER DEFAULT text#]
    
    {temple_of_horse_2_awesome_temple_barbarian_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_barbarian_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_carthage_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_carthage_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_eastern_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_eastern_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_parthia}	Awesome Temple of Kolaksay
    
    {temple_of_horse_2_awesome_temple_parthia_desc}
    This Awesome Temple is dedicated to Kolaksay, the demi-god and supreme horse-lord of the steppes. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky. A sacred fire is kept burning at all times within the temple. \n\nReligion also makes a people feel happy and content to know that God is honoured in such a grand fashion.\n\n The Awesome Temple can be improved as the settlement grows in size and importance.
    
    {temple_of_horse_2_awesome_temple_parthia_desc_short}
    This Large Temple is dedicated to Kolaksay, the demi-god and supreme 
    
    horse-lord of the steppes.
    
    {temple_of_horse_2_awesome_temple_egyptian_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_egyptian_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_greek_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_greek_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_roman_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_awesome_temple_roman_desc_short}
    WARNING! This text should never appear on screen!
    
    ¬--------------
    
    {temple_of_horse_2_pantheon}	Temple of Horse 2 Pantheon
    
    {temple_of_horse_2_pantheon_desc}	[#PLACEHOLDER DEFAULT Base 
    
    description for building and effects#]
    
    {temple_of_one_god_pantheon_desc_short}	[#Short Description PLACEHOLDER 
    
    DEFAULT text#]
    
    {temple_of_horse_2_pantheon_barbarian_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_barbarian_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_carthage_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_carthage_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_eastern_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_eastern_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_parthia}	Temple Complex of Kolaksay
    
    {temple_of_horse_2_pantheon_parthia_desc}
    This Temple Complex is dedicated to Kolaksay, the demi-god and supreme horse-lord of the steppes. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky. A sacred fire is kept burning at all times within the temple.\n\nReligion also makes a people feel happy and content to know that the Gods are honoured in such a magnificent fashion.
    
    {temple_of_horse_2_pantheon_parthia_desc_short}
    This Temple Complex is dedicated to Kolaksay, the demi-god and supreme horse-lord of the steppes.
    
    {temple_of_horse_2_pantheon_egyptian_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_egyptian_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_greek_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_greek_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_roman_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_pantheon_roman_desc_short}
    WARNING! This text should never appear on screen!
    (original export_buildings) :
    Spoiler Alert, click show to read: 
    Code:
    ¬--------------
    
    {temple_of_horse_2_shrine}	Temple of Horse 2 Shrine
    
    {temple_of_horse_2_shrine_desc}	[#PLACEHOLDER DEFAULT Base description for 
    
    building and effects#]
    
    {temple_of_horse_2_shrine_desc_short}	[#Short Description PLACEHOLDER 
    
    DEFAULT text#]
    
    {temple_of_horse_2_shrine_barbarian}	Shrine to Kolaksay
    
    {temple_of_horse_2_shrine_barbarian_desc}
    This Shrine is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky.\n\nReligion also makes a people feel happy and content to know that the Gods are honoured. \n\nThe Shrine can be improved as the settlement grows in size and importance.
    
    {temple_of_horse_2_shrine_barbarian_desc_short}
    This Shrine is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. 
    
    {temple_of_horse_2_shrine_carthage_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_carthage_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_eastern_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_eastern_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_parthia_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_parthia_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_egyptian_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_egyptian_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_greek_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_greek_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_roman_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_shrine_roman_desc_short}
    WARNING! This text should never appear on screen!
    
    
    ¬--------------
    
    {temple_of_horse_2_temple}	Temple of Horse 2 Temple
    
    {temple_of_horse_2_temple_desc}	[#PLACEHOLDER DEFAULT Base description for 
    
    building and effects#]
    
    {temple_of_horse_2_temple_desc_short}	[#Short Description PLACEHOLDER 
    
    DEFAULT text#]
    
    {temple_of_horse_2_temple_barbarian}	Sacred Grove of Kolaksay
    
    {temple_of_horse_2_temple_barbarian_desc}
    This Sacred Grove is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky.\n\nReligion also makes a people feel happy and content to know that the Gods are properly honoured. \n\nThe Sacred Grove can be improved as the settlement grows in size and importance.
    
    {temple_of_horse_2_temple_barbarian_desc_short}
    This Sacred Grove is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. 
    
    {temple_of_horse_2_temple_carthage_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_carthage_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_eastern_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_eastern_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_parthia_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_parthia_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_egyptian_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_egyptian_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_greek_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_greek_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_roman_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_temple_roman_desc_short}
    WARNING! This text should never appear on screen!
    
    
    ¬--------------
    
    {temple_of_horse_2_large_temple}	Temple of Horse 2 Large Temple
    
    {temple_of_horse_2_large_temple_desc}	[#PLACEHOLDER DEFAULT Base 
    
    description for building and effects#]
    
    {temple_of_horse_2_large_temple_desc_short}	[#Short Description 
    
    PLACEHOLDER DEFAULT text#]
    
    {temple_of_horse_2_large_temple_barbarian}	Sacred Circle of Kolaksay
    
    {temple_of_horse_2_large_temple_barbarian_desc}
    This Sacred Circle is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. He also seized the three golden treasures of a plough, a bowl and poleaxe from the sky.\n\nReligion also makes a people feel happy and content to know that the Gods are lavishly honoured. 
    
    {temple_of_horse_2_large_temple_barbarian_desc_short}
    This Sacred Circle is dedicated to Kolaksay, the demi-god and hero who founded the Scythian nation. 
    
    {temple_of_horse_2_large_temple_carthage_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_carthage_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_eastern_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_eastern_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_parthia_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_parthia_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_egyptian_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_egyptian_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_greek_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_greek_desc_short}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_roman_desc}
    WARNING! This text should never appear on screen!
    
    {temple_of_horse_2_large_temple_roman_desc_short}
    WARNING! This text should never appear on screen!




    That's all I changed, I think.... when I try to enter RTW, it gets a CTD. What did I do wrong?
    WARNING! This baseline signature should never appear on screen!

  2. #2

    Default Re: Adding new temple

    Well, in Export_Buildings you want to add text to the "temple_of_horse_2_shrine_eastern" part, not create a new section named after parthia. Export_Buildings assigns all of it descriptions by culture, not individual faction (just how the CA made the game).

    In Export_Descr_Enums you should not have to add anything with parthia's name in it. Just add these:

    temple_of_horse_2_awesome_temple
    temple_of_horse_2_awesome_temple_desc
    temple_of_horse_2_awesome_temple_desc_short
    temple_of_horse_2_pantheon
    temple_of_horse_2_pantheon_desc
    temple_of_horse_2_pantheon_desc_short

    Also in the Awesome and Pantheion levels you created, Scythia is in the ownership line. If you are playing regular RTW than Scythia only has three tiers of development, and so could not build this high up. So take them out and leave only Parthia for ownership there.
    There are never enough hours in the days of a Queen, and her nights have too many...

    ATW Version 2.5 is now out!

  3. #3
    Anything that isn't 'member' Member Squid's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    596

    Default Re: Adding new temple

    The above is incorrect, you can it by faction, because if you look through the vanilla EB file you'll see plenty of references to parthia.

    -Trait/Ancillary/Building Editor

    "Two things are infinite: the universe and human stupidity;
    and I'm not sure about the universe." -----Albert Einstein

  4. #4

    Default Re: Adding new temple

    Hmm, you are right. Parthia and Carthage both have faction-specific buildings. I never noticed that before. Maybe they did those first, and then realized it was quicker to do the descriptions by culture rather than by individual faction?
    There are never enough hours in the days of a Queen, and her nights have too many...

    ATW Version 2.5 is now out!

  5. #5

    Default Re: Adding new temple

    The factional part is used to give faction-specific variations in certain buildings, it's a useful capability. As for the error: the code seems ok to me, have you added the proper UI cards yet?

    Norman Invasion - The fate of England lies in your hands...

    Viking Invasion II - Unite Britain in the best TW campaign ever!

    Gods and Fighting Men: Total War - Enter the Mists of Myth in Ancient Ireland

  6. #6
    Deranged rock ape Member Quirinus's Avatar
    Join Date
    Sep 2006
    Location
    Malaysia
    Posts
    982

    Default Re: Adding new temple

    Ah, that must be the problem. How do I add UI cards? Is there anything else I need to do to add new buildings?
    WARNING! This baseline signature should never appear on screen!

  7. #7

    Default Re: Adding new temple

    Still, it ought to work even without the new pictures. It will just display the default roman barrack if new images are not provided.
    There are never enough hours in the days of a Queen, and her nights have too many...

    ATW Version 2.5 is now out!

  8. #8

    Default Re: Adding new temple

    Sometimes, when map.rwm is regenerated and UI cards are missing, it CTDs.

    Norman Invasion - The fate of England lies in your hands...

    Viking Invasion II - Unite Britain in the best TW campaign ever!

    Gods and Fighting Men: Total War - Enter the Mists of Myth in Ancient Ireland

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Single Sign On provided by vBSSO