ChuchoClask Posted February 15, 2016 Report Share Posted February 15, 2016 Hola me preguntaba se me podrian desir como poner una funcion para bajar el nivel 250 a lvl 1 asi como el Yoneis que hace los Reset me pueden ayudar ? Link to comment Share on other sites More sharing options...
Johan™ Posted February 15, 2016 Report Share Posted February 15, 2016 Por c++ o por diff te dan las funciones y listo creas la quest con las funciones q ahregas Link to comment Share on other sites More sharing options...
ChuchoClask Posted February 15, 2016 Author Report Share Posted February 15, 2016 Por c++ o por diff te dan las funciones y listo creas la quest con las funciones q ahregas me ayudas es que me sirvio esta funcion pero nose crear la quest This difference file is created by The Interactive Disassembler game2089 00157334: 31 8B 00157335: C0 92 00157336: 85 DC 00157337: D2 00 00157338: 74 00 00157339: 26 00 0015733A: A1 89 0015733B: 20 14 0015733C: 37 24 0015733D: 4C C7 0015733E: 08 44 0015733F: 8B 24 00157340: 80 04 00157341: DC 01 00157345: 89 E8 00157346: 04 26 00157347: 24 AA 00157348: E8 ED 00157349: B3 FF 0015734A: 71 90 0015734B: EE 90 0015734C: FF 90 00312D3E: 70 72 00312D3F: 63 65 00312D40: 5F 73 00312D41: 61 65 00312D43: 74 5F 00312D44: 72 70 00312D45: 61 6F 00312D46: 63 69 00312D47: 74 6E 00312D48: 5F 74 00312D49: 72 73 00312D4A: 61 00 Y luego añadir estas nuevas funciones al quest_functions: pc.reset_points() pc.clear_skill() pc.reset_points() te bajara a level 1 y pc.clear_skill() le reseteara las habs. Link to comment Share on other sites More sharing options...
Johan™ Posted February 15, 2016 Report Share Posted February 15, 2016 En el foro ya hay guias sobre lua date una vuelta por hay. No es complicado crear esa quest, pero ando desde el celu Link to comment Share on other sites More sharing options...
ChuchoClask Posted February 15, 2016 Author Report Share Posted February 15, 2016 En el foro ya hay guias sobre lua date una vuelta por hay. No es complicado crear esa quest, pero ando desde el celu ok bueno Link to comment Share on other sites More sharing options...
Dilong Posted February 15, 2016 Report Share Posted February 15, 2016 Quest rapida,ya que no ando en la pcquest reset beginState start beginWhen npc_id.chat."reset" beginWhen reset = select("si","no")If reset == 2 thenReturnElseif reset == 1 then if pc.get_level() < 249 then chat("no eres nivel 250") elsePc.reset_points()Pc.clear_skill()Notice_all("has sido reseteado al nivel 1")EndEndEndEnd End Link to comment Share on other sites More sharing options...
ChuchoClask Posted February 15, 2016 Author Report Share Posted February 15, 2016 Quest rapida,ya que no ando en la pc quest reset begin State start begin When npc_id.chat."reset" begin When reset = select("si","no") If reset == 2 then Return Elseif reset == 1 then if pc.get_level() < 249 then chat("no eres nivel 250") else Pc.reset_points() Pc.clear_skill() Notice_all("has sido reseteado al nivel 1") End End End End End Quest rapida,ya que no ando en la pc quest reset begin State start begin When npc_id.chat."reset" begin When reset = select("si","no") If reset == 2 then Return Elseif reset == 1 then if pc.get_level() < 249 then chat("no eres nivel 250") else Pc.reset_points() Pc.clear_skill() Notice_all("has sido reseteado al nivel 1") End End End End End gracias amigo Link to comment Share on other sites More sharing options...
Recommended Posts