Hallo,
ich hab ein [Only registered and activated users can see links. Click Here To Register...] mit folgender Quest.
Kann mir da wer helfen? :) Thanks
ich hab ein [Only registered and activated users can see links. Click Here To Register...] mit folgender Quest.
PHP Code:
quest warp begin
state start begin
when 30521.use begin
say_title("Teleport")
say("Wo moechtest Du hin teleportiert werden?")
local s=select("Levelmap ab 90", "Levelmap ab 100", "Farmmap ab 95", "Weiter")
if s==1 then
if pc.get_level()<90 then
say("Dein Level ist zu niedrig..")
say("Mindestlevel: 90")
return
end
pc.warp(1024000, 1664000)
elseif s==2 then
if pc.get_level()<100 then
say("Dein Level ist zu niedrig..")
say("Mindestlevel: 100")
return
end
pc.warp(1117500, 1598123)
elseif s==3 then
if pc.get_level()<95 then
say("Dein Level ist zu niedrig..")
say("Mindestlevel: 95")
return
end
pc.warp(1213100, 1643500)
elseif s==4 then
a=select("Eisland", "Feuerland", "Orktal Mitte", "Grotte", "Weiter")
if a==1 then
pc.get_level()<60 then
say("Dein Level ist zu niedrig..")
say("Mindestlevel: 60")
return
end
pc.warp(437400, 217800)
elseif a==2 then
if pc.get_level()<80 then
say("Dein Level ist zu niedrig..")
say("Mindestlevel: 80")
return
end
pc.warp(617360, 701374)
elseif a==3 then
if pc.get_level()<30 then
say("Dein Level ist zu niedrig..")
say("Mindestlevel: 30")
return
end
pc.warp(333000, 746500)
elseif a==4 then
if pc.get_level()<70 then
say("Dein Level ist zu niedrig..")
say("Mindestlevel: 70")
return
end
pc.warp(284300, 810100)
elseif a==5 then
b=select("Roter Wald", "Weiter")
if b==1 then
pc.get_level()<50 then
say("Dein Level ist zu niedrig..")
say("Mindestlevel: 50")
return
end
pc.warp(1049600, 0)
elseif b==2 then
c=select("Map1 Rotes Reich", "Map1 Gelbes Reich", "Map1 Blaues Reich", "Abbrechen")
if c==1 then
if pc.get_level()>=1 then
say("Du wirst ins rote Reich geportet.")
return
pc.warp(469300, 964200)
end
elseif c==2 then
if pc.get_level()>=1 then
say("Du wirst ins gelbe Reich geportet.")
return
pc.warp(55700, 157900)
end
elseif c==3 then
if pc.get_level()>=1 then
say("Du wirst ins blaue Reich geportet.")
return
pc.warp(969600, 278400)
end
elseif c==4 then
if pc.get_level()>=1 then
say("Hast Dich wohl verklickt..")
return
end
end
end
end
end
end
end
end