Class NpcAggroAreaPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.npcunaggroarea.NpcAggroAreaPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="NPC Aggression Timer", description="Highlights the unaggressive area of NPCs nearby and timer until it becomes active", tags={"highlight","lines","unaggro","aggro","aggressive","npcs","area","slayer"}, enabledByDefault=false) public class NpcAggroAreaPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description NpcAggroAreaPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.runelite.client.plugins.npcunaggroarea.AggressionTimer
getCurrentTimer()
GeneralPath[]
getLinesToDisplay()
net.runelite.api.coords.WorldPoint[]
getSafeCenters()
boolean
isActive()
void
onConfigChanged(ConfigChanged event)
void
onGameStateChanged(net.runelite.api.events.GameStateChanged event)
void
onGameTick(net.runelite.api.events.GameTick 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
-
onNpcSpawned
@Subscribe public void onNpcSpawned(net.runelite.api.events.NpcSpawned event)
-
onGameTick
@Subscribe public void onGameTick(net.runelite.api.events.GameTick event)
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged event)
-
onGameStateChanged
@Subscribe public void onGameStateChanged(net.runelite.api.events.GameStateChanged event)
-
getSafeCenters
public net.runelite.api.coords.WorldPoint[] getSafeCenters()
-
getLinesToDisplay
public GeneralPath[] getLinesToDisplay()
-
isActive
public boolean isActive()
-
getCurrentTimer
public net.runelite.client.plugins.npcunaggroarea.AggressionTimer getCurrentTimer()
-
-