Shop  •   Avatar  •   FAQ  •   Search  •   Memberlist  •   Usergroups  •   Profile  •   Log in to check private messages  •   Log in  •  Register 

Modding Years
Post new topic   Reply to topic     Forum Index -> Customization & Modding Goto page 1, 2  Next
View previous topic :: View next topic  
Author Message
Captain Teague
Rigger
Posts: 1185



12207 Gold -

PostPosted: Sat Sep 29, 2018 3:49 pm    Post subject: Modding Years Reply with quote

I know literally nothing about modding this game, so I figured I would ask. Is there a way to mod the starting era? Not their difficulties, per se, but what year is displayed at any given time in the game. For example, if I wanted "1680" to become "1725" would that be possible?
_________________
The Code is the Law.
Back to top
View user's profile Send private message
Pirate
Helmsman
Posts: 5589



109759 Gold -

PostPosted: Sat Sep 29, 2018 9:23 pm    Post subject: Reply with quote

Hello Captain! It’s the idiot speaking. In order to do that you would probably need to unpack the games fpk packs and find the text.ini. Open that sucker with a sharp knife, oops I mean with notepad then take a stroll all the way down to the bottom and find (ERAS). There you will saw all de different eras and they start date. Change the value of 1680 to 1725 should do it and if you want you can redo the text ore leave tit alone. Example the 1680 error is Pirates Sunset . You can change 1680 into 1725 and call it Barnaids gone topless or whatever ye had in mind. Need any help let me know.
Back to top
View user's profile Send private message
fleetp
Boatswain
Posts: 3711



35986 Gold -

PostPosted: Sat Sep 29, 2018 10:16 pm    Post subject: Reply with quote

The text.ini file is in the pak1fpk file
Here it is, in case you don't want to mess with unpacking it.
Make the changes, then put the modified file in the 'custom' folder.


Code:
; INI file for Pirates! Text System.
; Each group is a KEY to be used in strings for variable replacement.
; Each group must have a Type. The Type can be one of: __NUM, __STR,
; __INITIAL, __VAR, __GEN, __PER, __MALE, __FEMALE, __NEUTER, __MP,
; __FP, __NP, __SING, __PLUR.
;
; The __NUM type is used for numeric values. It will have 2 permutations:
; 1 and any other number.
;
; The __STR type should only be used for debugging purposes as translators
; have no way of knowing the value that will be substituted. It will have
; only 1 permutation (the variable, as is).
;
; The __CHAR type is similar to the __STR type but it is a single
; character. It will only have 1 permutation (the character, as is).
;
; The __VAR type is a lookup value. There must be at least one Value for
; these types. There will be 1 permutation for each listed Value. These
; types can also be linked so that multiple __VAR types will generate
; permutations to together. Links should be used whenever two __VAR types
; have the same number of values and will always be used with each other.
;
; The __GEN type is a string containing gender and plurality information.
; The string to be parsed must contain an FTextGenVarData object which
; contains the string, gender, and plurality, as the replacement value.
; These types will have 6 permutations (masculine, feminine, and neuter,
; both singular and plural).
;
; The __PER type is a subclass of the __GEN type used for a person's name.
; The string to be parsed must contain an FTextGenVarData object which
; contains the string and gender, as the replacement value. These types
; will have 2 permutations (masculine and feminine, both singular).
;
; The __MALE type is a subclass of the __GEN type. It is used for strings
; that will always be masculine singular. The string to be parsed must contain
; an FTextGenVarData object which contains the string, gender, and plurality,
; as the replacement value. There will only be 1 perumtation for this type.
;
; The __FEMALE type is a subclass of the __GEN type. It is used for strings
; that will always be feminine singular. The string to be parsed must contain
; an FTextGenVarData object which contains the string, gender, and plurality,
; as the replacement value. There will only be 1 perumtation for this type.
;
; The __NEUTER type is a subclass of the __GEN type. It is used for strings
; that will always be neuter singular. The string to be parsed must contain
; an FTextGenVarData object which contains the string, gender, and plurality,
; as the replacement value. There will only be 1 perumtation for this type.
;
; The __MP type is a subclass of the __GEN type. It is used for strings
; that will always be masculine plural. The string to be parsed must contain
; an FTextGenVarData object which contains the string, gender, and plurality,
; as the replacement value. There will only be 1 perumtation for this type.
;
; The __FP type is a subclass of the __GEN type. It is used for strings
; that will always be feminine plural. The string to be parsed must contain
; an FTextGenVarData object which contains the string, gender, and plurality,
; as the replacement value. There will only be 1 perumtation for this type.
;
; The __NP type is a subclass of the __GEN type. It is used for strings
; that will always be neuter plural. The string to be parsed must contain
; an FTextGenVarData object which contains the string, gender, and plurality,
; as the replacement value. There will only be 1 perumtation for this type.
;
; The __SING type is a subclass of the __GEN type. It is used for strings
; that will always be singular, but may be masculine, feminine, or neuter.
; The string to be parsed must contain an FTextGenVarData object which contains
; the string and gender as the replacement value. There will be 3 permutations
; for this type (masculine, feminine, and neuter).
;
; The __PLUR type is a subclass of the __GEN type. It is used for strings
; that will always be plural, but may be masculine, feminine, or neuter.
; The string to be parsed must contain an FTextGenVarData object which contains
; the string and gender as the replacement value. There will be 3 permutations
; for this type (masculine, feminine, and neuter).
;

