mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
31 lines
No EOL
608 B
Lua
Executable file
31 lines
No EOL
608 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Darklight/searingtrout.lua
|
|
Script Author : fearfx
|
|
Script Date : 2017.01.24 06:01:57
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local ReapingTheBenefits = 188
|
|
|
|
function spawn(NPC)
|
|
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function casted_on(Target, Caster, SpellName)
|
|
if SpellName == "Fishing" then
|
|
Say(Caster, "Fish!")
|
|
if HasQuest(Caster, ReapingTheBenefits) then
|
|
--Say(Caster, "")
|
|
Despawn(Target)
|
|
SummonItem(Caster, 37182)
|
|
end
|
|
end
|
|
end |