0 of 0

File information

Last updated

Original upload

Created by

KirbonatedBeverage

Uploaded by

KirbonatedBeverage

Virus scan

Safe to use

Mod articles

  • Custom Events Breakdown

    MWSE Perk Framework is designed to send and receive certain custom events.

    KBPerks:activatePerk
    Sent just before a perk is activated. Can be blocked to prevent a perk from activating
    Properties:
    id - (string) the string ID of the perk to be activated


    KBPerks:perkActivated
    Sent when after a perk has been successfully activated.
    Properties:
    perk - (string) the string ID of the perk that was activated

    KBPerks:deactivatePerk
    Sent just before a perk is deactivated. Can be blocked to prevent a perk from deactivating
    Properties:
    id - (string) the string ID of the perk to be deactivated


    KBPerks:perkDeactivated
    Sent when after a perk has been successfully deactivated.
    Proper...