quest oto_event begin state start begin ----------------------------------------------------------------------------------------------------------- when login begin local saat = tonumber(os.date("%H")) local gun = tostring(os.date("%A")) if gun == "Monday" then if saat == 20 then if game.get_event_flag("futbol_event") == 0 then game.set_event_flag("futbol_event", 1) notice_all("Futbol topu eventi 1 saat süreyle başlamıştır.") end elseif saat == 21 then if game.get_event_flag("futbol_event") == 1 then game.set_event_flag("futbol_event", 0) notice_all("Futbol topu eventi sona ermiştir.") end end ----------------------------------------------------------------------------------------------------------- elseif gun == "Tuesday" then if saat == 20 then if game.get_event_flag("simit_event") == 0 then game.set_event_flag("simit_event", 1) notice_all("Simit eventi 1 saat süreyle başlamıştır.") end elseif saat == 21 then if game.get_event_flag("simit_event") == 1 then game.set_event_flag("simit_event", 0) notice_all("Simit eventi sona ermiştir.") end end ----------------------------------------------------------------------------------------------------------- elseif gun == "Wednesday" then if saat == 20 then if game.get_event_flag("altigen_event") == 0 then game.set_event_flag("altigen_event", 1) notice_all("Altıgen eventi 1 saat süreyle başlamıştır.") end elseif saat == 21 then if game.get_event_flag("altigen_event") == 1 then game.set_event_flag("altigen_event", 0) notice_all("Altıgen eventi sona ermiştir.") end end ----------------------------------------------------------------------------------------------------------- elseif gun == "Thursday" then if saat == 20 then if game.get_event_flag("bulmaca_event") == 0 then game.set_event_flag("bulmaca_event", 1) notice_all("Bulmaca eventi 1 saat süreyle başlamıştır.") end elseif saat == 21 then if game.get_event_flag("bulmaca_event") == 1 then game.set_event_flag("bulmaca_event", 0) notice_all("Bulmaca eventi sona ermiştir.") end end ----------------------------------------------------------------------------------------------------------- elseif gun == "Friday" then if saat == 20 then if game.get_event_flag("ayisigi_event") == 0 then game.set_event_flag("ayisigi_event", 1) notice_all("Ay ışığı eventi 1 saat süreyle başlamıştır.") end elseif saat == 21 then if game.get_event_flag("ayisigi_event") == 1 then game.set_event_flag("ayisigi_event", 0) notice_all("Ay ışığı eventi sona ermiştir.") end end ----------------------------------------------------------------------------------------------------------- elseif gun == "Saturday" then if saat == 20 then if game.get_event_flag("bulmaca_event") == 0 then game.set_event_flag("bulmaca_event", 1) notice_all("Bulmaca eventi 1 saat süreyle başlamıştır.") end elseif saat == 21 then if game.get_event_flag("bulmaca_event") == 1 then game.set_event_flag("bulmaca_event", 0) notice_all("Bulmaca eventi sona ermiştir.") elseif game.get_event_flag("altigen_event") == 0 then game.set_event_flag("altigen_event", 1) notice_all("Altıgen eventi sona ermiştir.") end elseif saat == 22 then if game.get_event_flag("altigen_event") == 1 then game.set_event_flag("altigen_event", 0) notice_all("Altıgen eventi sona ermiştir.") end end ----------------------------------------------------------------------------------------------------------- elseif gun == "Sunday" then if saat == 19 then if game.get_event_flag("ayisigi_event") == 0 then game.set_event_flag("ayisigi_event", 1) notice_all("Ay ışığı eventi 1 saat süreyle başlamıştır.") end elseif saat == 20 then if game.get_event_flag("ayisigi_event") == 1 then game.set_event_flag("ayisigi_event", 0) notice_all("Ay ışığı eventi sona ermiştir.") elseif game.get_event_flag("futbol_event") == 0 then game.set_event_flag("futbol_event", 1) notice_all("Futbol topu eventi 1 saat süreyle başlamıştır.") end elseif saat == 21 then if game.get_event_flag("futbol_event") == 1 then game.set_event_flag("futbol_event", 0) notice_all("Futbol topu eventi sona ermiştir.") elseif game.get_event_flag("simit_event") == 0 then game.set_event_flag("simit_event", 1) notice_all("Simit eventi 1 saat süreyle başlamıştır.") end elseif saat == 22 then if game.get_event_flag("simit_event") == 0 then game.set_event_flag("simit_event", 1) notice_all("Simit eventi sona ermiştir.") end end end end end end