Warpring.quest
PHP Code:
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", "Nix")
if kategorie == 4 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", "Nichts")
if sonstmaps == 6 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
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
end
end
end
end
Highwarpring.quest
PHP Code:
quest warpring2 begin
state start begin
when 70016.use begin
local port = select ("Dunkles Sturm Land(Ab80)","Tal der Vernichtung(Ab95)", "Reich des Schattens(Ab125)", "Nichts")
if port == 4 then
return end
if port == 1 then
if pc.get_level() >= 80 then
pc.warp(1167000,1677000)
if pc.get_level() <= 80 then
say("Du bist noch nicht Level80")
return end
end
end
---------------------------------------Dunkles Sturm Land Ende
if port == 2 then
if pc.get_level() >= 95 then
pc.warp(1139000,1526000)
if pc.get_level() <= 95 then
say("Du bist noch nicht Level95")
return end
end
end
----------------------------------------Tal der Vernichtung
if port == 3 then
if pc.get_level() >= 125 then
pc.warp(1190000,1690000)
if pc.get_level() <= 125 then
say("Du bist noch nicht Level125")
return end
end
end
end
end
end
#push
#push