mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
26 lines
No EOL
630 B
Lua
Executable file
26 lines
No EOL
630 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/LongshadowAlley/aseethingdarkelf.lua
|
|
Script Purpose : a seething darkelf
|
|
Script Author : torsten
|
|
Script Date : 2022.07.20
|
|
Script Notes : Auto-Generated Conversation from PacketParser Data
|
|
--]]
|
|
|
|
function spawn(NPC)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
RandomGreeting(NPC, Spawn)
|
|
end
|
|
|
|
function RandomGreeting(NPC, Spawn)
|
|
local choice = MakeRandomInt(1,1)
|
|
|
|
if choice == 1 then
|
|
PlayFlavor(NPC, "", "My fellow child of Innoruuk, come! Help us praise his name and revel in the deaths of the inferior.", "", 0, 0, Spawn, 0)
|
|
end
|
|
end |