
WeiDU install log (edit : don't worry about the morituri kit it's been rendered harmless by myself).
Warnings in DEBUGs
-BGTv1.01-
Error 1 Tele0700.BCS(from the warnings)
Got it due to the BG2 Fixpack modifying the original.
2 missing files ?
It happened after it saved the key for the bg1 areas , not sure what weidu's is trying at that point.
Most warnings can be ignored (as stated) but this one seemed odd so I thought I'd post it anyways.
Most of Jaheira and Minsc's .CRE files appeared broken after the install :
Select_Rare had a wrong string for Jaheira
The same for Minsc's .CRE files (also select_rare1+2).
Easily fixable.
All the farmers in Nashkel appear to be called Lahl.
Easily fixable in the english bg1.tra (russian is already correct).
-BPv177-
DEMNABSU.BCS was modified by BG2 fixpack so the replace didn't work obviously.
"ADD_CRE_ITEM ~MFIST4~ #0 #0 #0 ~NONE~ ~FIST~ " in Setup-BPv177.tp2 should be changed.
Don't know what the .DLG's problem is though , could use some help there (fixed the other 2 files already).
As I don't know what "weight" does , I'm stuck with the broken dlg's for now (unless it doesn't matter ?).
-BG2 Fixpack Beta1-
SPCL342.SPL (Find Familiar) was broken after the BG2 Fixpack install.
The problem being :COPY_EXISTING ~spcl342.spl~ ~override~
READ_LONG 0x64 "abil_off"
READ_SHORT 0x68 "abil_num"
READ_LONG 0x6a "fx_off"
READ_SHORT 0x70 "fx_num"
WRITE_SHORT 0x70 ("%fx_num%" + 1)
FOR (index = 0 ; index < abil_num ; index = index + 1) BEGIN
READ_SHORT ("%abil_off%" + 0x20 + (0x28 * "%index%")) "abil_fx_idx"
WRITE_SHORT ("%abil_off%" + 0x1e + (0x28 * "%index%")) ("%abil_fx_num%" + 1)
END
INSERT_BYTES ("%fx_off%" ) 0x30 // new effect
WRITE_SHORT ("%fx_off%" ) 265 // set global
WRITE_BYTE ("%fx_off%" + 0x02) 1 // target: self
WRITE_LONG ("%fx_off%" + 0x04) 1 // value
WRITE_BYTE ("%fx_off%" + 0x0c) 1 // instant/perm
WRITE_BYTE ("%fx_off%" + 0x12) 100 // probability
WRITE_ASCII ("%fx_off%" + 0x14) ~tutfam01~ // variable
BUT_ONLY_IF_IT_CHANGES
READ_SHORT ("%abil_off%" + 0x20 + (0x28 * "%index%")) "abil_fx_idx"
WRITE_SHORT ("%abil_off%" + 0x1e + (0x28 * "%index%")) ("%abil_fx_num%" + 1)
This (probably) should be :
READ_SHORT ("%abil_off%" + 0x20 + (0x28 * "%index%")) "abil_fx_idx"
WRITE_SHORT ("%abil_off%" + 0x20 + (0x28 * "%index%")) ("%abil_fx_idx%" + 1)
Edited by GekkeR, 22 July 2006 - 12:31 AM.