[NUM]
Type = __NUM

[CHAR]
Type = __CHAR

[PCNAME]
Type = __MALE

[CITYNAME]
Type = __PER

[CITYTYPE]
Type = __VAR
Value = Capital
Value = Port
Value = Town
Value = Colony
Value = Trading Post
Value = Stronghold
Value = Village
Value = Outpost
Value = Haven
Value = Village
Value = Mission
Value = Settlement

[LOCTYPE]
Type = __VAR
Value = City
Value = Colony
Value = Town
Value = Trading Post
Value = Haven
Value = Village
Value = Mission
Value = Settlement

[SHIPNAME]
Type = __PER

[NATIONALITY]
Type = __VAR
Value = Spanish
Value = English
Value = French
Value = Dutch
Value = Pirate
Value = Indian
Value = Jesuit
Value = Settlement

[ANATIONALITY]
Type = __VAR
Value = a Spanish
Value = an English
Value = a French
Value = a Dutch
Value = a Pirate
Value = an Indian
Value = a Jesuit
Value = a Settlement

[NATION]
Type = __VAR
Value = Spain
Value = England
Value = France
Value = Holland
Value = Pirate

[RANK]
Type = __VAR
Value = Mr.
Value = Mr.
Value = Captain
Value = Major
Value = Colonel
Value = Admiral
Value = Baron
Value = Count
Value = Marquis
Value = Duke

[RANKBONUS]
Type = __VAR
Value = nada
Value = nada
Value = As a result, crew recruiting will be easier
Value = Henceforth, ship repairs will be cheaper
Value = As a result, merchants will trade more goods
Value = Henceforth, ship upgrades will be cheaper
Value = As a result, crew recruiting will be much easier
Value = Henceforth, ship repairs will be done at cost
Value = As a result, merchants will trade many more goods
Value = Henceforth, ship upgrades will be done at cost

[DIRECTION]
Type = __VAR
Value = North
Value = NorthEast
Value = East
Value = SouthEast
Value = South
Value = SouthWest
Value = West
Value = NorthWest

[ITEM]
Type = __VAR
Value = Gold
Value = Food
Value = Luxuries
Value = Goods
Value = Spice
Value = Sugar
Value = Cannon

[SHIPTYPE]
Type = __VAR
Value = War Canoe
Value = Sloop
Value = Brigantine
Value = Coastal Barque
Value = Fluyt
Value = Merchantman
Value = Frigate
Value = Fast Galleon
Value = Trade Galleon
Value = Pinnace
Value = Sloop of War
Value = Brig
Value = Barque
Value = Large Fluyt
Value = Large Merchantman
Value = Large Frigate
Value = War Galleon
Value = Royal Galleon
Value = Mail Runner
Value = Royal Sloop
Value = Brig of War
Value = Ocean Barque
Value = West Indiaman
Value = East Indiaman
Value = Ship of the Line
Value = Flag Galleon
Value = Treasure Galleon

[ORDINAL]
Type = __VAR
Value = 10th
Value = 1st
Value = 2nd
Value = 3rd
Value = 4th
Value = 5th
Value = 6th
Value = 7th
Value = 8th
Value = 9th
Value = 10th
Value = 11th

[UPGRADE]
Type = __VAR
Link = UPGRADED
Value = Copper plating
Value = Cotton Sails
Value = Triple Hammocks
Value = Iron Scantlings
Value = Chain Shot
Value = Grape Shot
Value = Fine-grain powder
Value = Bronze Cannon

[UPGRADED]
Type = __VAR
Link = UPGRADE
Value = turn more quickly
Value = sail faster
Value = carry more crew
Value = resist damage
Value = damage enemy sails
Value = damage enemy crew
Value = fire farther
Value = fire more accurately

