Pathits! Posted January 23, 2013 Report Share Posted January 23, 2013 Hola alguien que sepa mucho de esto me pdria ayudar porfavor quest caball begin state start begin when login or levelup with pc.get_level() == 5 begin chat("") horse.set_level("1") end end end quiero que cada 5 lvl del pj el caballo suba 1 pero no funciona.... gracias de antemano esto no va acá pero aprovecho para no hacer otro post say (" quieres aplicarle bonus a tu caballo ") say (" adelante escoje cual quieres" ) e = select("Critico", "penetracion", "montruo","Medio Humano","HP","SP", "Cerrar") if e == 1 then quiero poner esos bonus, la quest es mas larga pero eso es lo que me falta.. gracias Link to comment Share on other sites More sharing options...
DryUz Posted January 23, 2013 Report Share Posted January 23, 2013 tienes que hacer barias quest algo asi quest caball begin state start begin when login or levelup with pc.get_level() == 5 begin chat("") horse.set_level("5") end end end quest caball begin state start begin when login or levelup with pc.get_level() == 10 begin chat("") horse.set_level("11") end end end quest caball begin state start begin when login or levelup with pc.get_level() == 15 begin chat("") horse.set_level("21") end end end algo asi debes hacer ir sumando el lv del caballo o al subir 5 niveles el caballo siempre sera lv 1 Link to comment Share on other sites More sharing options...
PACI Posted January 24, 2013 Report Share Posted January 24, 2013 tienes que hacer barias quest algo asi quest caball begin state start begin when login or levelup with pc.get_level() == 5 begin chat("") horse.set_level("5") end end end quest caball begin state start begin when login or levelup with pc.get_level() == 10 begin chat("") horse.set_level("11") end end end quest caball begin state start begin when login or levelup with pc.get_level() == 15 begin chat("") horse.set_level("21") end end end algo asi debes hacer ir sumando el lv del caballo o al subir 5 niveles el caballo siempre sera lv 1 En la misma quest pueden ir varios when. Ademas, yo a lo mejor lo haria con los qf '-' aunque no se si va Link to comment Share on other sites More sharing options...
Croqueta Posted January 24, 2013 Report Share Posted January 24, 2013 quest caball begin state start begin when login or levelup begin local lvl= pc.get_level() if lvl == 5 then horse.set_level("5") elseif lvl ==10 then horse.set_level("11") elseif lvl == 15 then horse.set_level("21") end end end end Link to comment Share on other sites More sharing options...
Recommended Posts