mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
9 lines
165 B
Lua
9 lines
165 B
Lua
function event_scale_calc(e)
|
|
local zone_id = eq.get_zone_id();
|
|
|
|
if zone_id > 228 and zone_id < 277 then
|
|
e.self:SetScale(1);
|
|
else
|
|
e.self:SetScale(0);
|
|
end
|
|
end
|