Skip to content

Commit

Permalink
V6
Browse files Browse the repository at this point in the history
  • Loading branch information
btigi committed Nov 19, 2006
1 parent 568c5bd commit e6fda39
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 13 deletions.
Binary file modified Setup-iiTweak.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion iiTweak/English/Setup.tra
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@18 = ~Zero Weight Items~
@19 = ~Remove Cursed Item Flag (remove information string)~
@20 = ~Remove Cursed Item Flag (maintain information string)~
@21 = ~CursedFlagGroup~
@21 = ~Cursed Item Tweak~
@22 = ~Cursed item equipped~

@100 = ~View Readme~
Expand Down
8 changes: 5 additions & 3 deletions iiTweak/Readme-iiTweak.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
iiTweak 5.00
iiTweak 6.00
------------

+) Contents
Expand Down Expand Up @@ -33,7 +33,7 @@ B) No Item Exclusion
This component removes the restriction of wearing similar items (e.g. with this component it is possible to wear two Rings of Protection +1).

C) Equal Starting Gold
This component gives all classes an equal chance of starting the game with the same amount of gold. The amount of gold given to the player is dictated bythe formula (5d4 +1) *10.
This component gives all classes an equal chance of starting the game with the same amount of gold. The amount of gold given to the player is dictated by the formula (5d4 +1) *10.

D) Raise Dead cost
This component alters the cost of the "Raise Dead" spell at Temples. The cost of raising someone is now 1000 * the dead characters level (e.g. 1000gp for a level 1 character and 40,000gp for a level 40 character).
Expand Down Expand Up @@ -93,9 +93,11 @@ If you find any errors, please let me know immediately, specifying as much as yo

+) Section 5. Version History
=============================
V5 [24/09/2006]
V5 [19/11/2006]
- Added Zero Weight Items
- Added Remove Cursed Item Flag
- Updated to WeiDU 197
- Added filesize checking for 'Zero Weight Items' and 'No Item Stat Requirements' components


+) Section 6. Thanks to
Expand Down
22 changes: 13 additions & 9 deletions iiTweak/iiTweak.tp2
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,16 @@ BEGIN @15
// 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
PATCH_IF (SOURCE_SIZE > 0x71) THEN BEGIN // protects against invalid files
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
END
BUT_ONLY_IF_IT_CHANGES

// ------------------------------------------------------------------------------------------------------------------------
Expand All @@ -261,7 +263,9 @@ BEGIN @17
// Zero Weight Items
BEGIN @18
COPY_EXISTING_REGEXP GLOB ~.*\.itm~ ~override~
WRITE_LONG 0x4c 0 // Weight
PATCH_IF (SOURCE_SIZE > 0x71) THEN BEGIN // protects against invalid files
WRITE_LONG 0x4c 0 // Weight
END
BUT_ONLY_IF_IT_CHANGES

// ------------------------------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit e6fda39

Please sign in to comment.