DeadZone Community Packages
    Preparing search index...

    Interface ConfigChanged

    Game event data, refer to GameEventType enum to find supported events

    interface ConfigChanged {
        getKey(): string;
        getProfile(): string;
        getGroup(): string;
        getOldValue(): string;
        getNewValue(): string;
    }
    Index

    Methods

    • The unique key associated with this config item within its group

      Returns string

    • The runelite profile associated with this change

      Returns string

    • The group this config item belongs to. For community packages, the group for a specific package is stored as 'DeadZone.{packageID}'

      Returns string

    • The old value of the config item

      Returns string

    • The new value of the config item

      Returns string