- Katılım
- 26 Tem 2023
- Konular
- 451
- Mesajlar
- 6,351
- Çözüm
- 28
- Online süresi
- 2mo 26d
- Reaksiyon Skoru
- 3,418
- Altın Konu
- 133
- Başarım Puanı
- 249
- MmoLira
- 37,481
- DevLira
- 12
ROHAN2 WORLD 1-120 TR TİPİ OFFICIAL YOHARA, BALATHOR VE AMON! 80. GÜNÜNDE! +10.000 ONLİNE! HİLE VE BOT %100 ENGELLİ HEMEN TIKLA!
Piyasada bulunanlardan farklıdır, quest sayesinde 71000 itemi ile 11005 ( Savaş Sorumlusu ) id'li npcden giriş yapabilirsiniz. 60 dakika soğuma süresi vardır, filesinize göre 63. ve 64. satırları değişebilirsiniz.
[CODE title="raza.quest"]quest nemere_dungeon begin
state start begin
when login begin
if pc.get_map_index() >= 3520000 and pc.get_map_index() < 3529000 then
local last_entry = pc.getqf("last_entry_time") or 0
local current_time = get_global_time()
local cooldown_seconds = 3600 -- 1 saat = 3600 saniye
if current_time - last_entry < cooldown_seconds then
local remaining_time = cooldown_seconds - (current_time - last_entry)
local remaining_minutes = math.ceil(remaining_time / 60)
say_title("Bekci:")
say(string.format("Zindana tekrar girebilmeniz için daha %d dakika beklemeniz gerekiyor.", remaining_minutes))
return
end
end
end
when logout begin
local idx = pc.get_map_index()
if idx == 352 or (idx >= (352 * 10000) and idx < (352 * 10000 + 9000)) then
pc.setqf("last_entry_time", get_global_time())
end
end
when 11005.chat."Nemerenin Gözetleme Kulesi(Tek Kat)" begin
local last_entry = pc.getqf("last_entry_time") or 0
local current_time = get_global_time()
local cooldown_seconds = 3600 -- 1 saat = 3600 saniye
if current_time - last_entry < cooldown_seconds then
local remaining_time = cooldown_seconds - (current_time - last_entry)
local remaining_minutes = math.ceil(remaining_time / 60)
say_title("Bekci:")
say(string.format("Zindana tekrar girebilmeniz için daha %d dakika beklemeniz gerekiyor.", remaining_minutes))
return
end
if pc.get_level() < 90 then
say_title("Bekci:")
say("90. seviyenin altında olduğun için zindana giremezsin.")
return
end
if pc.count_item(71000) < 1 then
say_title("Bekci:")
say(string.format("Gerekli eşya: %s. Eşyayı envanterinde bulundurmalısın.", item_name(71000)))
return
end
if party.is_party() then
say_title("Bekci:")
say("Grup halinde zindana giremezsiniz.")
return
end
say_title("Bekci:")
say("Zindana girmek istiyor musun?")
local s = select("Evet!", "Hayır, girmek istemiyorum.")
if s == 1 then
pc.remove_item(71000, 1)
pc.setqf("last_entry_time", get_global_time())
d.new_jump(352, 772100, 640100)
d.spawn_mob_dir(18045, 286, 225, 1)
end
end
when kill with npc.get_race() == 18045 begin
d.setf("nemere_dead", 1)
notice_all("|cff00ff00 " .. pc.get_name() .. " Nemere'yi mağlup etti!")
server_timer("nemere_exit_timer", 3600, d.get_map_index())
end
when nemere_exit_timer.server_timer begin
if d.select(get_server_timer_arg()) then
d.notice("Zaman doldu.")
d.setf("sure_doldu", 1)
d.clear_regen()
d.exit_all()
end
end
end
end[/CODE]
[CODE title="raza.quest"]quest nemere_dungeon begin
state start begin
when login begin
if pc.get_map_index() >= 3520000 and pc.get_map_index() < 3529000 then
local last_entry = pc.getqf("last_entry_time") or 0
local current_time = get_global_time()
local cooldown_seconds = 3600 -- 1 saat = 3600 saniye
if current_time - last_entry < cooldown_seconds then
local remaining_time = cooldown_seconds - (current_time - last_entry)
local remaining_minutes = math.ceil(remaining_time / 60)
say_title("Bekci:")
say(string.format("Zindana tekrar girebilmeniz için daha %d dakika beklemeniz gerekiyor.", remaining_minutes))
return
end
end
end
when logout begin
local idx = pc.get_map_index()
if idx == 352 or (idx >= (352 * 10000) and idx < (352 * 10000 + 9000)) then
pc.setqf("last_entry_time", get_global_time())
end
end
when 11005.chat."Nemerenin Gözetleme Kulesi(Tek Kat)" begin
local last_entry = pc.getqf("last_entry_time") or 0
local current_time = get_global_time()
local cooldown_seconds = 3600 -- 1 saat = 3600 saniye
if current_time - last_entry < cooldown_seconds then
local remaining_time = cooldown_seconds - (current_time - last_entry)
local remaining_minutes = math.ceil(remaining_time / 60)
say_title("Bekci:")
say(string.format("Zindana tekrar girebilmeniz için daha %d dakika beklemeniz gerekiyor.", remaining_minutes))
return
end
if pc.get_level() < 90 then
say_title("Bekci:")
say("90. seviyenin altında olduğun için zindana giremezsin.")
return
end
if pc.count_item(71000) < 1 then
say_title("Bekci:")
say(string.format("Gerekli eşya: %s. Eşyayı envanterinde bulundurmalısın.", item_name(71000)))
return
end
if party.is_party() then
say_title("Bekci:")
say("Grup halinde zindana giremezsiniz.")
return
end
say_title("Bekci:")
say("Zindana girmek istiyor musun?")
local s = select("Evet!", "Hayır, girmek istemiyorum.")
if s == 1 then
pc.remove_item(71000, 1)
pc.setqf("last_entry_time", get_global_time())
d.new_jump(352, 772100, 640100)
d.spawn_mob_dir(18045, 286, 225, 1)
end
end
when kill with npc.get_race() == 18045 begin
d.setf("nemere_dead", 1)
notice_all("|cff00ff00 " .. pc.get_name() .. " Nemere'yi mağlup etti!")
server_timer("nemere_exit_timer", 3600, d.get_map_index())
end
when nemere_exit_timer.server_timer begin
if d.select(get_server_timer_arg()) then
d.notice("Zaman doldu.")
d.setf("sure_doldu", 1)
d.clear_regen()
d.exit_all()
end
end
end
end[/CODE]
- Katılım
- 17 Nis 2013
- Konular
- 74
- Mesajlar
- 888
- Online süresi
- 1mo 22d
- Reaksiyon Skoru
- 595
- Altın Konu
- 0
- Başarım Puanı
- 211
- Yaş
- 27
- MmoLira
- 11,772
- DevLira
- 150
Merhabalar,
Paylaşımınız için teşekkür ederim.
İyi forumlar.
Paylaşımınız için teşekkür ederim.
İyi forumlar.
- Katılım
- 10 Ocak 2009
- Konular
- 3,748
- Mesajlar
- 15,940
- Çözüm
- 334
- Online süresi
- 6mo 28d
- Reaksiyon Skoru
- 8,034
- Altın Konu
- 947
- Başarım Puanı
- 474
- Yaş
- 34
- MmoLira
- 86,702
- DevLira
- -12
Paylaşım için teşekkürler.
Şu an konuyu görüntüleyenler (Toplam : 0, Üye: 0, Misafir: 0)
Benzer konular
- Cevaplar
- 2
- Görüntüleme
- 413













