Event id for joining or leaving a friend chat channel. Calls the OnFriendChannelTransmitCallback.
-- Create a functionlocal friendChannelTransmit = function() osrs.print("Entered or left a friend chat channel")end-- Subscribe to the functionosrs.Events.subscribe(friendChannelTransmit, osrs.Events.ON_FRIEND_CHANNEL_TRANSMIT) Copy
-- Create a functionlocal friendChannelTransmit = function() osrs.print("Entered or left a friend chat channel")end-- Subscribe to the functionosrs.Events.subscribe(friendChannelTransmit, osrs.Events.ON_FRIEND_CHANNEL_TRANSMIT)
Event id for joining or leaving a friend chat channel. Calls the OnFriendChannelTransmitCallback.
Example