Class PestControlPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.pestcontrol.PestControlPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Pest Control", description="Show helpful information for the Pest Control minigame", tags={"minigame","overlay"}) public class PestControlPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description PestControlPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onChatMessage(net.runelite.api.events.ChatMessage chatMessage)
void
onGameStateChanged(net.runelite.api.events.GameStateChanged event)
void
onNpcDespawned(net.runelite.api.events.NpcDespawned event)
void
onNpcSpawned(net.runelite.api.events.NpcSpawned 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
-
onGameStateChanged
@Subscribe public void onGameStateChanged(net.runelite.api.events.GameStateChanged event)
-
onChatMessage
@Subscribe public void onChatMessage(net.runelite.api.events.ChatMessage chatMessage)
-
onNpcSpawned
@Subscribe public void onNpcSpawned(net.runelite.api.events.NpcSpawned event)
-
onNpcDespawned
@Subscribe public void onNpcDespawned(net.runelite.api.events.NpcDespawned event)
-
-