mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
22 lines
No EOL
427 B
Lua
Executable file
22 lines
No EOL
427 B
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/thunderdome/tutorialdrake.lua
|
|
Script Author : Dorbin
|
|
Script Date : 2022.07.31 08:07:05
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function spawn(NPC)
|
|
AddTimer(NPC,3000,"hailed")
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
FaceTarget(NPC, Spawn)
|
|
SendStateCommand(NPC, 10783) -- attack
|
|
-- SendStateCommand(NPC, 65)
|
|
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end |