Skip to content

[(BG2, BGEE) bug] Seeking Sword damage (0824)

CamDawgCamDawg Member, Developer Posts: 3,438
edited September 2012 in Fixed
Per its descript, the Helmite Seeking Sword should do 2-8 (2d4) damage. It's actually doing 1-8 (1d8):
/// The Priest of Helm's Sword of Seeking should do 2d4 damage, not 1d8 (by Wisp)
COPY_EXISTING ~sw1hseek.itm~ ~override~
READ_LONG 0x64 abil_off ELSE 0
READ_SHORT 0x68 abil_num ELSE 0
FOR (index = 0; index < abil_num; index += 1) BEGIN
READ_SHORT (%abil_off% + (0x38 * %index%)) type
PATCH_IF %type% = 1 BEGIN //Melee ability check
WRITE_SHORT (%abil_off% + 0x16 + (0x38 * %index%)) 4 //Die size
WRITE_SHORT (%abil_off% + 0x18 + (0x38 * %index%)) 2 //Number of dice
END
END
BUT_ONLY_IF_IT_CHANGES
Post edited by Bhryaen on
Tanthalas

Comments

Sign In or Register to comment.