2005-07-24 10:08:40 +02:00
|
|
|
local function kill_multis()
|
2005-09-09 00:25:56 +02:00
|
|
|
local multis = { "aLuk", "3", "rd2r", "aaa", "no3i", "1Lru" }
|
2005-07-25 15:03:43 +02:00
|
|
|
for k, v in multis do
|
|
|
|
local f = get_faction(atoi36(v))
|
2005-07-23 22:38:14 +02:00
|
|
|
if f~=nil then
|
2005-07-25 15:04:17 +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-24 10:08:40 +02:00
|
|
|
|
2005-07-25 15:03:43 +02:00
|
|
|
print("killing multi-players")
|
2005-07-24 10:08:40 +02:00
|
|
|
kill_multis()
|