When I was looking into making the changes for Planned Feature - Change Evil Stormy Start into Free Play Opening Scenario Choice | PiratesAhoy! , I noticed that all the contraband goods you get for a Stormy Start were hardcoded.
Which means that the goods you got may not be contraband any longer.
So I rewrote the attached file to replace stuff like this (extract to PROGRAM\Storyline\standard\quests to use):
With this:
And then AFTER the switch statement, we can do:
As far as I can tell, this works. BUT I'd like to know if this is actually a good idea or if there is anything I am not considering here.
Which means that the goods you got may not be contraband any longer.
So I rewrote the attached file to replace stuff like this (extract to PROGRAM\Storyline\standard\quests to use):
Code:
switch(rand(STORMY_START_CHOICES) ) // ccc mar 06 New islands
{
case 0:
DoQuestReloadToLocation("Douwesen_shore_01", "reload", "reload1" ,"_");
PlaceFleetNearShore("Douwesen_shore_01"); // KK
if (GetDifficulty() == DIFFICULTY_SWASHBUCKLER)
AddCharacterGoods(PChar, GOOD_LINEN, makeint(2)); // contraband
else
AddCharacterGoods(PChar, GOOD_LINEN, makeint(20 + rand(20))); // contraband
break;
Code:
switch(rand(STORMY_START_CHOICES) ) // ccc mar 06 New islands
{
case 0:
loadPort = "Douwesen_shore_01";
loadTown = "Douwesen_shore_01";
rldLocator = "reload1";
break;
Code:
i = getRandomContrabandGood(GetIslandByID(FindIslandByLocation(loadTown)));
if (i > 0) AddCharacterGoods(PChar, i, (2.0+rand(2))/10.0 * GetCharacterFreeSpace(PChar, i) ); // PB&Levis: Between 20%-40% contraband
DoQuestReloadToLocation(loadTown, "reload", rldLocator, "_");
PlaceFleetNearShore(loadPort); // KK
As far as I can tell, this works. BUT I'd like to know if this is actually a good idea or if there is anything I am not considering here.
