Class ScreenshotPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.screenshot.ScreenshotPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Screenshot", description="Enable the manual and automatic taking of screenshots", tags={"external","images","imgur","integration","notifications"}) public class ScreenshotPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description ScreenshotPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onActorDeath(net.runelite.api.events.ActorDeath actorDeath)
void
onChatMessage(net.runelite.api.events.ChatMessage event)
void
onGameTick(net.runelite.api.events.GameTick event)
void
onPlayerLootReceived(PlayerLootReceived playerLootReceived)
void
onScriptCallbackEvent(net.runelite.api.events.ScriptCallbackEvent e)
void
onWidgetLoaded(net.runelite.api.events.WidgetLoaded event)
protected void
shutDown()
protected void
startUp()
-
Methods inherited from class net.runelite.client.plugins.Plugin
configure, getInjector, getName, resetConfiguration
-
-
-
-
Method Detail
-
startUp
protected void startUp() throws Exception
-
shutDown
protected void shutDown() throws Exception
-
onGameTick
@Subscribe public void onGameTick(net.runelite.api.events.GameTick event)
-
onActorDeath
@Subscribe public void onActorDeath(net.runelite.api.events.ActorDeath actorDeath)
-
onPlayerLootReceived
@Subscribe public void onPlayerLootReceived(PlayerLootReceived playerLootReceived)
-
onScriptCallbackEvent
@Subscribe public void onScriptCallbackEvent(net.runelite.api.events.ScriptCallbackEvent e)
-
onChatMessage
@Subscribe public void onChatMessage(net.runelite.api.events.ChatMessage event)
-
onWidgetLoaded
@Subscribe public void onWidgetLoaded(net.runelite.api.events.WidgetLoaded event)
-
-