mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
20 lines
No EOL
403 B
Lua
Executable file
20 lines
No EOL
403 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Edgewater/BrotherLasca.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2021.07.05 06:07:42
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function spawn(NPC)
|
|
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
PlayFlavor(NPC, "", "Hello there!", "wave", 1689589577, 4560189, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |