mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
9 lines
No EOL
277 B
Lua
9 lines
No EOL
277 B
Lua
function event_spawn(e)
|
|
local xloc = e.self:GetX();
|
|
local yloc = e.self:GetY();
|
|
eq.set_proximity(xloc - 50, xloc + 50, yloc - 50, yloc + 50);
|
|
end
|
|
|
|
function event_enter(e)
|
|
e.other:Message(MT.Yellow,"The focus trembles with energy as any living creature approaches it");
|
|
end |