server/src/scripts/eressea-multis.lua

17 lines
427 B
Lua
Raw Normal View History

local function kill_multis()
2005-09-17 22:15:46 +02:00
local multis = { "aLuk", "3", "rd2r", "aaa", "no3i", "1Lru", "heLd" }
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-25 15:03:43 +02:00
print("killing multi-players")
kill_multis()