eq2emu-content/SpawnScripts/thunderdome/tutorialdrake.lua
2024-10-26 11:37:28 +00:00

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