2005-07-24 10:08:40 +02:00
|
|
|
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-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()
|