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 voidonActorDeath(net.runelite.api.events.ActorDeath actorDeath)voidonAnimationChanged(net.runelite.api.events.AnimationChanged animationChanged)voidonChatMessage(net.runelite.api.events.ChatMessage event)voidonGameTick(net.runelite.api.events.GameTick event)voidonPlayerLootReceived(PlayerLootReceived playerLootReceived)voidonScriptCallbackEvent(net.runelite.api.events.ScriptCallbackEvent e)voidonScriptPreFired(net.runelite.api.events.ScriptPreFired scriptPreFired)voidonWidgetLoaded(net.runelite.api.events.WidgetLoaded event)protected voidshutDown()protected voidstartUp()-
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(net.runelite.api.events.GameTick event)
-
onActorDeath
@Subscribe public void onActorDeath(net.runelite.api.events.ActorDeath actorDeath)
-
onAnimationChanged
@Subscribe public void onAnimationChanged(net.runelite.api.events.AnimationChanged animationChanged)
-
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)
-
onScriptPreFired
@Subscribe public void onScriptPreFired(net.runelite.api.events.ScriptPreFired scriptPreFired)
-
-