server/src/scripts/eressea/xmas2005.lua

17 lines
364 B
Lua
Raw Normal View History

2005-12-18 19:09:53 +01:00
function xmas2005()
print(get_gamename())
if get_gamename() == "Eressea" then
if not get_flag("xm05") then
print("Es weihnachtet sehr")
set_flag("xm05", true)
for f in factions() do
f:add_item("stardust", 1)
f:add_notice("santa2005")
end
end
end
end
print("Ja, ist denn schon wieder Weihnachten?")
xmas2005()