Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
btigi committed Feb 2, 2006
1 parent 6200f80 commit 681917a
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 6 deletions.
Binary file modified Setup-iiTweak.exe
Binary file not shown.
18 changes: 12 additions & 6 deletions iiTweak-Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand All @@ -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.

Expand Down
2 changes: 2 additions & 0 deletions iiTweak/English/Setup.tra
Original file line number Diff line number Diff line change
Expand Up @@ -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~
7 changes: 7 additions & 0 deletions iiTweak/baf/explore.baf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
IF
Global("iiExplored","MYAREA",0)
THEN
RESPONSE #100
Explore()
SetGlobal("iiExplored","MYAREA",1)
END
20 changes: 20 additions & 0 deletions iiTweak/iiTweak.tp2
Original file line number Diff line number Diff line change
Expand Up @@ -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~

0 comments on commit 681917a

Please sign in to comment.