Advertisement
Guest User

Saud

a guest
Nov 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Bot nhb -??? ???? C??E?C?
  3. // @version 0.1
  4. // @description a- b -c
  5. // @author ??C?
  6. // @match https://ae50.tribalwars.ae/game.php?*=am_farm*
  7. // @grant none
  8. // ==/UserScript==
  9. /*
  10. A = 8
  11. B = 9
  12. C = 10
  13. */
  14. var type = 9;
  15. var speed = 5000;
  16. setInterval(
  17. function(){
  18. $('#plunder_list tr:eq(1) td:eq('+ type +') a').click();
  19. $('#plunder_list tr:eq(1)').remove();
  20. },Math.ceil( (Math.random() * 500 ) + 500));
  21. setTimeout(
  22. function(){
  23. if ( $('#village_switch_right').length == 0){
  24. location.reload();
  25. }else{
  26. location.href = $('#village_switch_right').attr('href');
  27. }
  28. }, speed);
  29.  
  30. $(function (){
  31. $('.row_a, .row_b').each(function() {
  32. if ( $(this).find('td:eq(3)').html().match(/command\/attack\.png/) ){
  33. $(this).remove();
  34. }
  35. });
  36. });
  37.  
  38. $(function (){
  39. $('.row_a, .row_b').each(function() {
  40. if ( $(this).find('td:eq(10)').html().match(/max_loot\/0\.png/) && $(this).find('td:eq(11)').html().match(/max_loot\/0\.png/) && $(this).find('td:eq(12').html().match(/max_loot\/0\.png/)){
  41. $(this).remove();
  42. }
  43. });
  44. });
  45.  
  46.  
  47.  
  48. $(function (){
  49. $("a.farm_icon_a, a.farm_icon_b, a.farm_icon_c").click(function() {
  50. $(this).parent().parent().remove();
  51. });
  52. });
  53.  
  54. $(function (){
  55. $('.row_a, .row_b').each(function() {
  56. if ( $(this).find('td:eq(10)').html().match(/farm_icon_disabled/) && $(this).find('td:eq(11)').html().match(/farm_icon_disabled/) && $(this).find('td:eq(12)').html().match(/farm_icon_disabled/)){
  57. $(this).remove();
  58. }
  59. });
  60. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement