Skip to content

[(BGEE, BG2) bug] Polymorph other

CamDawgCamDawg Member, Developer Posts: 3,438
edited August 2012 in Fixed
Per its description, Polymorph Other has a save for negation, however a +2 save bonus is being used in the spell. This fix will also cover the polymorph other wild surge:
// poly other shouldn't have save bonuses
COPY_EXISTING ~spwi415.spl~ ~override~
~spwm183.spl~ ~override~
READ_LONG 0x64 "abil_off"
READ_SHORT 0x68 "abil_num"
READ_LONG 0x6a "fx_off"
FOR ("index" = 0; "%index%" < "%abil_num%"; "index" = ("%index%" + 1)) BEGIN
READ_SHORT ("%abil_off%" + 0x1e + (0x28 * "%index%")) "abil_fx_num"
READ_SHORT ("%abil_off%" + 0x20 + (0x28 * "%index%")) "abil_fx_idx"
FOR (loops = abil_fx_num ; loops > 0 ; loops = loops - 1) BEGIN
WRITE_LONG ("%fx_off%" + 0x28 + (0x30 * ("%abil_fx_idx%" + ("%loops%" - 1)))) 0 // save bonus
END
END
BUT_ONLY_IF_IT_CHANGES
Post edited by Bhryaen on

Comments

  • KeithSKeithS Member Posts: 623
    Adding...
  • NathanNathan Member Posts: 1,007
    Verified, this fix has been integrated internally and should be present in the next build.
  • Avenger_teambgAvenger_teambg Member, Developer Posts: 5,862
    Confirmed plyrate set to 1
    confirmed spells saving throw adjustment zeroed out.
  • BhryaenBhryaen Member Posts: 2,874
    edited August 2012
    Confirmed Fixed for the OP-
    SPWI415 & SPWM183 both have 0 as the "Save bonus" modifier for all effects (and all set for "Save type" "( (Petrify/Polymorph(4) ).
    Post edited by Bhryaen on
Sign In or Register to comment.