Skip to content

[(BG2, BGEE) Bug] Entangle

CamDawgCamDawg Member, Developer Posts: 3,438
edited August 2012 in Fixed
Entangle should be providing a +3 bonus to saves per its descript, but is currently providing no bonus.
// entangle doesn't have its listed save bonus for target
COPY_EXISTING ~sppr105.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 // look through abilities
READ_SHORT ("%abil_off%" + 0x1e) "abil_fx_num"
READ_SHORT ("%abil_off%" + 0x20) "abil_fx_idx"
FOR (index2 = 0 ; index2 < abil_fx_num ; index2 = index2 + 1) BEGIN
WRITE_LONG ("%fx_off%" + 0x28 + (0x30 * ("%abil_fx_idx%" + "%index2%"))) 3 // save bonus
END
END
BUT_ONLY_IF_IT_CHANGES
Post edited by Bhryaen on

Comments

  • CorianderCoriander Member Posts: 1,667
    I can throw this in real quick like.
  • NathanNathan Member Posts: 1,007
    Verified that this was quickly thrown in. Should be present in the next build.
  • Avenger_teambgAvenger_teambg Member, Developer Posts: 5,862
    Confirmed fixed - bonus is in place for all effects.
  • BhryaenBhryaen Member Posts: 2,874
    Confirmed Fixed:

    NI shows all the Spell ability/ Effects for SPPR105 as having:

    Savetype: ( Save vs spells(0) )
    Save Bonus: 3
Sign In or Register to comment.