mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
28 lines
493 B
Lua
Executable file
28 lines
493 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/RylecsTest/RylecsGoodies.lua
|
|
Script Author : TyroneSWG
|
|
Script Date : 2021.01.28 05:01:14
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function spawn(NPC)
|
|
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
--Say(NPC, "Oh wise creature, what do you seek?")
|
|
--ToggleFollow(NPC)
|
|
|
|
|
|
end
|
|
|
|
function targeted(Spawn, Spawn)
|
|
Say(NPC, "Don't I look pretty today..")
|
|
end
|
|
|
|
function respawn(NPC)
|
|
|
|
end
|
|
|