How do you add different ships to the game?

For example, I copied a ships entity, changed the file name to something else, then edited the stats of that ship, now how do I add it to a build list? I tried adding it to the game earlier but the game just crashed on startup, can someone show me step by step please?  #:(

3,078 views 2 replies
Reply #1 Top

Ok, say you have a ship entity called frigate_pirateseige.entity

and you want to add it to the tech open the playertech.entity

capitalShipInfo
        Page:0
            count 5
            entityDefName "CAPITALSHIP_TECHBATTLESHIP"
            entityDefName "CAPITALSHIP_TECHCARRIER"
            entityDefName "CAPITALSHIP_TECHCOLONY"
            entityDefName "CAPITALSHIP_TECHSUPPORT"
            entityDefName "CAPITALSHIP_TECHSIEGE"
    frigateInfo
        Page:0
            count 6
            entityDefName "FrigateTechScout"
            entityDefName "FrigateTechLight"
            entityDefName "FrigateTechLongRange"
            entityDefName "FrigateTechSiege"
            entityDefName "FrigateTechAntiFighter"
            entityDefName "FrigateTechColony"

(add it here following the template above)

        Page:1
            count 4
            entityDefName "FrigateTechCarrier"
            entityDefName "FrigateTechUtility1"
            entityDefName "FrigateTechUtility0"
            entityDefName "FrigateTechHeavy"

Reply #2 Top

Thank you!, I didn't think it was that easy. :blush: