server/src/scripts/hse05-portals.lua

19 lines
351 B
Lua

if gate_travel==nil then
dofile(scriptpath .. "/gates.lua")
end
buildings = {}
function portal_exchange(b1, param)
id = buildings[param]
if id == nil then
buildings[param] = b1.id
else
b2 = get_building(id)
u1 = gate_units(b1, 100)
u2 = gate_units(b2, 100)
gate_travel(b1, u2)
gate_travel(b2, u1)
end
return 1
end