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","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(ActorDeath actorDeath)
void
onChatMessage(ChatMessage event)
void
onGameTick(GameTick event)
void
onPlayerLootReceived(PlayerLootReceived playerLootReceived)
void
onScriptCallbackEvent(ScriptCallbackEvent e)
void
onScriptPreFired(ScriptPreFired scriptPreFired)
void
onWidgetLoaded(WidgetLoaded event)
protected void
shutDown()
protected void
startUp()
-
Methods inherited from class net.runelite.client.plugins.Plugin
configure, equals, getInjector, getName, hashCode, resetConfiguration
-
-
-
-
Method Detail
-
startUp
protected void startUp() throws Exception
-
shutDown
protected void shutDown() throws Exception
-
onGameTick
@Subscribe public void onGameTick(GameTick event)
-
onActorDeath
@Subscribe public void onActorDeath(ActorDeath actorDeath)
-
onPlayerLootReceived
@Subscribe public void onPlayerLootReceived(PlayerLootReceived playerLootReceived)
-
onScriptCallbackEvent
@Subscribe public void onScriptCallbackEvent(ScriptCallbackEvent e)
-
onChatMessage
@Subscribe public void onChatMessage(ChatMessage event)
-
onWidgetLoaded
@Subscribe public void onWidgetLoaded(WidgetLoaded event)
-
onScriptPreFired
@Subscribe public void onScriptPreFired(ScriptPreFired scriptPreFired)
-
-