OSRS Plugin API
    Preparing search index...

    Function highlightObjOff

    • Turns off the highlight on the specified object, if highlighted.

      Parameters

      • typeId: number

        ID of the object type to disable. Integer.

      • coord: number

        The coordinate of the object in a bit packed form. Integer

      • channelId: number

        The highlight channel [1-32]. Positive integer.

      • useSourceCoord: boolean

        Flag to use source coordinates instead of world coordinates.

      Returns void

      -- Disables the highlight of the Pot in Lumbridge castle's kitchen.
      coord = osrs.MapCoord.new(0, (50 * 64) + 9, (50 * 64) + 14)
      osrs.ClientOp.highlightObjOff(osrs.gamevals.objtypes.pot_empty, coord:toBitPacked(), 5, false)