mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
23 lines
No EOL
468 B
Lua
23 lines
No EOL
468 B
Lua
--[[
|
|
Script Name : SpawnScripts/Commonlands/aDervishthug.lua
|
|
Script Author : LordPazuzu
|
|
Script Date : 2024.01.04 07:01:29
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
require "SpawnScripts/Generic/NPCModule"
|
|
|
|
function spawn(NPC, Spawn)
|
|
NPCModule(NPC, Spawn)
|
|
ogre(NPC)
|
|
DervishThug(NPC)
|
|
IdleAggressive(NPC)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |