eq2emu-content/SpawnScripts/DoF_design_path_script/2PointBridgeCrosser.lua

27 lines
580 B
Lua
Raw Permalink Normal View History

2024-10-26 11:37:28 +00:00
--[[
Script Name : SpawnScripts/DoF_design_path_script/2PointBridgeCrosser.lua
Script Author : Dorbin
Script Date : 2023.07.19 04:07:44
Script Purpose :
:
--]]
function spawn(NPC)
AddTimer(NPC,3000,"Waypoint")
end
function hailed(NPC, Spawn)
FaceTarget(NPC, Spawn)
end
function respawn(NPC)
spawn(NPC)
end
function Waypoint(NPC,Spawn)
MovementLoopAddLocation(NPC,-100,0,-25, 4,3)
MovementLoopAddLocation(NPC,-47.5,0,-25, 4,3)
end
function death(NPC,Spawn)
Despawn(NPC)
2024-07-22 13:56:05 -04:00
end