Log In
Sign Up
Go Gold
Home
Forum
Mail
Downloads
Game Search
Macro Editor
Notes
Membership
#_Tunare.lua - Quest File
General Info
Quest File
-- #_Tunare NPCID: 127001 -- This is Tunare up in her tree. function event_combat(e) if (e.joined) then -- spawn #tunare to fight eq.spawn2(127098,0,0,-247,1609,-40,424); -- needs_heading_validation call_zone_to_assist(e.other); eq.depop_with_timer(); end end function call_zone_to_assist(e_other) -- set to true to enable debug messages local show_debug = false; -- grab the entity list local entity_list = eq.get_entity_list(); -- aggro the zone onto whoever attacked me. -- do not aggro these mobs #_Tunare (127001), #Tunare (127098), a_warm_light (127004) -- #BouncerMan (127097), Flighty_Viridian_Wisp (127105) local exclude_npc_list = Set {127001,127004,127097,127098,127105}; local npc_list = entity_list:GetNPCList(); if (npc_list ~= nil) then for npc in npc_list.entries do if (exclude_npc_list[npc:GetNPCTypeID()] == nil) then -- npc.valid will be true if the NPC is actually spawned if (npc.valid) then npc:AddToHateList(e_other,1); if (show_debug) then e_other:Message(4,"NPCID: " .. npc:GetNPCTypeID() .. " is valid, adding hate on " .. npc:GetName() .. "."); end else if (show_debug) then e_other:Message(4,"NPCID: " .. npc:GetNPCTypeID() .. " is invalid, unable to add hate on " .. npc:GetName() .. "."); end end else if (show_debug) then e_other:Message(4,"NPCID: " .. npc:GetNPCTypeID() .. " is excluded, not adding hate on " .. npc:GetName() .. "."); end end end end end -- Set function example from Programming In Lua -- http://www.lua.org/pil/11.5.html function Set (list) local set = {} for _, l in ipairs(list) do set[l] = true end return set end
Source: 17 Jan 2022
Quest Source: 28 May 2022