EQ2EMu/server/SpawnScripts/Commonlands/ariverbankmushroom.lua
2022-06-05 13:50:31 -07:00

39 lines
977 B
Lua
Executable file

--[[
Script Name : SpawnScripts/Commonlands/ariverbankmushroom.lua
Script Author : Premierio015
Script Date : 2021.02.21 11:02:56
Script Purpose :
:
--]]
QUEST = 454
function spawn(NPC)
SetPlayerProximityFunction(NPC, 10, "SpawnAccess", "SpawnAccess")
AddSpawnAccess(NPC, NPC)
end
function casted_on(NPC, Spawn, SpellName)
if HasQuest(Spawn, QUEST) and GetQuestStep(Spawn, QUEST) == 1 or GetQuestStep(Spawn, QUEST) == 2 or GetQuestStep(SPAWN, QUEST) == 3 then
if SpellName == 'Gathering' then
AddStepProgress(Spawn, QUEST, 2, 1)
Despawn(NPC)
end
end
end
function SpawnAccess(NPC, Spawn)
if HasQuest(Spawn, QUEST) and GetQuestStep(Spawn, QUEST) == 1 or GetQuestStep(Spawn, QUEST) == 2 or GetQuestStep(Spawn, QUEST) == 3 then
AddSpawnAccess(NPC, Spawn)
else
RemoveSpawnAccess(NPC, Spawn)
end
end
function respawn(NPC)
spawn(NPC)
end