- Mesaj
- 16
- Beğeni
- 1
- Puan
- 405
- Ticaret Puanı
- 0
C++:
quest event begin
state start begin
when letter begin
send_letter("Etkinlik Takvimi ")
end
when info or button begin
say_title("Etkinlik Takvimi :")
say("")
say_altin("Pazartesi: Futbol Topu 21:00 - 23:00 ")
say_altin("Salı: Biyolog Etkinliği 21:00 - 23:00 ")
say_altin("Çarşamba: Kostüm Etkinliği 21:00 - 23:00 ")
say_altin("Perşembe: Ayışığı Etkinliği 21:00 - 23:00 ")
say_altin("Cuma: Altıgen Etkinliği 21:00 - 23:00 ")
say_mavi2("Özel Eventler;")
say_altin("Cumartesi Sürpriz Eventler ")
say_altin("Pazar Sürpriz Eventler ")
say("")
wait()
send_letter("Etkinlik Takvimi ")
end
when login begin
local saat = tonumber(os.date("%H"))
local gun = tostring(os.date("%A"))
if gun == "Wednesday" then
if saat == 23 then
if game.get_event_flag("ay_ac") == 0 then
game.set_event_flag("ay_ac",1)
game.set_event_flag("ay_kapa",0)
game.set_event_flag("ayisigi",1)
notice_all("Ayışığı eventi 2 saat süreyle başlamıştır.")
end
elseif saat == 22 then
if game.get_event_flag("ay_kapa") == 0 then
game.set_event_flag("ay_ac",0)
game.set_event_flag("ay_kapa",1)
game.set_event_flag("ayisigi",0)
notice_all("Ayışığı eventi sona ermiştir.")
end
end
elseif gun == "Wednesday" then
if saat == 14 then
if game.get_event_flag("top_ac") == 0 then
game.set_event_flag("top_ac",1)
game.set_event_flag("top_kapa",0)
game.set_event_flag("futboltopu",1)
notice_all("Futbol Topu eventi 2 saat süreyle başlamıştır.")
end
elseif saat == 15 then
if game.get_event_flag("top_kapa") == 0 then
game.set_event_flag("top_ac",0)
game.set_event_flag("top_kapa",1)
game.set_event_flag("futboltopu",0)
notice_all("Futbol Topu eventi bitmiştir.")
end
end
elseif gun == "Wednesday" then
if saat == 16 then
if game.get_event_flag("pet_ac") == 0 then
game.set_event_flag("pet_ac",1)
game.set_event_flag("pet_kapa",0)
game.set_event_flag("pet_event",1)
notice_all("Pet Sandığı eventi 2 saat süreyle başlamıştır.")
end
elseif saat == 17 then
if game.get_event_flag("pet_kapa") == 0 then
game.set_event_flag("pet_ac",0)
game.set_event_flag("pet_kapa",1)
game.set_event_flag("pet_event",0)
notice_all("Pet Sandığı eventi bitmiştir.")
end
end
elseif gun == "Thursday" then
if saat == 11 then
if __give_empire_priv(0, 4, 400, 1) then
__give_empire_priv(0, 4, 400, 1)
__give_empire_priv(0, 4, 400, 1)
__give_empire_priv(0, 4, 400, 1)
notice_all("Exp Bonus Eventi %400 oranında 1 saat süreyle başlamıştır.")
end
elseif saat == 12 then
if __give_empire_priv(0, 4, 350, 60*60*24*15) then
__give_empire_priv(0, 4, 350, 60*60*24*15)
__give_empire_priv(0, 4, 350, 60*60*24*15)
__give_empire_priv(0, 4, 350, 60*60*24*15)
notice_all("Exp Bonus Eventi %350 oranında tekrar eski haline döndü.")
end
end
elseif gun == "Thursday" then
if saat == 20 then
if game.get_event_flag("bilgi_ac") == 0 then
game.set_event_flag("bilgi_ac",1)
game.set_event_flag("bilgi_kapa",0)
game.set_event_flag("kids_day_quiz",1)
notice_all("Bulmaca Kutusu Eventi 2 saat süreyle başlamıştır.")
end
elseif saat == 21 then
if game.get_event_flag("bilgi_kapa") == 0 then
game.set_event_flag("bilgi_ac",0)
game.set_event_flag("bilgi_kapa",1)
game.set_event_flag("kids_day_quiz",0)
notice_all("Bulmaca Kutusu Eventi bitmiştir.")
end
end
end
end
end
end
Son düzenleme: