eqmac-quests/iceclad/player.lua
regneq 235936a32c Elroz- partial hand in dialogue additions and a couple quest reward dialogue additions
Robregen - removed adjustments for zone_time{"hour"] since it's fixed in the code.
Elroz - north karana fangbreakers following their leader
2023-12-20 11:58:48 -08:00

12 lines
No EOL
478 B
Lua

function event_board_boat(e)
local zone_time = eq.get_zone_time();
local hour = zone_time["zone_hour"];
local minute = zone_time["zone_minute"];
eq.debug(" At: " .. hour .. ":" .. minute .. " BoatID: " .. e.boat_id .. " was boarded. Its name is: " .. e.self:GetBoatName() .. ".", 1);
end
function event_leave_boat(e)
local zone_time = eq.get_zone_time();
local hour = zone_time["zone_hour"];
eq.debug(" At: " .. hour .. ":00 I left BoatID: " .. e.boat_id .. ".", 1);
end