I have the files, and have installed them on my PC.
By default FreePlay sets you up as player type "Rebel", specifically an Irish mutineer on a British warship in 1682. This is due to Build Mod history. Years ago, sidequests were only available in "Tales of a Sea Hawk".
@Jason Maffetone didn't like having to do errands for Governor Silehard so he cloned the storyline, deleted the quest and gave it a custom start. This was the "Brave Black Flag" mini-story. It has evolved over the years to become the much more flexible FreePlay, but in honour of the original, the default settings are still for "Brave Black Flag". So anything which is not specifically set for a character in "initModels.c" uses those settings, and that's why Geralt also starts off as an Irish rebel with the harp Personal flag, smoking skull pirate flag, in 1682.
You can change any or all of this in "initModels.c". For example, if Geralt is a dragon hunter then he's probably Sword Master or Adventurer, so the attached version of "initModels.c" adds this:
Code:
model.playertype = PLAYER_TYPE_ADVENTURER;
And this is the result:
Add 'model.Flags.Pirate' or 'model.Flags.Personal' lines to set different flags. Add 'model.date.year', 'model.date.month' or 'model.date.day' lines to have your choice of date - the year is particularly significant because that will also set the period.
Also:
That's the result of this addition to Geralt's part of "StartStoryline.c":
Code:
ch.name = TranslateString("","Yennefer");
ch.lastname = TranslateString("","of Vengerberg");
SetModelfromArray(ch, GetModelIndex("50LCroft"));
I had a look at Geralt's entry on the "Witcher" page to find someone associated with him. This simply changes Malcolm Hatcher's name and appearance, the character still uses the normal introductory dialog. You can change those lines to someone more suitable as a tutor to Geralt. (The character will retire from the ship and appear in a nearby tavern in case the player wants any more help with the game, so don't change this character to Ciri if you plan to involve a proper Ciri character in a quest!)
@Jack Rackham: there's a slight problem with the sword on the back:
It's difficult to see with static pictures, but the sword bounces up and down as Geralt walks. Is it possible to make the sword more stable?