Class FishingPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.fishing.FishingPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Fishing", description="Show fishing stats and mark fishing spots", tags={"overlay","skilling"}) @PluginDependency(XpTrackerPlugin.class) @Singleton public class FishingPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description FishingPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onChatMessage(ChatMessage event)
void
onGameStateChanged(GameStateChanged gameStateChanged)
void
onGameTick(GameTick event)
void
onInteractingChanged(InteractingChanged event)
void
onItemContainerChanged(ItemContainerChanged event)
void
onNpcDespawned(NpcDespawned npcDespawned)
void
onNpcSpawned(NpcSpawned event)
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
-
onGameStateChanged
@Subscribe public void onGameStateChanged(GameStateChanged gameStateChanged)
-
onItemContainerChanged
@Subscribe public void onItemContainerChanged(ItemContainerChanged event)
-
onChatMessage
@Subscribe public void onChatMessage(ChatMessage event)
-
onInteractingChanged
@Subscribe public void onInteractingChanged(InteractingChanged event)
-
onGameTick
@Subscribe public void onGameTick(GameTick event)
-
onNpcSpawned
@Subscribe public void onNpcSpawned(NpcSpawned event)
-
onNpcDespawned
@Subscribe public void onNpcDespawned(NpcDespawned npcDespawned)
-
onWidgetLoaded
@Subscribe public void onWidgetLoaded(WidgetLoaded event)
-
-