Class TwitchPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.twitch.TwitchPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
,TwitchListener
@PluginDescriptor(name="Twitch", description="Integrates Twitch chat", enabledByDefault=false) public class TwitchPlugin extends Plugin implements TwitchListener
-
-
Constructor Summary
Constructors Constructor Description TwitchPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkClient()
void
onConfigChanged(ConfigChanged configChanged)
void
onScriptCallbackEvent(ScriptCallbackEvent scriptCallbackEvent)
void
privmsg(String source, 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, equals, getInjector, getName, hashCode, resetConfiguration
-
-
-
-
Method Detail
-
checkClient
public void checkClient()
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged configChanged)
-
privmsg
public void privmsg(String source, 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
-
onScriptCallbackEvent
@Subscribe public void onScriptCallbackEvent(ScriptCallbackEvent scriptCallbackEvent)
-
-