the Restored Random Encounters installed with warnings on my current install:
Install Component [Restored Random Encounters]?
[I]nstall, or [N]ot Install or [Q]uit?
Installing [Restored Random Encounters] [v8.1.2]
Compiling 1 script ...
Processing 1 dialogues/scripts ...
Copying and patching 1 file ...
[./override/ar0044.are] loaded, 1504 bytes
Copied [ar0044.are] to [override/l-ar01.are]
Appending to files ...
[./override/MASTAREA.2DA] loaded, 3598 bytes
override/MASTAREA.2da copied to arestorationp/backup/7/MASTAREA.2da, 3598 bytes
Appended text to [MASTAREA.2da]
Copying and patching 1 file ...
[./override/worldm25.wmp] loaded, 20768 bytes
override/worldm25.wmp copied to arestorationp/backup/7/worldm25.wmp, 20768 bytes
Copied [worldm25.wmp] to [override/worldm25.wmp]
Copying and patching 1 file ...
[./override/worldm25.wmp] loaded, 20768 bytes
Copied [worldm25.wmp] to [override/worldm25.wmp]
Copying and patching 1 file ...
[./override/worldm25.wmp] loaded, 20768 bytes
Copied [worldm25.wmp] to [override/worldm25.wmp]
[./override/ar7200.are] loaded, 30600 bytes
[./override/ar6111.are] loaded, 2776 bytes
Extending game scripts ...
[arestorationp/baf/l-extra.baf] loaded, 1671 bytes
[./override/L-AR01.BCS] loaded, 1217 bytes
Extended script [l-ar01.bcs] with [arestorationp/baf/l-extra.baf]
Copying and patching 1 file ...
Copied [tobpar01.cre] to [override/tobpar01.cre]
Copying and patching 1 file ...
Copied [tobpar06.cre] to [override/tobpar06.cre]
Copying and patching 2 files ...
[arestorationp/baf/wilderness_old.baf] loaded, 259 bytes
[arestorationp/baf/wilderness_new.baf] loaded, 498 bytes
Copying and patching 1 file ...
[./override/ar0042.bcs] loaded, 106129 bytes
WARNING: cannot find block matching [arestorationp/baf/wilderness_old.baf]
override/ar0042.bcs copied to arestorationp/backup/7/ar0042.bcs, 106129 bytes
Copied [ar0042.bcs] to [override/ar0042.bcs]
Copying and patching 1 file ...
[./override/ar0043.bcs] loaded, 106129 bytes
WARNING: cannot find block matching [arestorationp/baf/wilderness_old.baf]
override/ar0043.bcs copied to arestorationp/backup/7/ar0043.bcs, 106129 bytes
Copied [ar0043.bcs] to [override/ar0043.bcs]
Copying and patching 1 file ...
[./override/ar0044.bcs] loaded, 106129 bytes
WARNING: cannot find block matching [arestorationp/baf/wilderness_old.baf]
override/ar0044.bcs copied to arestorationp/backup/7/ar0044.bcs, 106129 bytes
Copied [ar0044.bcs] to [override/ar0044.bcs]
The problem seems to be difficulty in finding the block matching wildernesss_old.baf, because D0 Quest Pack expands the relevant block in these 3 bcs files, and Quest Pack is recommended to be installed earlier than your mod by the BWP/BWS folks. I'm not sure what the weidu code is exactly but seems like another approach to appending the file may be necessary.
To be exact, the block that is originally (in vanilla bg2):
IF
OnCreation()
THEN
RESPONSE #100
CreateCreature("REBAND01",[488.558],10)
CreateCreature("REBAND02",[500.454],10)
CreateCreature("REBAND03",[552.476],10)
CreateCreature("REBAND04",[427.548],10)
CreateCreature("REBAND05",[525.591],10)
END
with Quest Pack becomes:
IF
OnCreation()
THEN
RESPONSE #100
CreateCreature("REBAND01",[488.558],10)
CreateCreature("REBAND02",[500.454],10)
CreateCreature("REBAND03",[552.476],10)
CreateCreature("REBAND04",[427.548],10)
CreateCreature("REBAND05",[525.591],10)
RESPONSE #200
CreateCreature("REBAND01",[488.558],10)
CreateCreature("REBAND03",[488.558],10)
CreateCreature("REBAND02",[500.454],10)
CreateCreature("REBAND03",[552.476],10)
CreateCreature("REBAND05",[552.476],10)
CreateCreature("REBAND04",[427.548],10)
CreateCreature("REBAND05",[525.591],10)
RESPONSE #300
CreateCreature("REBAND01",[488.558],10)
CreateCreature("REBAND02",[500.454],10)
CreateCreature("REBAND05",[500.454],10)
CreateCreature("REBAND03",[552.476],10)
CreateCreature("REBAND05",[552.476],10)
CreateCreature("REBAND04",[427.548],10)
CreateCreature("REBAND01",[427.548],10)
CreateCreature("REBAND05",[525.591],10)
RESPONSE #500
CreateCreature("REBAND01",[488.558],10)
CreateCreature("REBAND02",[500.454],10)
CreateCreature("REBAND03",[500.454],10)
CreateCreature("REBAND01",[500.454],10)
CreateCreature("REBAND03",[552.476],10)
CreateCreature("REBAND04",[427.548],10)
CreateCreature("REBAND05",[427.548],10)
CreateCreature("REBAND05",[525.591],10)
CreateCreature("REBAND04",[525.591],10)
END
(which for some reason along with all the other changes Quest Pack makes to this bcs is duplicated, but I'm told that's harmless). Your mod seems to have difficulty recognizing the changed block above and thus the ogre isn't installed.
And further, SCS's Random Encounters component (which if installed is recommended to go after Almateria) subsequently replaces that block entirely with something like:
IF
OnCreation()
!GlobalGT("DMWWRandomBoring","GLOBAL",0)
THEN
RESPONSE #100
IncrementGlobal("DMWWRandomBoring","GLOBAL",1)
CreateCreature("REBAND01",[488.558],10)
CreateCreature("REBAND02",[500.454],10)
CreateCreature("REBAND03",[552.476],10)
CreateCreature("REBAND04",[427.548],10)
CreateCreature("REBAND05",[525.591],10)
END
along with a bunch of other new random encounters, which I'm not sure interferes with the appearance of the lone ogre.
Edited by Ithildur, 11 May 2015 - 09:40 AM.