mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
Replace individual npc scripts with an encounter Make Stonespiritist Ekikoa spawn at live location Use live dest for vxed to barindu zoner
9 lines
233 B
Lua
9 lines
233 B
Lua
function event_spawn(e)
|
|
local x = e.self:GetX()
|
|
local y = e.self:GetY()
|
|
eq.set_proximity(x - 40, x + 40, y - 40, y + 40)
|
|
end
|
|
|
|
function event_enter(e)
|
|
e.other:MovePC(283, -1258.00, 456.00, -119.54, 240.0) -- Zone: barindu
|
|
end
|