mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
22 lines
No EOL
534 B
Lua
Executable file
22 lines
No EOL
534 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/CrowsTomb/RollustheSly.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2021.10.04 06:10:30
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function spawn(NPC)
|
|
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
local conversation = CreateConversation()
|
|
AddConversationOption(conversation, "What? Nevermind.")
|
|
StartConversation(conversation, NPC, Spawn, "To the void with you! You made me coin purse lighter!")
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |