mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
21 lines
No EOL
541 B
Lua
Executable file
21 lines
No EOL
541 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Antonica/widgetstarwispflour.lua
|
|
Script Author : Dorbin
|
|
Script Date : 2023.05.15 05:05:40
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
function spawn(NPC)
|
|
SetRequiredQuest(NPC, 5830, 1)
|
|
end
|
|
|
|
function casted_on(NPC, Spawn,SpellName)
|
|
if SpellName == 'Grab Flour' and GetQuestStep( Spawn, 5830)==1 then
|
|
SendMessage(Spawn,"You grab a couple handfuls of milled flour.")
|
|
SetStepComplete(Spawn,5830,1)
|
|
end
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |