--[[ Script Name : SpawnScripts/Graystone/Deadeye.lua Script Purpose : Deadeye Script Author : John Adams/Scatman Script Date : 2009.09.25 Script Notes : --]] dofile("SpawnScripts/Generic/AdvancementGaze.lua") dofile("SpawnScripts/Generic/GenericGuardVoiceOvers.lua") function spawn(NPC) SetPlayerProximityFunction(NPC, 10, "InRange") end function respawn(NPC) spawn(NPC) end function InRange(NPC, Spawn) if GetFactionAmount(Spawn,11)>=5000 then if GetLevel(Spawn) ==8 or GetLevel(Spawn)==9 then ClassCheck(NPC,Spawn) end end CheckFaction(NPC, Spawn, "Qeynos") end function hailed(NPC, Spawn) FaceTarget(NPC, Spawn) GenericGuardHail(NPC, Spawn) end