12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- --[[
- Script Name : SpawnScripts/Commonlands/anemptysmugglingcrate.lua
- Script Author : Premierio015
- Script Date : 2021.03.29 09:03:46
- Script Purpose :
- :
- --]]
- local QUEST = 453 -- Crates on the Nerves Quest
- function spawn(NPC)
- SetPlayerProximityFunction(NPC, 10, "SpawnAccess", "SpawnAccess")
- end
- function SpawnAccess(NPC, Spawn)
- if GetQuestStep(Spawn, QUEST) == 3 then
- SpawnSet(NPC, "show_command_icon", 1)
- SpawnSet(NPC, "display_hand_icon", 1)
- elseif not HasQuest(Spawn, QUEST) then
- SpawnSet(NPC, "show_command_icon", 0)
- SpawnSet(NPC, "display_hand_icon", 0)
- end
- end
- function casted_on(NPC, Spawn, SpellName)
- if HasQuest(Spawn, QUEST) and GetQuestStep(Spawn, QUEST) == 3 then
- if SpellName == 'Sprinkle Tracking Powder' then
- ApplySpellVisual(Spawn, 568)
- SpawnSet(NPC, "visual_state", 17432)
- AddTimer(NPC, 10000, "return_state", 1, Spawn)
- AddStepProgress(Spawn, QUEST, 3, 1)
- end
- end
- end
-
-
- function return_state(NPC, Spawn)
- SpawnSet(NPC, "visual_state", 0)
- end
-
-
- function respawn(NPC)
- spawn(NPC)
- end
|