mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
23 lines
509 B
Lua
Executable file
23 lines
509 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Commonlands/Zaikik.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2021.03.14 06:03:54
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
ratonga(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
PlayFlavor(NPC, "", "Outside! In the box! Don't be stupid!", "", 1689589577, 4560189)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|