server/src/scripts/eressea-multis.lua

18 lines
409 B
Lua
Raw Normal View History

local function kill_multis()
2005-07-25 15:03:43 +02:00
local multis = { "ogq", "idan", "e8L1" }
for k, v in multis do
print(v)
local f = get_faction(atoi36(v))
2005-07-23 22:38:14 +02:00
if f~=nil then
2005-07-25 15:03:43 +02:00
print("Marking " .. tostring(f) .. " as a multi-player.")
2005-07-23 22:38:14 +02:00
f.email="doppelspieler@eressea.de"
f.password=""
2005-07-25 15:03:43 +02:00
else
print("- could not find faction " .. v)
2005-07-23 22:38:14 +02:00
end
end
end
2005-07-25 15:03:43 +02:00
print("killing multi-players")
kill_multis()