EQ2EMu/server/SpawnScripts/Generic/hello_emote.lua
Image 548007ea96 Base
Starting point..!
2020-02-28 09:17:24 -05:00

23 lines
No EOL
398 B
Lua

--[[
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