2005-07-24 10:08:40 +02:00
|
|
|
local function kill_multis()
|
2005-07-23 22:38:14 +02:00
|
|
|
local multis = [ "ogq", "idan", "e8L1" ]
|
|
|
|
for key in multis do
|
|
|
|
local f = get_faction(atoi36(multis[key]))
|
|
|
|
if f~=nil then
|
|
|
|
f.email="doppelspieler@eressea.de"
|
|
|
|
f.password=""
|
2005-07-24 10:08:40 +02:00
|
|
|
print "Marking " .. f .. " as a multi-player."
|
2005-07-23 22:38:14 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2005-07-24 10:08:40 +02:00
|
|
|
|
|
|
|
kill_multis()
|