OSRS Plugin API
    Preparing search index...

    Function clearAnimationOverridesAll

    • Clears all currently set animation overrides. Check game vals documentation to see what animations line up with what id.

      Parameters

      • Optionalverbose: boolean

        Causes the function to print the amount of overrides cleared away.

      Returns void

      -- Scrambles some animations through overrides
      osrs.setAnimationOverride(866, 865)
      osrs.setAnimationOverride(865, 834)
      osrs.setAnimationOverride(812, 865)
      osrs.setAnimationOverride(821, 822)

      -- Negates the previous animation overrides
      -- Prints (assuming no other animations have been overridden outside of this example): Cleared all overrides, Count: 4.
      osrs.clearAnimationOverridesAll(true)