Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- prontera,150,160,5 script Empacotador 871,{
- show "[ Empacotador ]";
- show "Olá Gostaria de fazer algo hoje ?";
- next;
- menu "Empacotar YGG",empa,"Desempacotar",desem,"Cancelar",no;
- next;
- empa:
- next;
- show "[ Empacotador ]";
- if(countitem(607) < 100)
- {
- show "Você não possui Frutos de Yggdrasil Suficientes.";
- close;
- }
- show "Empacotamento feito com Sucesso.";
- delitem 607,100;
- additem 20523,1;
- close;
- }
- desem:
- next;
- show "[ Empacotador ]";
- if(countitem(20523) < 1)
- {
- show "Você não possui a caixa de Ygg.";
- close;
- }
- show "Desempacotamento feito com Sucesso.";
- delitem 20532,1;
- additem 607,100;
- close;
- }
- no:
- show "[ Empacotador ]";
- show "Volte sempre.";
- close;
- }
Advertisement
Add Comment
Please, Sign In to add comment