quest warpring begin
state start begin
when 70007.use begin
say_title("Ring:")
say("Hallo mein Freund")
say("Ich kann dich mit meinen mythischen Kräften")
say("in viele dem Verderben erlegene Welten führen")
say("Möchtest du das ich dich in solch eine Welt bringe?")
local auswahl = select("Ja","Nein")
if auswahl == 2 then
return
end
if auswahl == 1 then
say_title("Wähle deinen Kategorie")
local kategorie = select("Map1", "Map2", "Levelorte", "Sonstige Orte", "Nix")
if kategorie == 5 then
return end
if kategorie == 1 then
say("Wähle die Map1 wo du hin möchtest")
local map1 =select("Blaues Map1", "Gelbes Map1", "Rotes Map1", "Nichts")
if map1 == 4 then
return end
if map1 == 1 then
pc.warp(959900,269200)
end
if map1 == 2 then
pc.warp(63800,166400)
end
if map1 == 3 then
pc.warp(474300,954800)
end
end
if kategorie == 3 then
say("Wähle die Map zu der du reisen willst")
local sonstmaps = select("Orktal", "Hwang Tempel", "SD2", "Zin Grotte", "Zin Grotte2", "Tal von Imji(Level90)", "Tal von Bangsam(Level110)", "Nichts")
if sonstmaps == 8 then
return end
if sonstmaps == 1 then
pc.warp(335900,755300)
end
if sonstmaps == 2 then
pc.warp(537600,51200)
end
if sonstmaps == 3 then
pc.warp(665600, 435200)
end
if sonstmaps == 4 then
pc.warp(0,1203200)
end
if sonstmaps == 5 then
pc.warp(241700,1274900)
end
if sonstmaps == 6 then
if pc.get_level() >= 90 then
pc.warp(187000,142000)
if pc.get_level() <= 89 then
say("Du bist noch nicht Level 90")
return end
end
end
if sonstmaps == 7 then
if pc.get_level() >= 110 then
pc.warp(736000,340000)
if pc.get_level() <= 109 then
say("Du bist noch nicht Level 110")
return end
end
end
end
if kategorie == 2 then
say("Wähle deine Map2")
local map2 =select("Blaues Map2", "Gelbes Map2", "Rotes Map2", "Nichts")
if map2 == 4 then
return end
if map2 == 1 then
pc.warp(819200, 204800)
end
if map2 == 2 then
pc.warp(102400, 204800)
end
if map2 == 3 then
pc.warp(307200, 819200)
end
end
if kategorie == 4 then
say("Wähle deine Ziel")
local sonstmaps = select ("Dämonenturm", "Geisterwald", "Roter Wald", "Land der Riesen", "Eisland", "Feuerland", "Wüste", "Nichts")
if sonstmaps == 8 then
return end
if sonstmaps == 1 then
pc.warp(590500,110800)
end
if sonstmaps == 2 then
pc.warp(290500,5700)
end
if sonstmaps == 3 then
pc.warp(1119900,70800)
end
if sonstmaps == 4 then
pc.warp(819200, 716800)
end
if sonstmaps == 5 then
pc.warp(436500, 215400)
end
if sonstmaps == 6 then
pc.warp(600800, 687100)
end
if sonstmaps == 7 then
pc.warp(296800, 547100)
end
end
end
end
end
end