Jump to content

.JαyZoN

Member
  • Posts

    72
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Community Answers

  1. .JαyZoN's post in help to implement Switch Bot 2.3 by Mijago was marked as the answer   
    Should work now.
     
    http://pastebin.com/MtmwfSut
  2. .JαyZoN's post in Quest Problem was marked as the answer   
    quest teleport begin state start begin when login begin cmdchat("teleporter_index "..q.getcurrentquestindex()) end when button or info begin say_title("Teleportation Ring:") say("Choose a place to go.") say("") local s = select("Kingdoms","Forests","Spider Caves","Sürgün Maðarasý","Other Places","Close") if s == 1 then say_title("Teleportation Ring:") local k = select("Jinno","Chunjo","Shinsoo","Cancel") if k == 1 then say_title("Teleportation Ring:") say("Jinno Kingdom selected.") say("") say("Choose a village to go.") say("") say("") local j = select("Pyungmoo","Bakra","Cancel") if j == 1 then pc.warp(959800,268400) elseif j == 1 then pc.warp(873100,242600) end elseif k == 2 then say_title("Teleportation Ring:") say("Chunjo Kingdom selected.") say("") say("Choose a village to go.") say("") say("") local c = select("Joan","Bokjung","Cancel") if c == 1 then pc.warp(63800,166400) elseif c == 2 then pc.warp(138500,234900) end elseif k == 3 then say_title("Teleportation Ring:") say("Shinsoo Kingdom selected.") say("") say("Choose a village to go.") say("") say("") local sh = select("Yongan","Yayang","Cancel") if sh == 1 then pc.warp(474300,954800) elseif sh == 2 then pc.warp(360800,877600) end end elseif s == 2 then say_title("Teleportation Ring:") local sss = select("Ghost Forest","Red Wood","Cancel") if sss == 1 then pc.warp(288700,5700) elseif sss == 2 then pc.warp(1119900,70800) elseif sss == 3 then return end elseif s == 3 then say_title("Teleportation Ring:") local zindan = select("Örümcek Zindaný 1. Kat Baþý ","Örümcek Zindaný 2. Kat Sonu","Vazgeç ") if zindan == 1 then pc.warp(59800,497300) elseif zindan == 2 then pc.warp(704100,521900) elseif zindan == 3 then return end elseif s == 4 then say_title("Teleportation Ring:") say("Sürgün Maðarasý giriþine ýþýnlanýyorsun...") wait() pc.warp(284400,810700) elseif s == 5 then say_title("Teleportation Ring:") local sssssss = select("Seungryong Vadisi","Sohan Daðý ","Yongbi Çölü ","Doyyumhwan","Devler Diyarý ","Þeytan Kulesi","Þeytan Mezarlýðý ","Kýrmýzý Ejderha Kalesi ","Nemere'nin Gözetleme Kulesi ","Vazgeç ") if sssssss == 1 then pc.warp(336000,755600) elseif sssssss == 2 then pc.warp(436400,215600) elseif sssssss == 3 then pc.warp(296800,547400) elseif sssssss == 4 then pc.warp(600800,687400) elseif sssssss == 5 then pc.warp(829900,763300) elseif sssssss == 6 then pc.warp(590500,110500) elseif sssssss == 7 then pc.warp(591100,99300) elseif sssssss == 8 then pc.warp(614739,706929) elseif sssssss == 9 then pc.warp(432792,165998) elseif sssssss == 10 then return end end end end end This should work. However, the variables are very ugly and i don't like warpquests with snake codes (like this).
  3. .JαyZoN's post in tradeable item was marked as the answer   
    You can use something like this; (for example)
     
    http://metin2dev.org/board/topic/326-toolflag-generator/
  4. .JαyZoN's post in quest problem was marked as the answer   
    So use my example then. Replace the content with this;
     
    quest feggarokouta begin     state start begin         when 50011.use begin             local randi = number(1,22)             local prem_item = {                 {71018, 1}, --evlogia                 {71028, 1}, --epi8esi drakou 8eou                 {71027, 1}, --zwh drakoy 8eou                 {71029, 1}, --efiia drakou 8eou                 {50821, 1}, --Elixier der Sonne (S)                 {50822, 1}, --Elixier des Mondes (S)                 {50823, 1}, --Erfahrungsring                 {50825, 1}, --Zauber-Ei                 {50826, 1}, --Leerer Korb                 {50903, 1}, --Regenbogenstein                 {50703, 15}, --Rappen-Siegel                 {27002, 120}, --Segen des Drachen                 {27005, 120}, --Segen des Drachen                 {50704, 15}, --Segen des Drachen                 {71035, 1}, --Segen des Drachen                 {71014, 1}, --Segen des Drachen                 {71050, 1}, --Segen des Drachen                 {71101, 1}, --Segen des Drachen                 {71113, 1}, --Segen des Drachen                 {71108, 1}, --Segen des Drachen                 {71113, 1}, --Segen des Drachen                 {71110, 1}, --Segen des Drachen                 {71142, 1}, --Segen des Drachen             }             pc.give_item2(prem_item[randi][1], prem_item[randi][2])             pc.give_gold("80000")             pc.remove_item("50011")         end     end end  
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.