Temple+ New Feats

Discussion in 'General Modification' started by WinstonShnozwick, Sep 18, 2016.

Remove all ads!
  1. Sitra Achara

    Sitra Achara Senior Member

    Joined:
    Sep 1, 2003
    Messages:
    3,613
    Likes Received:
    537
    Hmm, the sounds are probably using one of the snd files for look-up.
    Not sure about animations, will have to check when back home.
     
  2. WinstonShnozwick

    WinstonShnozwick Established Member

    Joined:
    Mar 2, 2011
    Messages:
    628
    Likes Received:
    23
    I prevented double damage bonus by using a different bonus type to not stack them, but if I hold a mind blade in one hand and a non mind blade in a different hand, I get the bonus in the primary and offhand, not just the one hand that holds the mind blade.
     
  3. Sitra Achara

    Sitra Achara Senior Member

    Joined:
    Sep 1, 2003
    Messages:
    3,613
    Likes Received:
    537
    Winston, I already told you what you can do a few posts above... why do you insist on roundabout methods?
     
  4. HeJason

    HeJason JK2 Deity

    Joined:
    Aug 28, 2006
    Messages:
    283
    Likes Received:
    0
    Any plan on implementing this in the future?
     
  5. Sitra Achara

    Sitra Achara Senior Member

    Joined:
    Sep 1, 2003
    Messages:
    3,613
    Likes Received:
    537
    It's a bit of a mess to implement, maybe later.
     
  6. Allyx

    Allyx Master Crafter Global Moderator Supporter

    Joined:
    Dec 2, 2004
    Messages:
    5,001
    Likes Received:
    250
    I think I figured out why OF_OFF did nothing, the object needs to have the OF_OFF object property set in it's protos to work, I had a similar problem with Hrothgar in my IWD mod until I set that flag on him, now he turns on/off as he should (IE when he dies on another map).

    You would need to script the on/off command somehow EG...
    Code:
    def san_first_heartbeat( attachee, triggerer ):
        if (game.global_flags[20] == 1):
            attachee.object_flag_set(OF_OFF)
        if (game.global_flags[20] == 0):
            attachee.object_flag_unset(OF_OFF)
        return RUN_DEFAULT
     
Our Host!