• New Horizons on Maelstrom
    Maelstrom New Horizons


    Visit our website www.piratehorizons.com to quickly find download links for the newest versions of our New Horizons mods Beyond New Horizons and Maelstrom New Horizons!

Change main character stats

kwiatolec

Landlubber
How to do this, but not in in-game console, but in files. I know how change ship, but I don't know where I can add money or skill.
 
Add money? Easiest is just use the cheatmode. For add ship, with Cheatmode enabled, you can repaint your ship into ANY other ship at the Shipyards.
 
Easiest is to use PROGRAM\console.c . Add some lines of code to give you what you want, load your savegame and press F12 to get it.

Add below:
Code:
void ExecuteConsole()
{
    ref pchar = GetMainCharacter();
    if (!bSeaActive) ref lcn = &Locations[FindLocation(pchar.location)];
    ref ch;
    int i;
    int limit;
You can use the following to boost your skills:
Code:
    PChar.skill.Leadership = "1";
    PChar.skill.Fencing = "1";
    PChar.skill.Sailing = "1";
    PChar.skill.Accuracy = "1";
    PChar.skill.Cannons = "1";
    PChar.skill.Grappling = "1";
    PChar.skill.Repair = "1";
    PChar.skill.Defence = "1";
    PChar.skill.Commerce = "1";
    PChar.skill.Sneak = "1";
Change the "1" to whatever value you want.
GiveItem2Character(PChar, "[ITEM ID'"); will give you the item you want. Look up the ID in PROGRAM\ITEMS\initItems.c .
 
Open PROGRAM\console.c and find:
Code:
void ExecuteConsole()
{
    ref pchar = GetMainCharacter();
    if (!bSeaActive) ref lcn = &Locations[FindLocation(pchar.location)];
    ref ch;
    int i;
    int limit;
Below this, add:
Code:
    PChar.skill.Leadership = "10";
    PChar.skill.Fencing = "10";
    PChar.skill.Sailing = "10";
    PChar.skill.Accuracy = "10";
    PChar.skill.Cannons = "10";
    PChar.skill.Grappling = "10";
    PChar.skill.Repair = "10";
    PChar.skill.Defence = "10";
    PChar.skill.Commerce = "10";
    PChar.skill.Sneak = "10";
Save the file, load your savegame and press F12 to get all your skills at 10.
 
Just use the Fake Level Up cheat and get them ingame; that's easiest.
 
Back
Top