[SPEC]
Type = __VAR
Link = SPECED
Value = Carpenter
Value = Sailmaker
Value = Cooper
Value = Gunner
Value = Surgeon
Value = Navigator
Value = Quartermaster
Value = Cook

[SPECED]
Type = __VAR
Link = SPEC
Value = make hull repairs at sea
Value = make sail repairs at sea
Value = preserve food in sturdy barrels
Value = train gunners in rapid firing
Value = heal wounded crewmen
Value = increase our fleet's speed
Value = enforce discipline at sea
Value = prepare tasty meals at sea

[TOP10]
Type = __MALE

[NPCNAME]
Type = __MALE

[NPCADJECTIVE]
Type = __VAR
Value = libertine
Value = embezzler
Value = spy
Value = blackmailer
Value = traitor

[EVILNAME]
Type = __MALE

[FAMTEXT]
Type = __MALE

[PROP1]
Type = __VAR
Link = PROP2
Link = PROP3
Link = APROP1
Link = APROP2
Link = RAREPROP1
Link = RAREPROP2
Value = Set of Balanced Swords
Value = One-shot Pistol
Value = Leather Vest
Value = Fencing Shirt (puffy)
Value = Quality Spyglass
Value = Dutch Rutter
Value = Weather Glass
Value = 3-stringed Fiddle
Value = False Mustache
Value = Medicinal Herbs
Value = Shrunken Head
Value = Golden Cross
Value = Ruby Ring
Value = Calfskin Boots
Value = French Chapeau
Value = Lockpicking Kit
Value = Signaling Mirror

[APROP1]
Type = __VAR
Link = PROP1
Link = PROP2
Link = PROP3
Link = APROP2
Link = RAREPROP1
Link = RAREPROP2
Value = a Set of Balanced Swords
Value = a One-shot Pistol
Value = a Leather Vest
Value = a Fencing Shirt (puffy)
Value = a Quality Spyglass
Value = a Dutch Rutter
Value = a Weather Glass
Value = a 3-stringed Fiddle
Value = a False Mustache
Value = Medicinal Herbs
Value = a Shrunken Head
Value = a Golden Cross
Value = a Ruby Ring
Value = Calfskin Boots
Value = a French Chapeau
Value = a Lockpicking Kit
Value = a Signaling Mirror

[RAREPROP1]
Type = __VAR
Link = PROP1
Link = PROP2
Link = PROP3
Link = APROP1
Link = APROP2
Link = RAREPROP2
Value = these rare Balanced Swords
Value = this rare One-shot Pistol
Value = this rare Leather Vest
Value = this rare Fencing Shirt (puffy)
Value = this rare Quality Spyglass
Value = this rare Dutch Rutter
Value = this rare Weather Glass
Value = this rare 3-stringed Fiddle
Value = this rare False Mustache
Value = these rare Medicinal Herbs
Value = this rare Shrunken Head
Value = this rare Golden Cross
Value = this rare Ruby Ring
Value = these rare Calfskin Boots
Value = this rare French Chapeau
Value = this rare Lockpicking Kit
Value = this rare Signaling Mirror

[PROP2]
Type = __VAR
Link = PROP1
Link = PROP3
Link = APROP1
Link = APROP2
Link = RAREPROP1
Link = RAREPROP2
Value = Set of Perfectly Balanced Swords
Value = Brace of Pistols
Value = Metal Cuiraiss
Value = Silk Fencing Shirt
Value = Fine Telescope
Value = Spanish Rutter
Value = Precision Barometer
Value = Concertina
Value = Theatrical Disguise
Value = Incan Mystic Salve
Value = Carved Shaman Stick
Value = Sacred Relic
Value = Diamond Necklace
Value = Dancing Slippers
Value = Ostrich Feather Hat
Value = Skeleton Key
Value = Signal Flare

[APROP2]
Type = __VAR
Link = PROP1
Link = PROP2
Link = PROP3
Link = APROP1
Link = RAREPROP1
Link = RAREPROP2
Value = a Set of Perfectly Balanced Swords
Value = a Brace of Pistols
Value = a Metal Cuiraiss
Value = a Silk Fencing Shirt
Value = a Fine Telescope
Value = a Spanish Rutter
Value = a Precision Barometer
Value = a Concertina
Value = a Theatrical Disguise
Value = Incan Mystic Salve
Value = a Carved Shaman Stick
Value = a Sacred Relic
Value = a Diamond Necklace
Value = Dancing Slippers
Value = an Ostrich Feather Hat
Value = a Skeleton Key
Value = a Signal Flare

[RAREPROP2]
Type = __VAR
Link = PROP1
Link = PROP2
Link = PROP3
Link = APROP1
Link = APROP2
Link = RAREPROP1
Value = these rare Perfectly Balanced Swords
Value = this rare Brace of Pistols
Value = this rare Metal Cuiraiss
Value = this rare Silk Fencing Shirt
Value = this rare Fine Telescope
Value = this rare Spanish Rutter
Value = this rare Precision Barometer
Value = this rare Concertina
Value = this rare Theatrical Disguise
Value = this rare Incan Mystic Salve
Value = this rare Carved Shaman Stick
Value = this rare Sacred Relic
Value = this rare Diamond Necklace
Value = these rare Dancing Slippers
Value = this rare Ostrich Feather Hat
Value = this rare Skeleton Key
Value = this rare Signal Flare

[PROP3]
Type = __VAR
Link = PROP1
Link = PROP2
Link = APROP1
Link = APROP2
Link = RAREPROP1
Link = RAREPROP2
Value = these master-crafted weapons attack with lightning speed
Value = this new-fangled weapon is useful during close combat
Value = this rugged garment provides some protection during sword fighting
Value = this loose-fitting shirt allows you quicker dueling moves
Value = this fine instrument improves visibility on the high seas
Value = this reveals the location of many hidden settlements
Value = this instrument aids sailing near storms and hurricanes
Value = this instrument improves crew morale on long voyages
Value = this will help you to trade with merchants in enemy cities
Value = this will help to prolong your life
Value = this will impress the native indian leaders
Value = this will improve relations with the Jesuit missionaries
Value = this will help win the heart of the governor's daughter
Value = these will improve your dancing skills
Value = this will help guarantee an invitation to the ball
Value = this will help you escape from captivity
Value = this will signal passing ships

[BEAUTY]
Type = __VAR
Value = rather plain
Value = attractive
Value = beautiful

[QUAYLE]
Type = __VAR
Value = Pickpocket
Value = Pauper
Value = Clerk
Value = Fisherman
Value = Mortician
Value = Bartender
Value = Constable
Value = Butler
Value = Farmer
Value = Parson
Value = Merchant
Value = Innkeeper
Value = Shipwright
Value = Fencing Master
Value = Magistrate
Value = Surgeon
Value = Mayor
Value = Bishop
Value = Governor

[DIFFICULTY]
Type = __VAR
Link = ADIFFICULTY
Link = SHARE
Value = Apprentice
Value = Journeyman
Value = Adventurer
Value = Rogue
Value = Swashbuckler

[ADIFFICULTY]
Type = __VAR
Link = DIFFICULTY
Link = SHARE
Value = an Apprentice
Value = a Journeyman
Value = an Adventurer
Value = a Rogue
Value = a Swashbuckler

[SHARE]
Type = __VAR
Link = DIFFICULTY
Link = ADIFFICULTY
Value = 5
Value = 10
Value = 20
Value = 30
Value = 50

[MONTH]
Type = __VAR
Value = January
Value = February
Value = March
Value = April
Value = May
Value = June
Value = July
Value = August
Value = September
Value = October
Value = November
Value = December

[HAPPY]
Type = __VAR
Value = MUTINOUS
Value = UNHAPPY
Value = CONTENT
Value = HAPPY
Value = VERY HAPPY

[DUELINGSKILL]
Type = __VAR
Value = IDLE
Value = High Chop
Value = Jump
Value = Swing
Value = Parry
Value = Dodge
Value = Duck
Value = Low Slash
Value = Quick Thrust
Value = Taunt

[RELATIVE]
Type = __VAR
Link = ARELATIVE
Value = sister
Value = uncle
Value = aunt
Value = grandfather

[ARELATIVE]
Type = __VAR
Link = RELATIVE
Value = a sister
Value = an uncle
Value = an aunt
Value = a grandfather

[LOSTCITY]
Type = __VAR
Value = Incas
Value = Aztecs
Value = Maya
Value = Olmec

[TREASURE]
Type = __VAR
Value = Skull
Value = Blood
Value = Devil's
Value = Black
Value = Knife
Value = Cutlass
Value = Hangman's
Value = Gallows
Value = Lookout
Value = Dagger
Value = Blade
Value = Powder
Value = Captain's
Value = Governor
Value = Anchor
Value = Shark
Value = Jellyfish
Value = Thunder
Value = Rum
Value = Cutthroat

[ROCK]
Type = __VAR
Value = Rock
Value = Point
Value = Stone
Value = Head
Value = Reef
Value = Shallows
Value = Cape

[TEMPLE]
Type = __VAR
Value = Coast
Value = Bay
Value = Beach
Value = Cove
Value = Marsh
Value = Creek
Value = Landing

[TOTEM]
Type = __VAR
Value = Hill
Value = Springs
Value = Valley
Value = Hollow
Value = Clearing
Value = Glade
Value = Knoll

[FALLS]
Type = __VAR
Value = Falls
Value = Spray
Value = Drop
Value = Falls
Value = Pool
Value = Drop
Value = Pool

[SHIPWRIGHTBUTTON]
Type = __VAR
Value = Ignore
Value = Repair
Value = Sell
Value = Upgrade
Value = Go To Next Ship
Value = Go To Previous Ship
Value = Exit
Value = Go To Ship #1
Value = Go To Ship #2
Value = Go To Ship #3
Value = Go To Ship #4
Value = Go To Ship #5
Value = Go To Ship #6
Value = Go To Ship #7
Value = Go To Ship #8

[SAVEGAME_SLOT]
Type = __VAR
Value = slot1
Value = slot2
Value = slot3
Value = slot4
Value = slot5
Value = slot6
Value = slot7
Value = slot8
Value = slot9
Value = slot10
Value = slot11
Value = slot12
Value = slot13
Value = slot14
Value = slot15
Value = quick
Value = arrival
Value = battle
Value = quit     

[REPUTATION]
Type = __VAR
Value = cowardly
Value = promising
Value = well-known
Value = famous
Value = notorious
Value = infamous

[HEALTH]
Type = __VAR
Value = excellent
Value = fine
Value = good
Value = fair
Value = poor
Value = poor
Value = failing
Value = failing

[TRADER]
Type = __VAR
Value = Merchant
Value = Plunder!
Value = Overboard

[ECONOMY]
Type = __VAR
Value = Poor
Value = Modest
Value = Prosperous
Value = Wealthy

[URBAN]
Type = __VAR
Value = Farmers
Value = Landowners
Value = Colonists
Value = Citizens
Value = Craftsmen
Value = Merchants

[DAMAGE]
Type = __VAR
Value = Minor Damage
Value = Some Damage
Value = Lost a Mast
Value = Hull Leaking
Value = Ship Sinking

[KEYBOARD]
Type = __VAR
Link = NAVKEYHELP
Link = ONLANDKEYHELP
Link = BATTLEKEYHELP
Link = DANCEKEYHELP
Link = DUELKEYHELP
Value = 7
Value = 8
Value = 9
Value = 4
Value = 5
Value = 6
Value = 1
Value = 2
Value = 3

[DANCEKEYHELP]
Type = __VAR
Link = KEYBOARD
Link = NAVKEYHELP
Link = ONLANDKEYHELP
Link = BATTLEKEYHELP
Link = DUELKEYHELP
Value = Turn\nLeft
Value = \nFwd
Value = Turn\nRight
Value = \nLeft
Value = --
Value = \nRight
Value = Turn\nRight
Value = \nBack
Value = Turn\nLeft

[DUELKEYHELP]
Type = __VAR
Link = KEYBOARD
Link = NAVKEYHELP
Link = ONLANDKEYHELP
Link = BATTLEKEYHELP
Link = DANCEKEYHELP
Value = \nChop
Value = \nJump
Value = \n
Value = \nThrust
Value = \nParry
Value = \nTaunt
Value = \nSlash
Value = \nDuck
Value = \n

[NAVKEYHELP]
Type = __VAR
Link = KEYBOARD
Link = ONLANDKEYHELP
Link = BATTLEKEYHELP
Link = DANCEKEYHELP
Link = DUELKEYHELP
Value = \nPause
Value = Full\nSails
Value = Change\nView
Value = Turn\nLeft
Value = \nAttack!
Value = Turn\nRight
Value = Fleet\nStatus
Value = Reefed\nSails
Value = \nMap

[ONLANDKEYHELP]
Type = __VAR
Link = KEYBOARD
Link = NAVKEYHELP
Link = BATTLEKEYHELP
Link = DANCEKEYHELP
Link = DUELKEYHELP
Value = \nPause
Value = Move\nForward
Value = \nSpyglass
Value = Turn\nLeft
Value = Return\nto Ship
Value = Turn\nRight
Value = Fleet\nStatus
Value = \n
Value = \nMap

[BATTLEKEYHELP]
Type = __VAR
Link = KEYBOARD
Link = NAVKEYHELP
Link = ONLANDKEYHELP
Link = DANCEKEYHELP
Link = DUELKEYHELP
Value = Chain\nShot
Value = Full\nSails
Value = Change\nView
Value = Turn\nLeft
Value = \nFIRE!
Value = Turn\nRight
Value = Grape\nShot
Value = Reefed\nSails
Value = Round\nShot

[LBATTLEKEYHELP]
Type = __VAR
Link = KEYBOARD
Link = NAVKEYHELP
Link = ONLANDKEYHELP
Link = DANCEKEYHELP
Link = DUELKEYHELP
Link = LBATTLETURNKEYHELP
Value = \nMove
Value = \nMove
Value = \nMove
Value = \nMove
Value = \nFIRE!
Value = \nMove
Value = \nMove
Value = \nMove
Value = \nMove

[LBATTLETURNKEYHELP]
Type = __VAR
Link = KEYBOARD
Link = NAVKEYHELP
Link = ONLANDKEYHELP
Link = DANCEKEYHELP
Link = DUELKEYHELP
Link = LBATTLEKEYHELP
Value = \nTurn
Value = \nTurn
Value = \nTurn
Value = \nTurn
Value = \n
Value = \nTurn
Value = \nTurn
Value = \nTurn
Value = \nTurn

[LBATTLESKEYHELP]
Type = __VAR
Link = KEYBOARD
Link = NAVKEYHELP
Link = ONLANDKEYHELP
Link = DANCEKEYHELP
Link = DUELKEYHELP
Link = LBATTLEKEYHELP
Value = Next\nUnit
Value = Skip\nTurn
Value = \nZoom
Value = Toggle\nGrid
Value = Center\nView
Value = Switch\nTarget
Value = \n
Value = \n
Value = \nRetreat!

[LAND_PARTY]
Type = __VAR
Value = Pirates
Value = Buccaneers
Value = Infantry
Value = Cavalry
Value = Artillery
Value = Archers
Value = Grenadoes
Value = Scouts
Value = Guards
Value = Officers

[MAPLEGEND]
Type = __VAR
Value = Mona Passage
Value = Jamaica Channel
Value = Windward Passage
Value = Guadeloupe Passage
Value = Dominica Passage
Value = St.Lucia Channel
Value = St.Vincent Passage
Value = Windward Islands
Value = Anguila Passage
;Value = Puerto Rico
Value = Straits of Florida
Value = Yucatan Channel
;Value = Isle de los Pinos
;Value = Jamaica

[SHOT]
Type = __VAR
Value = Round Shot
Value = Chain Shot
Value = Grape Shot
Value = FIXING

[PAUSEMENU]
Type = __VAR
Value = Ignore
Value = Status
Value = Fleet Status
Value = Personal Status
Value = Captain's Log
Value = Treasure Map
Value = World Map
Value = Top 10 Pirates
Value = Pirate-O-Pedia
Value = System Options
Value = Load/Save
Value = Ignore
Value = Return To Game
Value = Ignore
Value = Ignore

[UNIQUES]
Type = __VAR
Value = Antigua often has decently-priced goods for sale.
Value = Caribbean traders will often find an excellent market for spice here.
Value = Sugar often fetches a good price here.
Value = Sugar is often quite plentiful here.
Value = The merchants usually will deal only with reputable Spanish traders.
Value = Coro often has goods for sale.
Value = As the main port city for the province of New Andalusia, Cumana is often in need of goods.
Value = The wealthy merchants of Curacao are usually looking for spices and sugar to transport back to Europe.
Value = Eleutheran merchants are often in the market for luxuries.
Value = The local merchants are usually broke and have little to sell.
Value = Gibraltar merchants usually offer moderate prices for luxuries.
Value = The merchants usually will deal only with reputable Spanish traders.
Value = Food sometimes is available here.
Value = Merchants in this modest port are often looking to purchase goods.
Value = This port is often highly-regulated, and merchants will usually deal only with reputable Spanish traders.
Value = Local merchants usually don't have much to sell.
Value = There's usually a good market for luxuries and goods here.
Value = This town is too small and too poor to hold much interest for a trader.
Value = Merchants from this town often have a lot of sugar for sale.
Value = When available, food is usually pretty inexpensive here.
Value = Food is often plentiful here.
Value = Nassau is too poor and too small to be of much interest.
Value = Merchants here will usually trade only with reputable Spanish sailors.
Value = Panama is often very highly regulated. Its merchants will trade usually only with reputable Spanish sailors.
Value = Merchants in this town often offer competitive prices for goods.
Value = Merchants in this town are often in the market for goods.
Value = Port Royale is a haven for English merchants smuggling to and from the Spanish Main.
Value = Merchants in this important city are often reluctant to trade with foreigners.
Value = There is little of interest to a trader in this primitive city.
Value = Luxuries and goods often find a ready market in this inland town.
Value = Rio de la Hacha often has spice and sugar available in quantity.
Value = Prices for all goods except food are high, and most times the law is vigorously enforced.
Value = There's usually little to buy or sell at this garrison town.
Value = This town often will pay good prices for luxuries.
Value = Like all the great cities, prices are high and trade law is vigorously enforced.
Value = Large farmsteads nearby mean this city often has low food prices.
Value = There's usually little for sale here, and the locals are too poor to buy much, either.
Value = Merchants of St. Eustatius usually offer high prices for goods and luxuries.
Value = Spice often fetches a good price in St. Kitts.
Value = Sugar is often plentiful at this port.
Value = Prices and quantities for trade items fluctuate wildly here.
Value = Prices and quantities of most trade goods are quite low in this backwater town.
Value = This isolated town often offers good prices for luxuries and goods.
Value = Food is often plentiful and reasonably-priced here.

