KananGamer

[Macro] Ghost Network - Armazem

Feb 7th, 2021 (edited)
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. $${ unset(#slot[]);
  2. // --------------- CONFIGURAÇÕES --------------- //
  3.  
  4. // Slots
  5. #slot[] = 15;
  6.  
  7. // Delays
  8. #abrir_armazem = 60000;
  9. #aguardar_armazem = 500;
  10. #clicar_slot = 500;
  11.  
  12. // -------------------------------------------- //
  13.  
  14. if(!started);
  15. set(started);
  16. log("&6&l[Macro Armazém] &cDesativado");
  17. stop();
  18. else;
  19. unset(started);
  20. log("&6&l[Macro Armazém] &2Ativado");
  21.  
  22. do;
  23. echo("/armazem");
  24. wait(%#aguardar_armazem%ms);
  25.  
  26. arraysize(#slot, #slot_size);
  27.  
  28. #i = 0;
  29. do;
  30. slotclick(%#slot[%#i%]%, RMB);
  31. wait(%#clicar_slot%ms);
  32. inc(#i);
  33. while(#i < #slot_size);
  34.  
  35. gui();
  36. wait(%#abrir_armazem%ms);
  37. loop;
  38. endif;
  39. }$$
Add Comment
Please, Sign In to add comment