Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. program tradespam;
  2.  
  3.  
  4. //notes
  5. //hit the + key on your numberpad to change the text that is being repeated
  6.  
  7.  
  8. const
  9. CHANNELS = 15; //set this to the number of trade channels you want it to spam, it starts at /trade 1
  10.  
  11.  
  12. var
  13. x:integer;
  14. _text:string;
  15.  
  16.  
  17.  
  18. procedure loaddtms;
  19. begin
  20.  
  21. end;
  22.  
  23.  
  24. procedure paster;
  25. var
  26. x,y :Integer;
  27.  
  28. begin
  29. wait(1325);
  30.  
  31. presskey(13);
  32. wait(50);
  33. presskey(38);
  34. wait(25);
  35. presskey(38);
  36. wait(25);
  37. presskey(13);
  38. wait(1325);
  39. end;
  40.  
  41.  
  42. procedure spammer;
  43.  
  44. begin
  45.  
  46.  
  47. while x < CHANNELS do
  48. begin
  49.  
  50. presskey(13);
  51. wait(50);
  52. sendkeys('/trade ' + tostr(x),1,1);
  53. wait(50);
  54. presskey(13);
  55. wait(50);
  56.  
  57. paster;
  58. x := x + 1;
  59.  
  60. if iskeydown(116) then
  61. begin
  62. while not iskeydown(116) do
  63. begin
  64. sleep(250);
  65. end;
  66. end;
  67.  
  68.  
  69. end;
  70. end;
  71.  
  72.  
  73.  
  74. procedure script;
  75. begin
  76. repeat
  77. spammer;
  78. sleep(500);
  79. until x := CHANNELS;
  80. x := 1;
  81. end;
  82.  
  83. begin
  84. x := 1;
  85. loaddtms;
  86. //inputquery('tj loves','horsecock',_text);
  87. //setclipboard(_text);
  88. ActivateClient;
  89.  
  90. repeat
  91. script;
  92. until false;
  93.  
  94.  
  95.  
  96. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement