- Mesaj
- 98
- Çözümler
- 5
- Beğeni
- 38
- Puan
- 676
- Ticaret Puanı
- 0
Lua (Quest):
quest yd_oto_event begin
state start begin
when login with pc.is_gm() begin
clear_server_timer("oto_event")
server_loop_timer("oto_event",1)
end
when oto_event.server_timer begin
local saat = tonumber(os.date("%H"))
local time = os.date("%X")
local gun = tostring(os.date("%A"))
if gun == "Monday" then
if time == "20:00:00" then
if game.get_event_flag("ayisigi") == 0 then
game.set_event_flag("ayisigi",1)
notice_all("Ayisigi Define Sandığı eventi 1 saat süreyle başlamıştır.")
notice_all("Seviyenize göre kestiğiniz bütün canavarlardan elde edebilirsiniz.")
notice_all("Etkinlik Süresi : 1 Saat")
end
elseif time == "21:00:00" then
if game.get_event_flag("ayisigi") == 1 then
game.set_event_flag("ayisigi",0)
notice_all("Ayisigi Define Sandığı eventi sona ermiştir.")
end
end
end
elseif gun == "Tuesday" then
if time == "21:00:00" then
if game.get_event_flag("ayisigi") == 0 then
game.set_event_flag("ayisigi",1)
notice_all("Ayisigi Define Sandığı eventi 1 saat süreyle başlamıştır.")
end
elseif time == "22:00:00" then
if game.get_event_flag("ayisigi") == 1 then
game.set_event_flag("ayisigi",0)
notice_all("Ayisigi Define Sandığı eventi sona ermiştir.")
end
end
elseif gun == "Thursday" then
if time == "20:00:00" then
if game.get_event_flag("futboltopu") == 0 then
game.set_event_flag("futboltopu",1)
notice_all("Futbol Topu eventi 1 saat süreyle başlamıştır.")
notice_all("Seviyenize göre kestiğiniz bütün canavarlardan elde edebilirsiniz.")
notice_all("Futbol Topu eventi 1 saat süreyle başlamıştır.")
end
elseif time == "21:00:00" then
if game.get_event_flag("futboltopu") == 1 then
game.set_event_flag("futboltopu",0)
notice_all("Futbol Topu eventi sona ermiştir.")
end
end
end
end
end