Turns off the highlight on the specified object, if highlighted.
ID of the object type to disable. Integer.
The coordinate of the object in a bit packed form. Integer
The highlight channel [1-32]. Positive integer.
Flag to use source coordinates instead of world coordinates.
-- 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) Copy
-- 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)
Turns off the highlight on the specified object, if highlighted.