• Johnyy
    #3805
    Itt leírja hogy hogy lehet játszani a befelyezés után, át kell szerkeszteni valamit:
    Enable Continued Play After Winning Main Quest

    Enables continued play after winning the main quest and makes Danielle removeable from your officer list. NOTE: Only works if changed prior to sinking the Black Pearl.

    Open up INSTALLDIRProgramQuestsquests_reaction.c in Notepad.

    Find:



    Code:

    case "Story_KillTheFinalBoss_2":
    bQuestDisableMapEnter = false;
    bMainMenuLaunchAfterVideo = true;
    InterfaceStates.Buttons.Resume.enable = false;
    InterfaceStates.Buttons.Save.enable = false;
    GameOver("finish");
    DelEventHandler(EVENT_END_VIDEO,"LaunchMainMenu_afterVideo");
    bMainMenuLaunchAfterVideo = true;
    PostVideoAndQuest("ending",100, "credits");
    break;

    case "credits":
    PostEvent("DoInfoShower",100,"s","");
    PostVideoAndQuest("credits", 1, "end_game");
    break;

    case "end_game":
    LaunchMainMenu();
    Characters[GetCharacterIndex("researcher")].Dialog.CurrentNode = "First time"; Characters[GetCharacterIndex("danielle")].Dialog.CurrentNode = "First time";
    break;





    and replace with:



    Code:

    case "Story_KillTheFinalBoss_2":
    bQuestDisableMapEnter = false;
    DelEventHandler(EVENT_END_VIDEO,"LaunchMainMenu_afterVideo");
    PostVideoAndQuest("ending",100, "credits");
    break;

    case "credits":
    PostEvent("DoInfoShower",100,"s","");
    PostVideoAndQuest("credits", 1, "end_game");
    break;

    case "end_game":
    Characters[GetCharacterIndex("researcher")].Dialog.CurrentNode = "First time";
    Characters[GetCharacterIndex("danielle")].Dialog.CurrentNode = "First time";
    SetCharacterRemovable(characterFromID("Danielle"), true);
    SetCharacterRemovable(characterFromID("researcher"), true);
    break;





    Save the changes and restart the game. Now, after the ending credits, the game should continue and you should be able to remove both Danielle and the Researcher characters from your officer list

    Last Updated ( Sunday, 22 February 2004 )