brendorox

Untitled

Aug 24th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. prontera,150,160,5 script Empacotador 871,{
  2.  
  3. show "[ Empacotador ]";
  4. show "Olá Gostaria de fazer algo hoje ?";
  5. next;
  6. menu "Empacotar YGG",empa,"Desempacotar",desem,"Cancelar",no;
  7. next;
  8.  
  9. empa:
  10. next;
  11. show "[ Empacotador ]";
  12. if(countitem(607) < 100)
  13. {
  14. show "Você não possui Frutos de Yggdrasil Suficientes.";
  15. close;
  16. }
  17. show "Empacotamento feito com Sucesso.";
  18. delitem 607,100;
  19. additem 20523,1;
  20. close;
  21.  
  22. }
  23.  
  24. desem:
  25. next;
  26. show "[ Empacotador ]";
  27. if(countitem(20523) < 1)
  28. {
  29. show "Você não possui a caixa de Ygg.";
  30. close;
  31. }
  32.  
  33. show "Desempacotamento feito com Sucesso.";
  34. delitem 20532,1;
  35. additem 607,100;
  36. close;
  37.  
  38. }
  39.  
  40. no:
  41. show "[ Empacotador ]";
  42. show "Volte sempre.";
  43. close;
  44.  
  45. }
Advertisement
Add Comment
Please, Sign In to add comment