Package net.runelite.client.game
Class LootManager
- java.lang.Object
-
- net.runelite.client.game.LootManager
-
@Singleton public class LootManager extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<ItemStack>
getItemSpawns(WorldPoint worldPoint)
Get the list of items present at the provided WorldPoint that spawned this tick.void
onAnimationChanged(AnimationChanged e)
void
onGameTick(GameTick gameTick)
void
onItemDespawned(ItemDespawned itemDespawned)
void
onItemSpawned(ItemSpawned itemSpawned)
void
onNpcChanged(NpcChanged npcChanged)
void
onNpcDespawned(NpcDespawned npcDespawned)
void
onPlayerDespawned(PlayerDespawned playerDespawned)
-
-
-
Method Detail
-
onNpcDespawned
@Subscribe public void onNpcDespawned(NpcDespawned npcDespawned)
-
onPlayerDespawned
@Subscribe public void onPlayerDespawned(PlayerDespawned playerDespawned)
-
onItemSpawned
@Subscribe public void onItemSpawned(ItemSpawned itemSpawned)
-
onItemDespawned
@Subscribe public void onItemDespawned(ItemDespawned itemDespawned)
-
onAnimationChanged
@Subscribe public void onAnimationChanged(AnimationChanged e)
-
onNpcChanged
@Subscribe public void onNpcChanged(NpcChanged npcChanged)
-
onGameTick
@Subscribe public void onGameTick(GameTick gameTick)
-
getItemSpawns
public Collection<ItemStack> getItemSpawns(WorldPoint worldPoint)
Get the list of items present at the provided WorldPoint that spawned this tick.- Parameters:
worldPoint
- the location in question- Returns:
- the list of item stacks
-
-