eq2emu-content/SpawnScripts/Generic/hello_emote.lua
2024-10-26 11:37:28 +00:00

23 lines
No EOL
420 B
Lua
Executable file

--[[
Script Name : SpawnScripts/Generic/hello_emote.lua
Script Purpose : performs the hello emote
Script Author : theFoof
Script Date : 2013.9.16
Script Notes :
--]]
function spawn(NPC)
end
function respawn(NPC)
spawn(NPC)
end
function hailed(NPC, Spawn)
FaceTarget(NPC, Spawn)
hello(NPC, Spawn)
end
function hello(NPC, Spawn)
PlayFlavor(NPC, "", "", "hello", 0, 0 , Spawn)
end