Leiner. Posted May 25, 2013 Report Share Posted May 25, 2013 Hola amigos de zone busca a alguien que de favor me pudiera hacer una quest en donde se habra un pergamino de bienvenida como este les dejo el post para que vean creo que ahi vienen los codigos para hacer la quest pero yo no se mucho de crear las quest Saludos y espero algunas respuestas post inforge:Debes iniciar sesión para ver el contenido del enlace en esta publicación. matador7, holaquetal, Only4Fun and 7 others 10 Link to comment Share on other sites More sharing options...
SeMa™ Posted May 25, 2013 Report Share Posted May 25, 2013 quest hola begin state start begin when login begin addimage (-100,-70,"004.tga") say("Hola y adiós") end end end PD: 004.tga va en ymir work/ui/game/questboard/ Link to comment Share on other sites More sharing options...
Leiner. Posted May 25, 2013 Author Report Share Posted May 25, 2013 Gracias Sema Link to comment Share on other sites More sharing options...
topekone Posted May 25, 2013 Report Share Posted May 25, 2013 Aquí una más completita que encontré ------------------------------------------- ----- FirstLogin Vol.1 (Easy 2 Learn) --------- Coded by /TfFReckLess --- The Favorites Few (TfF) - Dev-Team ------------------------------------------- quest give_basic_weapon begin state start begin when login begin -- Text informations | Start local hostname = "Metin2" -- Sets the servername local text1 = "Write here your text1." local text2 = "Write here your text2." local text3 = "Write here your text3." local text4 = "Write here your text4." local text5 = "Write here your text5." -- Text informations | End -- Color settings | Start local blue = color256(0,0,128) -- RGB Decimal Color (Blue) local purple = color256(138,43,226) -- RGB Decimal Color (Purple) -- Color settings | End -- Equipment settings | Start local lvl = 15 -- Sets player level local hlvl = 11 -- Sets horse level local horseitem = 50052 -- Sets horse book local gold = 50000 -- Sets gold count local hkp = 12000 -- Sets alignment count -- Equipment settings | End local name = pc.get_name() if pc.getqf("basic_weapon") == 0 then say_size(40,30) -- Window size setbgimage("level_bg.tga") -- Sets background image from path: d:/ymir work/ui/game/questboard/ say(blue.."Welcome "..name.." on "..hostname.."."..blue) say("") say(purple.."You got a typical equip!"..purple) say(purple.."Good game! ~ The Favorites Few (TfF)"..purple) say("") say(purple..""..text1..""..purple) say(purple..""..text2..""..purple) say(purple..""..text3..""..purple) say(purple..""..text4..""..purple) say(purple..""..text5..""..purple) say("") if pc.get_job() == 0 then -- Warrior pc.give_item2("19") pc.give_item2("11209") pc.give_item2("12209") notice_all(name.." (Warrior) is new on "..hostname) elseif pc.get_job() == 1 then -- Assassin pc.give_item2("1009") pc.give_item2("11409") pc.give_item2("12349") notice_all(name.." (Assassin) is new on "..hostname) elseif pc.get_job() == 2 then -- Sura pc.give_item2("19") pc.give_item2("11609") pc.give_item2("12489") notice_all(name.." (Sura) is new on "..hostname) elseif pc.get_job() == 3 then -- Mage pc.give_item2("7009") pc.give_item2("11809") pc.give_item2("12629") notice_all(name.." (Mage) is new on "..hostname) end while pc.get_level() < lvl do pc.give_exp2(pc.get_next_exp()) end horse.set_level(hlvl) pc.give_item2("13009") pc.give_item2("14009") pc.give_item2("15009") pc.give_item2("16009") pc.give_item2("17009") pc.give_item2(horseitem) pc.give_item2("27001",200) pc.give_item2("27004",200) pc.changegold(gold) pc.changealignment(hkp) pc.setqf("basic_weapon",1) else chat("Welcome back "..name) end end end end Link to comment Share on other sites More sharing options...
topekone Posted May 25, 2013 Report Share Posted May 25, 2013 Aquí una más completita que encontré ------------------------------------------- ----- FirstLogin Vol.1 (Easy 2 Learn) --------- Coded by /TfFReckLess --- The Favorites Few (TfF) - Dev-Team ------------------------------------------- quest give_basic_weapon begin state start begin when login begin -- Text informations | Start local hostname = "Metin2" -- Sets the servername local text1 = "Write here your text1." local text2 = "Write here your text2." local text3 = "Write here your text3." local text4 = "Write here your text4." local text5 = "Write here your text5." -- Text informations | End -- Color settings | Start local blue = color256(0,0,128) -- RGB Decimal Color (Blue) local purple = color256(138,43,226) -- RGB Decimal Color (Purple) -- Color settings | End -- Equipment settings | Start local lvl = 15 -- Sets player level local hlvl = 11 -- Sets horse level local horseitem = 50052 -- Sets horse book local gold = 50000 -- Sets gold count local hkp = 12000 -- Sets alignment count -- Equipment settings | End local name = pc.get_name() if pc.getqf("basic_weapon") == 0 then say_size(40,30) -- Window size setbgimage("level_bg.tga") -- Sets background image from path: d:/ymir work/ui/game/questboard/ say(blue.."Welcome "..name.." on "..hostname.."."..blue) say("") say(purple.."You got a typical equip!"..purple) say(purple.."Good game! ~ The Favorites Few (TfF)"..purple) say("") say(purple..""..text1..""..purple) say(purple..""..text2..""..purple) say(purple..""..text3..""..purple) say(purple..""..text4..""..purple) say(purple..""..text5..""..purple) say("") if pc.get_job() == 0 then -- Warrior pc.give_item2("19") pc.give_item2("11209") pc.give_item2("12209") notice_all(name.." (Warrior) is new on "..hostname) elseif pc.get_job() == 1 then -- Assassin pc.give_item2("1009") pc.give_item2("11409") pc.give_item2("12349") notice_all(name.." (Assassin) is new on "..hostname) elseif pc.get_job() == 2 then -- Sura pc.give_item2("19") pc.give_item2("11609") pc.give_item2("12489") notice_all(name.." (Sura) is new on "..hostname) elseif pc.get_job() == 3 then -- Mage pc.give_item2("7009") pc.give_item2("11809") pc.give_item2("12629") notice_all(name.." (Mage) is new on "..hostname) end while pc.get_level() < lvl do pc.give_exp2(pc.get_next_exp()) end horse.set_level(hlvl) pc.give_item2("13009") pc.give_item2("14009") pc.give_item2("15009") pc.give_item2("16009") pc.give_item2("17009") pc.give_item2(horseitem) pc.give_item2("27001",200) pc.give_item2("27004",200) pc.changegold(gold) pc.changealignment(hkp) pc.setqf("basic_weapon",1) else chat("Welcome back "..name) end end end end Link to comment Share on other sites More sharing options...
Leiner. Posted May 25, 2013 Author Report Share Posted May 25, 2013 Aquí una más completita que encontré ------------------------------------------- ----- FirstLogin Vol.1 (Easy 2 Learn) --------- Coded by /TfFReckLess --- The Favorites Few (TfF) - Dev-Team ------------------------------------------- quest give_basic_weapon begin state start begin when login begin -- Text informations | Start local hostname = "Metin2" -- Sets the servername local text1 = "Write here your text1." local text2 = "Write here your text2." local text3 = "Write here your text3." local text4 = "Write here your text4." local text5 = "Write here your text5." -- Text informations | End -- Color settings | Start local blue = color256(0,0,128) -- RGB Decimal Color (Blue) local purple = color256(138,43,226) -- RGB Decimal Color (Purple) -- Color settings | End -- Equipment settings | Start local lvl = 15 -- Sets player level local hlvl = 11 -- Sets horse level local horseitem = 50052 -- Sets horse book local gold = 50000 -- Sets gold count local hkp = 12000 -- Sets alignment count -- Equipment settings | End local name = pc.get_name() if pc.getqf("basic_weapon") == 0 then say_size(40,30) -- Window size setbgimage("level_bg.tga") -- Sets background image from path: d:/ymir work/ui/game/questboard/ say(blue.."Welcome "..name.." on "..hostname.."."..blue) say("") say(purple.."You got a typical equip!"..purple) say(purple.."Good game! ~ The Favorites Few (TfF)"..purple) say("") say(purple..""..text1..""..purple) say(purple..""..text2..""..purple) say(purple..""..text3..""..purple) say(purple..""..text4..""..purple) say(purple..""..text5..""..purple) say("") if pc.get_job() == 0 then -- Warrior pc.give_item2("19") pc.give_item2("11209") pc.give_item2("12209") notice_all(name.." (Warrior) is new on "..hostname) elseif pc.get_job() == 1 then -- Assassin pc.give_item2("1009") pc.give_item2("11409") pc.give_item2("12349") notice_all(name.." (Assassin) is new on "..hostname) elseif pc.get_job() == 2 then -- Sura pc.give_item2("19") pc.give_item2("11609") pc.give_item2("12489") notice_all(name.." (Sura) is new on "..hostname) elseif pc.get_job() == 3 then -- Mage pc.give_item2("7009") pc.give_item2("11809") pc.give_item2("12629") notice_all(name.." (Mage) is new on "..hostname) end while pc.get_level() < lvl do pc.give_exp2(pc.get_next_exp()) end horse.set_level(hlvl) pc.give_item2("13009") pc.give_item2("14009") pc.give_item2("15009") pc.give_item2("16009") pc.give_item2("17009") pc.give_item2(horseitem) pc.give_item2("27001",200) pc.give_item2("27004",200) pc.changegold(gold) pc.changealignment(hkp) pc.setqf("basic_weapon",1) else chat("Welcome back "..name) end end end end Vlae muchas gracias tambien a ti man Link to comment Share on other sites More sharing options...
Recommended Posts