EQ2EMu/server/SpawnScripts/The Vault of the Fallen/dragoontvexsign.lua
2022-06-05 13:50:31 -07:00

42 lines
No EOL
1 KiB
Lua
Executable file

--[[
Script Name : SpawnScripts/The Vault of the Fallen/dragoontvexsign.lua
Script Author : Premierio015
Script Date : 2021.07.18 08:07:43
Script Purpose :
:
--]]
local TseralithDoorQuest = 5325
function spawn(NPC)
SetPlayerProximityFunction(NPC, 10, "InRange")
end
function InRange(NPC, Spawn)
if HasQuest(Spawn, TseralithDoorQuest) then
AddPrimaryEntityCommand(Spawn, NPC, "inspect", 5, "inspect", "", 100)
SpawnSet(NPC, "show_command_icon", 1)
SpawnSet(NPC, "display_hand_icon", 1)
end
end
function casted_on(NPC, Spawn, SpellName)
if SpellName == "inspect" then
local zone = GetZone(Spawn)
local Dragoon = GetSpawnByLocationID(zone, 133772407)
if Dragoon == nil then
SpawnByLocationID(zone, 133772407)-- Dragoon T'Vex
SetAccessToEntityCommand(Spawn,NPC,"inspect", 0)
SpawnSet(NPC, "show_command_icon", 0)
SpawnSet(NPC, "display_hand_icon", 0)
end
end
end
function respawn(NPC)
spawn(NPC)
end