andercitox Posted August 8, 2013 Report Share Posted August 8, 2013 Alguien tiene alguna quest hecha q al entrar al serve por primera vez te de lvl 250??? yo modifique la give_basic_weapon.quest cn varias guias q vi por aca en el foro pero en mis files no se cambia la quest no se que pasa... y aparte la elimino por completa la give_basic_weapon.quest y sigue dando los items iniciales y eso q hago los reload Q .. alguna solucion? o alguien me pasa alguna hecha cn el lvl 250 ?? uso los files de arthur.Salu2s Link to comment Share on other sites More sharing options...
Tiico™ Posted August 9, 2013 Report Share Posted August 9, 2013 quest experiencia begin state start begin when login with pc.get_level() == 1 and pc.count_item(20027) == 1 begin pc.give_exp2("999999999999") chat("Haz recibido lvl 250 satisfactoriamente.") end endend Algo así .. Espero +1 Link to comment Share on other sites More sharing options...
andercitox Posted August 9, 2013 Author Report Share Posted August 9, 2013 quest experiencia begin state start begin when login with pc.get_level() == 1 and pc.count_item(20027) == 1 then begin pc.give_exp2(999999999999) chat("Haz recibido lvl 250 satisfactoriamente.") end endend Algo así .. Espero +1 Creo q el codigo tiene algo malo o le falta algo Link to comment Share on other sites More sharing options...
Tiico™ Posted August 10, 2013 Report Share Posted August 10, 2013 Arreglada!. Link to comment Share on other sites More sharing options...
PACI Posted August 10, 2013 Report Share Posted August 10, 2013 Arreglada!.También podías usar while en vez de pc.give_exp.quest experiencia begin state start begin when login begin while pc.level < 250 do pc.give_exp2(pc.get_next_exp()) end end endend Link to comment Share on other sites More sharing options...
Recommended Posts