[SPECIALSKILL]
Type = __VAR
Value = Skill at Fencing
Value = Skill at Gunnery
Value = Skill at Navigation
Value = Skill at Medicine
Value = Wit and Charm

[ERAS]
Type = __VAR
Value = 1600 - Merchants and Smugglers
Value = 1620 - The New Colonists
Value = 1640 - War for Profit
Value = 1660 - The Buccaneer Heroes
Value = 1680 - Pirates' Sunset
Back to top
View user's profile Send private message Send e-mail
Captain Teague
Rigger
Posts: 1185



12207 Gold -

PostPosted: Sun Sep 30, 2018 4:54 am    Post subject: Reply with quote

Pirate wrote:
Hello Captain! It’s the idiot speaking. In order to do that you would probably need to unpack the games fpk packs and find the text.ini. Open that sucker with a sharp knife, oops I mean with notepad then take a stroll all the way down to the bottom and find (ERAS). There you will saw all de different eras and they start date. Change the value of 1680 to 1725 should do it and if you want you can redo the text ore leave tit alone. Example the 1680 error is Pirates Sunset . You can change 1680 into 1725 and call it Barnaids gone topless or whatever ye had in mind. Need any help let me know.

Pirate's Sunset is still a good name, as after Bart Roberts' death piracy in the Caribbean declined sharply and quickly.

fleetp wrote:

~snipped to save space~

Thanks Fleet, do I need to save it in any particular format?
_________________
The Code is the Law.
Back to top
View user's profile Send private message
fleetp
Boatswain
Posts: 3711



35986 Gold -

PostPosted: Sun Sep 30, 2018 5:26 pm    Post subject: Reply with quote

Captain Teague wrote:

fleetp wrote:

~snipped to save space~

Thanks Fleet, do I need to save it in any particular format?


Save in text format. Make sure the file is saved with the filename 'text.ini'
Some text editor programs will try to tack on a txt extension.
Back to top
View user's profile Send private message Send e-mail
Captain Teague
Rigger
Posts: 1185



12207 Gold -

PostPosted: Sun Sep 30, 2018 10:56 pm    Post subject: Reply with quote

Thanks, I will try it out.
_________________
The Code is the Law.
Back to top
View user's profile Send private message
Captain Teague
Rigger
Posts: 1185



12207 Gold -

PostPosted: Wed Oct 17, 2018 1:31 pm    Post subject: Reply with quote

I did end up trying this, but I must not have modded the right file or done it right. I copy/pasted what was provided here into a text document and renamed it "text.ini". I then dumped that into the "Customs" folder. However, none of the changes I made are showing in-game. The eras and starting years are still the default. What did I do wrong?
_________________
The Code is the Law.
Back to top
View user's profile Send private message
Pirate
Helmsman
Posts: 5589



109759 Gold -

PostPosted: Thu Oct 18, 2018 12:42 am    Post subject: Reply with quote

I think you discovered a little secret of mine. Dropping mods in the customs folder is for the most part OK except if memory serves me correct the text.ini wont work there. Drop it in the Assets folder and see if it works.
Back to top
View user's profile Send private message
Captain Teague
Rigger
Posts: 1185



12207 Gold -

PostPosted: Thu Oct 18, 2018 5:41 pm    Post subject: Reply with quote

Pirate wrote:
I think you discovered a little secret of mine. Dropping mods in the customs folder is for the most part OK except if memory serves me correct the text.ini wont work there. Drop it in the Assets folder and see if it works.

Where is that? Or is like the "Custom" folder, and I have to create it?
_________________
The Code is the Law.
Back to top
View user's profile Send private message
Pirate
Helmsman
Posts: 5589



109759 Gold -

PostPosted: Thu Oct 18, 2018 9:56 pm    Post subject: Reply with quote

