OSRS Plugin API
    Preparing search index...

    Function highlightNpcTypeChannelActive

    • Finds if the specified npc type has been highlighted through the specified channel.

      Parameters

      • typeId: number

        The id of the specified npc type. Integer.

      • channelId: number

        The id of the specified highlight channel [1-32]. Positive Integer.

      Returns boolean

      Whether the specified npc type has been highlighted through the specified channel. If specified channel does not exist this is also false.

      osrs.ClientOp.highlightNpcTypeOn(522, 12)

      -- Prints: true
      osrs.print(tostring(osrs.ClientOp.highlightNpcTypeChannelActive(522, 12)))

      osrs.ClientOp.highlightNpcTypeOff(522, 12)

      -- Prints: false
      osrs.print(tostring(osrs.ClientOp.highlightNpcTypeChannelActive(522, 12)))