Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tob] Oasis map should not be bypassed when travelling to Amkethran #103

Merged
merged 1 commit into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions eefixpack/files/baf/ar6300_unlock_ar5500.baf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
IF
Global("ar5500_enabled","AR6300",0)
THEN
RESPONSE #100
SetGlobal("ar5500_enabled","AR6300",1)
AddWorldmapAreaFlag("AR5500",ENABLED)
Continue()
END
11 changes: 10 additions & 1 deletion eefixpack/files/d/bg2ee_core_fixes.d
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,13 @@ ActionOverride(LastTalkedToBy(Myself), ForceSpellRES("jworphan","orphan2"))
Wait(5)
EndCutSceneMode()~
EXIT
END
END

// Fixes an exploit that would allow the party to bypass the Oasis when travelling to Amkethran
// via Deepstone Clanhold (Rasaad's quest) or the Clearing (Neera's quest).
// https://www.gibberlings3.net/forums/topic/34875-bug-report-ee-content-bugs/?do=findComment&comment=339326
REPLACE_TRANS_ACTION ~sarmel01~
BEGIN 83 END
BEGIN 0 END
~RevealAreaOnMap("AR5500")~ ~\0 RemoveWorldmapAreaFlag("AR5500",ENABLED)~
UNLESS ~RemoveWorldmapAreaFlag("AR5500",ENABLED)~
9 changes: 9 additions & 0 deletions eefixpack/files/tph/bg2ee.tph
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,15 @@ COPY_EXISTING ~oh7200.bcs~ ~override~
// Yoshimo Should Have Follow-Up Banters with the PC
EXTEND_BOTTOM ~yoshimo.bcs~ ~eefixpack/files/baf/yoshimo_banter.baf~ // add script prompt for third banter

// Fixes an exploit that would allow the party to bypass the Oasis when travelling to Amkethran
// via Deepstone Clanhold (Rasaad's quest) or the Clearing (Neera's quest).
// https://www.gibberlings3.net/forums/topic/34875-bug-report-ee-content-bugs/?do=findComment&comment=339326
ACTION_IF (NOT FILE_EXISTS_IN_GAME ~AR6300.BCS~) BEGIN
COPY - ~.../fp-inline/blank~ ~.../inlined/eefixpack/AR6300.BAF~
COMPILE ~.../inlined/eefixpack/AR6300.BAF~
END
EXTEND_TOP ~AR6300.BCS~ ~eefixpack/files/baf/ar6300_unlock_ar5500.baf~


///// \\\\\
///// area fixes \\\\\
Expand Down