Jfirewall Posted July 13, 2013 Report Share Posted July 13, 2013 Igual que un banco normal, pero con la diferencia de que en este puedes guardar el yang sin tener que tener los chekes en el inventario. quest bancoinf begin state start begin when 20023.chat."Banco interminable" begin say_title("Banco:") say("Bienvenido al banco sin fondo") say("Que quieres hacer?") local menu = select("Sacar yang", "Meter yang", "Cerrar") if menu == 3 then return elseif menu == 1 then -- Sacar yang if pc.getqf("banco") == 0 then say("No tienes yang en el banco.") else say("Banco infinito:") say("Ahora mismo dispones de "..pc.getqf("banco")..".000.000 yang") say("Que cantidad deseas retirar?") local yang = select ("250kk","500kk","1kkk","1.5kkk","Cerrar") if yang == 5 then return elseif yang == 1 then if pc.getqf("banco") >= 250 and pc.get_money() <= 1749999999 then pc.setqf("banco",pc.getqf("banco")-250) pc.change_money(250000000) say("La cantidad ha sido retirada con éxito") else say("No se ha podido realizar la operación") say("Comprueba que no vallas a superar los 2kkk") say("y que tengas suficiente yang en el banco") end elseif yang == 2 then if pc.getqf("banco") >= 500 and pc.get_money() <= 1499999999 then pc.setqf("banco",pc.getqf("banco")-500) pc.change_money(500000000) say("La cantidad ha sido retirada con éxito") else say("No se ha podido realizar la operación") say("Comprueba que no vallas a superar los 2kkk") say("y que tengas suficiente yang en el banco") end elseif yang == 3 then if pc.getqf("banco") >= 1000 and pc.get_money() <= 999999999 then pc.setqf("banco",pc.getqf("banco")-1000) pc.change_money(1000000000) say("La cantidad ha sido retirada con éxito") else say("No se ha podido realizar la operación") say("Comprueba que no vallas a superar los 2kkk") say("y que tengas suficiente yang en el banco") end elseif yang == 4 then if pc.getqf("banco") >= 1500 and pc.get_money() <= 499999999 then pc.setqf("banco",pc.getqf("banco")-1500) pc.change_money(1500000000) say("La cantidad ha sido retirada con éxito") else say("No se ha podido realizar la operación") say("Comprueba que no vallas a superar los 2kkk") say("y que tengas suficiente yang en el banco") end end end elseif menu == 2 then -- Meter yang say("Que cantidad de yang quieres guardar?") local yang = select("250kk","500kk","1kkk","1.5kkk","Cerrar") if yang == 5 then return elseif yang == 1 then if pc.get_money() >= 250000000 then pc.setqf("banco",pc.getqf("banco")+250) pc.change_money(-250000000) say("Su yang ha sido guardado en el banco") else say("No tienes tanto yang para guardar") end elseif yang == 2 then if pc.get_money() >= 500000000 then pc.setqf("banco",pc.getqf("banco")+500) pc.change_money(-500000000) say("Su yang ha sido guardado en el banco") else say("No tienes tanto yang para guardar") end elseif yang == 3 then if pc.get_money() >= 1000000000 then pc.setqf("banco",pc.getqf("banco")+1000) pc.change_money(-1000000000) say("Su yang ha sido guardado en el banco") else say("No tienes tanto yang para guardar") end elseif yang == 4 then if pc.get_money() >= 1500000000 then pc.setqf("banco",pc.getqf("banco")+1500) pc.change_money(-1500000000) say("Su yang ha sido guardado en el banco") else say("No tienes tanto yang para guardar") end end end end endend Echa Por Yori Ojala Les Sirva luis ricardo porres dias 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.