Skip to content

Commit

Permalink
RC9.2d
Browse files Browse the repository at this point in the history
- fixed minor GUI text problems (Assign keys tip, Delete a contingency tip) - both vanilla bugs
- starting a new ToB campaign grants the "Slayer Change" innate ability
- starting a new ToB campaign reveals Sacred Grove on worldmap (this time for real)
  • Loading branch information
K4thos committed Aug 13, 2017
1 parent 44de400 commit 11fdc5b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions EET/base/lua/UI_BG2.MENU
Original file line number Diff line number Diff line change
Expand Up @@ -3476,7 +3476,7 @@ key = 0

function displayHelp()
if not (key == 0) then
return 24680
return 80750
end
return 0
end
Expand Down Expand Up @@ -8012,7 +8012,7 @@ menu
var "currentContingencySpell"
action "
if (cellNumber == 7) and preparedSpells[currentContingencySpell].dispellable then
popup2Button(24398, 'YES_BUTTON', function() mageScreen:OnDispellButtonClick(currentContingencySpell) end, 'NO_BUTTON')
popup2Button(32665, 'YES_BUTTON', function() mageScreen:OnDispellButtonClick(currentContingencySpell) end, 'NO_BUTTON')
end
"
}
Expand Down
2 changes: 1 addition & 1 deletion EET/base/lua/UI_SoD.MENU
Original file line number Diff line number Diff line change
Expand Up @@ -3471,7 +3471,7 @@ key = 0

function displayHelp()
if not (key == 0) then
return 24680
return 80750
end
return 0
end
Expand Down
4 changes: 3 additions & 1 deletion EET/lib/bg2_BCS.tph
Original file line number Diff line number Diff line change
Expand Up @@ -3155,9 +3155,11 @@ THEN
SetGlobal("SPRITE_IS_DEADYOSHIMO","GLOBAL",1)
SetGlobal("NEWGAME_TOB","GLOBAL",1)
StartMovie("INTRO")
AddWorldmapAreaFlag("ID9100",EXPLORED) //Has been visited
AddWorldmapAreaFlag("AR4000",EXPLORED) //Has been visited
RemoveWorldmapAreaFlag("AR0020",ENABLED) //Reveal from linked area
ReallyForceSpellRES("K#REMBHA",Player1)
//ActionOverride(Player1,ApplySpell(Myself,GIVE_SLAYER_POWER))
ActionOverride(Player1,AddSpecialAbility("SPIN822"))
TakeItemListPartyNum("K#PLOT",99)
GiveItemCreate("BAG19",Player1,1,0,0)
GiveItemCreate("AMUL27",Player1,1,0,0)
Expand Down
9 changes: 9 additions & 0 deletions EET/lib/bg2_IDS.tph
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,16 @@ BUT_ONLY
///// ANIMATE.IDS \\\\\
///// \\\\\

//COPY_EXISTING ~ANIMATE.IDS~ ~override~
// REPLACE_TEXTUALLY ~SOD_TMP01~ ~BELHIFET~
// REPLACE_TEXTUALLY ~SOD_TMP02~ ~BELHIFET_PRIEST~
// REPLACE_TEXTUALLY ~SOD_TMP03~ ~HEPHERNAAN~
//BUT_ONLY

COPY + ~%MOD_FOLDER%/temp/array/ANIMATE.IDS~ ~%MOD_FOLDER%/temp/array~
// REPLACE_TEXTUALLY ~SOD_TMP01~ ~BELHIFET~
// REPLACE_TEXTUALLY ~SOD_TMP02~ ~BELHIFET_PRIEST~
// REPLACE_TEXTUALLY ~SOD_TMP03~ ~HEPHERNAAN~
COUNT_2DA_ROWS 2 "cntrow"
FOR (cnt = 0; cnt < "%cntrow%"; cnt = cnt + 1) BEGIN
READ_2DA_ENTRY cnt 0 2 "col1"
Expand Down

0 comments on commit 11fdc5b

Please sign in to comment.