Magician Posted August 22, 2016 at 11:20 AM Share Posted August 22, 2016 at 11:20 AM quest clean_inventory begin state start begin when 9005.chat."Limpar Inventário " begin say_title(mob_name(npc.get_race())) say("O Inventário que Escolheres será limpo.") say("Presta atenção quando tomares a tua decisão.") say_reward("Escolhe o Inventário que desejas Limpar.") local s = select("Inventário - I","Inventário - II","Remover todos os items","Cancelar") if s == 1 then say("Desejas mesmo Limpar o Inventário I?") if select("Sim","Não") == 2 then return end clean_inventory.empty(0,44) elseif s == 2 then say("Desejas Mesmo Limpar o Inventário II?") if select("Sim","Não") == 2 then return end clean_inventory.empty(45,89) elseif s == 3 then say("Desejas Mesmo Eliminar todos os Items?") say("equipments?") if select("Sim","Não") == 2 then return end clean_inventory.empty(0,89) else return end end function empty(a,b) for i=a, b do item.select_cell(i) item.remove() end end end end Creditos : Metin2dev pela Publicação DevelopeGames.esy.es Pela Tradução Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now