mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
25 lines
No EOL
378 B
Lua
Executable file
25 lines
No EOL
378 B
Lua
Executable file
--[[
|
|
Script Name : ZoneScripts/Runnyeye.lua
|
|
Script Purpose :
|
|
Script Author :
|
|
Script Date : 4/30/2021
|
|
Script Notes :
|
|
--]]
|
|
|
|
function init_zone_script(zone)
|
|
end
|
|
|
|
function player_entry(zone, player)
|
|
end
|
|
|
|
function enter_location(zone, spawn, grid)
|
|
end
|
|
|
|
function leave_location(zone, spawn, grid)
|
|
end
|
|
|
|
function dawn(zone)
|
|
end
|
|
|
|
function dusk(zone)
|
|
end |