OSRS Plugin API
    Preparing search index...

    Type Alias OnStatTransmitCallback

    OnStatTransmitCallback: (stat_table: any) => void

    The callback for Events.ON_STAT_TRANSMIT events

    Type Declaration

      • (stat_table: any): void
      • Parameters

        • stat_table: any

          An array of tables storing data of each updated stat.

          • ["id"] - number: the id number of the stat.
          • ["xp"] - number: the current number of experience points in the current stat.
          • ["value"] - number: the current value of the stat.
          • ["max"] - number: the current maximum value of the stat.

        Returns void