server/src/scripts/hse05-portals.lua

20 lines
351 B
Lua
Raw Normal View History

if gate_travel==nil then
2005-01-08 12:40:14 +01:00
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