server/src/scripts/eressea/multis.lua
Enno Rehling de9264bc4c - scripts for kingdoms
- per-game folders to organize scripts a bit more
2005-11-25 23:32:56 +00:00

16 lines
375 B
Lua

local function kill_multis()
local multis = {}
for k, v in multis do
local f = get_faction(atoi36(v))
if f~=nil then
print("- marking " .. tostring(f) .. " as a multi-player.")
f.email="doppelspieler@eressea.de"
f.password=""
else
print("- could not find faction " .. v)
end
end
end
print("killing multi-players")
kill_multis()