mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
23 lines
No EOL
439 B
Lua
Executable file
23 lines
No EOL
439 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Darklight/ascarwurm.lua
|
|
Script Author : Foof
|
|
Script Date : 2013.11.17
|
|
Script Purpose :
|
|
--]]
|
|
|
|
require"SpawnScripts/Generic/generic_fish_movement"
|
|
|
|
function spawn(NPC)
|
|
local choice = math.random(1,2)
|
|
if choice == 1 then
|
|
SpawnSet(NPC, "model_type", "197")
|
|
end
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end |