So i was happyly following walkthrough for COAS quest http://sites.google.com/site/skodacoas/home/important-quests/killing-the-beggars-lost-ship-city-quest and unfortunatle when i got to "bring those greedy womens some stuff and maybe even save them later" i unfortunatly read... "One will ask you for 10 pieces of salt, the other one will ask you for 10 grapes, 3 whine bottles and one Lute (the Medieval guitar). If you plundered all the chests before and didn't store these goods you have a serious problem...".
I like to explore things thoroughly so ALL DAMNED CHEST were empty already so like mentioned i had "a serious problem" (other walkthrough i found after this mentioned to save those items BEFORE talking about this quest so i guess i was unlucky). After some sleep + go to shop + damn shopkeeper in the middle of the salty sea have NO SALT and only once he had ONE PIECE of grape i decided it's not the way to go...
After some forum browsing only solution seemed to be cheating... though no thorough explanation was provided (aside from debugwindow which i didn't try that have no real description on what it can do but maybe it's self explanationary when you turn it on...).
So what i did and decided to share with any other poor lost souls is:
open wherever_you_installed_your_game/Program/console.c which should look like this:
Hope it'll save next person couple of hours i spent trying to buy things at shop and later testing some game code or starting from a previous save
I like to explore things thoroughly so ALL DAMNED CHEST were empty already so like mentioned i had "a serious problem" (other walkthrough i found after this mentioned to save those items BEFORE talking about this quest so i guess i was unlucky). After some sleep + go to shop + damn shopkeeper in the middle of the salty sea have NO SALT and only once he had ONE PIECE of grape i decided it's not the way to go...
After some forum browsing only solution seemed to be cheating... though no thorough explanation was provided (aside from debugwindow which i didn't try that have no real description on what it can do but maybe it's self explanationary when you turn it on...).
So what i did and decided to share with any other poor lost souls is:
open wherever_you_installed_your_game/Program/console.c which should look like this:
and add few lines at the end so you get something like this:void ExecuteConsole()
{
ref pchar = GetMainCharacter();
if (!bSeaActive) ref lcn = &Locations[FindLocation(pchar.location)];
ref ch;
int i;
int limit;
Log_SetStringToLog("Executed Console");
}
Save file and press F4 while in game (whole file editing process can be done without exiting the game) and... DONE! All items are placed safely in your inventory. Now just restore orginal file content and you're good to go. Just look out for your maximum load since you can't run when you exceede it (just get below maximum and change location and you can run again).void ExecuteConsole()
{
ref pchar = GetMainCharacter();
if (!bSeaActive) ref lcn = &Locations[FindLocation(pchar.location)];
ref ch;
int i;
int limit;
Log_SetStringToLog("Executed Console");
TakenItems(Pchar, "potion5", 10); //grapes
TakenItems(Pchar, "potionwine", 3); //wine
TakenItems(Pchar, "mineral2", 1); //lute
TakenItems(Pchar, "mineral10", 10); //salt
Log_SetStringToLog("STUPID QUEST!!!");
}
Hope it'll save next person couple of hours i spent trying to buy things at shop and later testing some game code or starting from a previous save