Sorry Captain and don't get discouraged. We will get you going. I do apologize for the delay. I'm a working man and do appreciate your patience.

Hmmm, It sounds to me your in the wrong folder altogether as you should not have needed to create a customs folder or a Assets folder either as they are both needed in the game. The customs folder has your ship flags and sail emblems and the Assets folder is even more important. Just about everything in the game you see is located here. Most of it is packed up in fpk packs but it is there. So that is why I'm thinking your in the wrong place or you wouldn't be able to play the game at all if they weren't already there. The customs and Assets folders are located inside the game folder or where the game is installed at on your PC. Try C:\Program Files (x86)\Firaxis Games\Sid Meier's Pirates! and open up the folder called Sid Meier's Pirates!. That a boy and now see if she ain't in there. Feel free to come back if you still have trouble. We will get you going.
Back to top
View user's profile Send private message
Captain Teague
Rigger
Posts: 1185



12207 Gold -

PostPosted: Tue Oct 23, 2018 6:56 pm    Post subject: Reply with quote

No worries, I am busy too and so just saw this reply.

I was checking in "My Games" and "Sid Meier's Pirates!" That is where I have always placed my mods and they have worked. I found the "Assets" folder right where you said, but no luck. Putting my "text.ini" file there did nothing.
_________________
The Code is the Law.
Back to top
View user's profile Send private message
Pirate
Helmsman
Posts: 5589



109759 Gold -

PostPosted: Wed Oct 24, 2018 5:27 pm    Post subject: Reply with quote

Ok I made another text.ini and it both works and doesn't work meaning the game still thinks it is 1680 but some of the text states you started your career in 1725 etc. That tells me it's more comlicated then just editing the text.ini. Perhaps the excutable needs looking into as well. I give it a shot later when I can. Sorry for all the bad luck and having you try this and that and still nothing.
Back to top
View user's profile Send private message
Captain Teague
Rigger
Posts: 1185



12207 Gold -

PostPosted: Sat Oct 27, 2018 2:41 am    Post subject: Reply with quote

Pirate wrote:
Ok I made another text.ini and it both works and doesn't work meaning the game still thinks it is 1680 but some of the text states you started your career in 1725 etc. That tells me it's more comlicated then just editing the text.ini. Perhaps the excutable needs looking into as well. I give it a shot later when I can. Sorry for all the bad luck and having you try this and that and still nothing.

No worries, mate. I can do the math in my head and imagine, in the meantime. Very Happy
_________________
The Code is the Law.
Back to top
View user's profile Send private message
AdamMil
Cutthroat
Posts: 279



4747 Gold -

PostPosted: Wed Oct 31, 2018 4:33 am    Post subject: i'm not really back Reply with quote

Text.ini is just the text it shows in the menu, but the actual starting year is calculated based on this formula: Year = (N*5 + 400) * 4, which simplifies to Year = 1600 + N*20, where N is the index of the item you select from the starting menu (from 0 to 4).

While it's possible to modify this formula in the code, it's easier to just modify it inside the save file once your game starts. The value is quite far into the save file, sandwiched between the villain quests and the city locations. If I still had Pirates! installed I could find the exact offset, but if you start a game, save it, open the save file in a hex editor, search for 4-byte integers that equal your starting year, do it again with a new starting year, and find the location that changed between the two, you'll have it. Once you know where it is, you can set it any time you like.

Maybe Jslangdo's save file editor can edit it.
Back to top
View user's profile Send private message Visit poster's website
Captain Teague
Rigger
Posts: 1185



12207 Gold -

PostPosted: Thu Nov 01, 2018 1:14 pm    Post subject: Re: i'm not really back Reply with quote

AdamMil wrote:
Text.ini is just the text it shows in the menu, but the actual starting year is calculated based on this formula: Year = (N*5 + 400) * 4, which simplifies to Year = 1600 + N*20, where N is the index of the item you select from the starting menu (from 0 to 4).

While it's possible to modify this formula in the code, it's easier to just modify it inside the save file once your game starts. The value is quite far into the save file, sandwiched between the villain quests and the city locations. If I still had Pirates! installed I could find the exact offset, but if you start a game, save it, open the save file in a hex editor, search for 4-byte integers that equal your starting year, do it again with a new starting year, and find the location that changed between the two, you'll have it. Once you know where it is, you can set it any time you like.

Maybe Jslangdo's save file editor can edit it.

-eyes glaze over-
See the first post mate; you may as well be speaking Swahili. I appreciate the guide, though. Maybe I can figure it out... eventually.
_________________
The Code is the Law.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic     Forum Index -> Customization & Modding All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group