Class PartyPlugin
- java.lang.Object
-
- net.runelite.client.plugins.Plugin
-
- net.runelite.client.plugins.party.PartyPlugin
-
- All Implemented Interfaces:
com.google.inject.Module
@PluginDescriptor(name="Party", configName="PartyPlugin2", description="Party management and basic info", enabledByDefault=false) public class PartyPlugin extends Plugin
-
-
Constructor Summary
Constructors Constructor Description PartyPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(com.google.inject.Binder binder)
Map<Long,PartyData>
getPartyDataMap()
List<PartyTilePingData>
getPendingTilePings()
void
onCommandExecuted(CommandExecuted commandExecuted)
void
onConfigChanged(ConfigChanged event)
void
onFocusChanged(FocusChanged focusChanged)
void
onGameStateChanged(GameStateChanged event)
void
onGameTick(GameTick event)
void
onLocationUpdate(LocationUpdate event)
void
onMenuOptionClicked(MenuOptionClicked event)
void
onPartyChanged(PartyChanged event)
void
onPartyMemberAvatar(PartyMemberAvatar event)
void
onStatusUpdate(StatusUpdate event)
void
onTilePing(TilePing event)
void
onUserJoin(UserJoin event)
void
onUserPart(UserPart event)
void
onUserSync(UserSync event)
PartyConfig
provideConfig(ConfigManager configManager)
void
scheduledTick()
protected void
shutDown()
protected void
startUp()
-
Methods inherited from class net.runelite.client.plugins.Plugin
equals, getInjector, getName, hashCode, resetConfiguration
-
-
-
-
Method Detail
-
configure
public void configure(com.google.inject.Binder binder)
-
startUp
protected void startUp() throws Exception
-
shutDown
protected void shutDown() throws Exception
-
provideConfig
@Provides public PartyConfig provideConfig(ConfigManager configManager)
-
onFocusChanged
@Subscribe public void onFocusChanged(FocusChanged focusChanged)
-
onConfigChanged
@Subscribe public void onConfigChanged(ConfigChanged event)
-
onMenuOptionClicked
@Subscribe public void onMenuOptionClicked(MenuOptionClicked event)
-
onGameStateChanged
@Subscribe public void onGameStateChanged(GameStateChanged event)
-
onTilePing
@Subscribe public void onTilePing(TilePing event)
-
scheduledTick
public void scheduledTick()
-
onGameTick
@Subscribe public void onGameTick(GameTick event)
-
onStatusUpdate
@Subscribe public void onStatusUpdate(StatusUpdate event)
-
onLocationUpdate
@Subscribe public void onLocationUpdate(LocationUpdate event)
-
onUserJoin
@Subscribe public void onUserJoin(UserJoin event)
-
onUserSync
@Subscribe public void onUserSync(UserSync event)
-
onUserPart
@Subscribe public void onUserPart(UserPart event)
-
onPartyChanged
@Subscribe public void onPartyChanged(PartyChanged event)
-
onCommandExecuted
@Subscribe public void onCommandExecuted(CommandExecuted commandExecuted)
-
onPartyMemberAvatar
@Subscribe public void onPartyMemberAvatar(PartyMemberAvatar event)
-
getPendingTilePings
public List<PartyTilePingData> getPendingTilePings()
-
-