Java Code Examples for net.runelite.api.NpcID#DARK_MAGE
The following examples show how to use
net.runelite.api.NpcID#DARK_MAGE .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RunecraftPlugin.java From plugins with GNU General Public License v3.0 | 5 votes |
@Subscribe private void onNpcSpawned(NpcSpawned event) { final NPC npc = event.getNpc(); if (npc.getId() == NpcID.DARK_MAGE) { darkMage = npc; } }
Example 2
Source File: RunecraftPlugin.java From runelite with BSD 2-Clause "Simplified" License | 5 votes |
@Subscribe public void onNpcSpawned(NpcSpawned event) { final NPC npc = event.getNpc(); if (npc.getId() == NpcID.DARK_MAGE) { darkMage = npc; } }