Skip to content

Editing amulet of power

milczarpmilczarp Member Posts: 13
Hi,

I'd like to edit amulet of power for my cleric to increase further casting speed bonus. What's the best way to do it ?

Thanks :)

Comments

  • MathsorcererMathsorcerer Member Posts: 3,037
    DLTCEP is a really good way to go but Near Infinity works, as well. Open the amulet, find the "spell casting speed" effect, and set the modifier where you want it.
  • ErgErg Member Posts: 1,756
    milczarp said:

    Hi,

    I'd like to edit amulet of power for my cleric to increase further casting speed bonus. What's the best way to do it ?

    Thanks :)

    Considering that you are asking for the best way (and not necessarily the easiest way) I would recommend WeiDU :)

    For instance to change the casting bonus from 1 to 2, you can do something like

    // delete original casting time bonus
    LPF DELETE_ITEM_EQEFFECT
    INT_VAR
    opcode_to_delete = 189
    END

    // set new casting time bonus
    LAUNCH_PATCH_FUNCTION ~ADD_ITEM_EQEFFECT~
    INT_VAR
    opcode = 189 // Stat: Casting Time Modifier [189]
    parameter1 = 2 // Speed Modifier
    target = 1 // Self
    timing = 2 // While equipped
    resist_dispel = 2 // Not Dispel/Bypass Resistance
    END

  • milczarpmilczarp Member Posts: 13
    edited December 2013
    Thanks guys, DLTCEP did the job :)

    [UPDATE]

    I created my own amulet, however I can't add it to inventory bcz I'm unable to find it in ee keeper.
    So - should I make some additional action to add it to game resources ? .itm file is already in override folder.

    [UPDATE2]

    Nevermind, I added it via console.
    Post edited by milczarp on
Sign In or Register to comment.