diff --git a/Setup-iiTweak.exe b/Setup-iiTweak.exe index c953e18..a2a08c7 100644 Binary files a/Setup-iiTweak.exe and b/Setup-iiTweak.exe differ diff --git a/iiTweak-Readme.txt b/iiTweak-Readme.txt index 9331855..a5aae9f 100644 --- a/iiTweak-Readme.txt +++ b/iiTweak-Readme.txt @@ -38,7 +38,7 @@ D) Raise Dead cost E) No Class Requirements This component removes the class stat requirements (e.g. Bards required 12 DEX, 13 INT and 15 CHA). -F) No Class Modifiers +F) No Class Modifiers [BG2/IWD2] This component removes the stat modifiers gained for being a particular class (e.g. Beastmasters suffered -2 STR and -2 CON). G) No Resultant Dual-Class Requirements @@ -56,18 +56,24 @@ J) No Racial Requirements K) No Class Alignment Restrictions This component removes class alignment restrictions. -L) 0 XP Task Awards - Lock Picking +L) 0 XP Task Awards - Lock Picking [BG2] This component will set the XP thieves gain for picking locks to 0. -M) 0 XP Task Awards - Disarm Traps +M) 0 XP Task Awards - Disarm Traps [BG2] This component will set the XP thieves gain for disarming traps to 0. -N) 0 XP Task Awards - Learn Spells +N) 0 XP Task Awards - Learn Spells [BG2] This component will set the XP mages gain for scribing scrolls to 0. -O) Restored Maze Spell +O) Restored Maze Spell [BG2] The game manual, and the in-game description of the effects of the Maze spell differ from the rules (possibly) implemented by the game. This component restores the Maze spell to use the settings referred to by the description and manual. +P) No Item Stat Requirements + This component removes the stat requirements from all items (e.g. Bastard Swords required 11 Strength). + +Q) Fully Explored Areas + This component reveals areas as soon as the Player enters them. Note that the area is explored, but the Fog Of War remains. + +) Section 4. Known Issues ========================== It is unknown if/how the tweaks will affect Planescape: Torment. @@ -80,7 +86,7 @@ iiTweak would have taken a lot longer to produce without: + IESDP - http://iesdp.gibberlings3.net/ - + WeiDu - http://www.weidu.org + + WeiDU - http://www.weidu.org Special thanks to Westly Weimer, for implementing WeiDU feature requests. diff --git a/iiTweak/English/Setup.tra b/iiTweak/English/Setup.tra index 0f4f36c..f892816 100644 --- a/iiTweak/English/Setup.tra +++ b/iiTweak/English/Setup.tra @@ -13,3 +13,5 @@ @13 = ~0 XP Task Awards - Disarm Traps~ @14 = ~0 XP Task Awards - Learn Spells~ @15 = ~Restored Maze Spell~ +@16 = ~No Item Stat Requirements~ +@17 = ~Fully Explored Areas~ diff --git a/iiTweak/baf/explore.baf b/iiTweak/baf/explore.baf new file mode 100644 index 0000000..1d00d47 --- /dev/null +++ b/iiTweak/baf/explore.baf @@ -0,0 +1,7 @@ +IF + Global("iiExplored","MYAREA",0) +THEN + RESPONSE #100 + Explore() + SetGlobal("iiExplored","MYAREA",1) +END \ No newline at end of file diff --git a/iiTweak/iiTweak.tp2 b/iiTweak/iiTweak.tp2 index 0cfe69a..1521594 100644 --- a/iiTweak/iiTweak.tp2 +++ b/iiTweak/iiTweak.tp2 @@ -218,3 +218,23 @@ BEGIN @15 SET_2DA_ENTRY 11 4 1 ~5~ SET_2DA_ENTRY 2 0 1 ~~ + +// ------------------------------------------------------------------------------------------------------------------------ +// No Item Stat Requirements +BEGIN @16 +COPY_EXISTING_REGEXP GLOB ~.*\.itm~ ~override~ + WRITE_BYTE 0x24 0 // Level + WRITE_BYTE 0x26 0 // Strength + WRITE_BYTE 0x28 0 // Strength Bonus + WRITE_BYTE 0x2a 0 // Intelligence + WRITE_BYTE 0x2c 0 // Dexterity + WRITE_BYTE 0x2e 0 // Wisdom + WRITE_BYTE 0x30 0 // Constitution + WRITE_BYTE 0x32 0 // Charisma + BUT_ONLY_IF_IT_CHANGES + +// ------------------------------------------------------------------------------------------------------------------------ +// Fully Explored Areas +BEGIN @17 + EXTEND_TOP ~dplayer3.bcs~ ~iitweak/baf/explore.baf~ + EXTEND_TOP ~dplayer2.bcs~ ~iitweak/baf/explore.baf~ \ No newline at end of file