use of com.denizenscript.denizen.objects.NPCTag in project Denizen-For-Bukkit by DenizenScript.
the class NPCNavigationScriptEvent method navCancel.
@EventHandler
public void navCancel(NavigationCancelEvent event) {
npc = new NPCTag(event.getNPC());
type = "cancels";
fire(event);
}
use of com.denizenscript.denizen.objects.NPCTag in project Denizen-For-Bukkit by DenizenScript.
the class NPCSpawnScriptEvent method onNPCSpawn.
@EventHandler
public void onNPCSpawn(NPCSpawnEvent event) {
this.npc = new NPCTag(event.getNPC());
location = new LocationTag(event.getLocation());
this.event = event;
fire(event);
}
Aggregations