mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
21 lines
No EOL
472 B
Lua
Executable file
21 lines
No EOL
472 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Antonica/arestlessCaltorsiteCamp.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2023.02.01 08:02:30
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
RandomMovement(NPC, Spawn, 4, -4, 2, 0, 0)
|
|
end
|
|
|
|
function respawn(NPC, Spawn)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end |