Class TwitchPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.twitch.TwitchPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
,ChatboxInputListener
,TwitchListener
@PluginDescriptor(name="Twitch", description="Integrates Twitch chat", enabledByDefault=false) public class TwitchPlugin extends Plugin implements TwitchListener, ChatboxInputListener
-
-
Constructor Summary
Constructors Constructor Description TwitchPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkClient()
boolean
onChatboxInput(ChatboxInput chatboxInput)
void
onConfigChanged(ConfigChanged configChanged)
boolean
onPrivateMessageInput(PrivateMessageInput privateMessageInput)
void
privmsg(Map<String,String> tags, String message)
void
roomstate(Map<String,String> tags)
protected void
shutDown()
protected void
startUp()
void
usernotice(Map<String,String> tags, String message)
-
Methods inherited from class net.runelite.client.plugins.Plugin
configure, getInjector, getName, resetConfiguration
-
-
-
-
Method Detail
-
checkClient
public void checkClient()
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged configChanged)
-
privmsg
public void privmsg(Map<String,String> tags, String message)
- Specified by:
privmsg
in interfaceTwitchListener
-
roomstate
public void roomstate(Map<String,String> tags)
- Specified by:
roomstate
in interfaceTwitchListener
-
usernotice
public void usernotice(Map<String,String> tags, String message)
- Specified by:
usernotice
in interfaceTwitchListener
-
onChatboxInput
public boolean onChatboxInput(ChatboxInput chatboxInput)
- Specified by:
onChatboxInput
in interfaceChatboxInputListener
-
onPrivateMessageInput
public boolean onPrivateMessageInput(PrivateMessageInput privateMessageInput)
- Specified by:
onPrivateMessageInput
in interfaceChatboxInputListener
-
-