Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. {$I AeroLib/AeroLib.Simba}
  2.  
  3.  
  4.  
  5. function RandStr(Len: Integer): string;
  6. var
  7. I, y, cLen, clen2: Integer;
  8. Chars, chars1: string;
  9. begin
  10. Chars := 'abcdefghijklmnopqrstuvwxyz0123456789';
  11. cLen := length(chars);
  12. for i := 1 to Len do
  13. if (Random(2) = 1) then
  14. Result := Result + uppercase(Chars[Random(cLen) + 1])
  15. else
  16. Result := Result + Chars[Random(cLen) + 1];
  17. typesend(Result, false);
  18. case random(1,4) of
  19. 1:
  20. begin
  21. typesend('@gmail.com');
  22. end;
  23. 2:
  24. begin
  25. typesend('@hotmail.com');
  26. end;
  27. 3:
  28. begin
  29. typesend('@yahoo.com');
  30. end;
  31. 4:
  32. begin
  33. typesend('@outlook.com');
  34. end;
  35. 5:
  36. begin
  37. typesend('@live.nl');
  38. end;
  39. end;
  40. end;
  41. procedure firstclicks;
  42. begin
  43. MoveMouse(393, 477);//Create Account
  44. fastClick(MOUSE_LEFT);
  45. wait(3000);
  46. MoveMouse(694, 529);//Done design
  47. fastClick(MOUSE_LEFT);
  48. wait(3000);
  49.  
  50. MoveMouse(702, 254); //Random Name
  51. fastClick(MOUSE_LEFT);
  52. wait(500);
  53. end;
  54. procedure ChooseAge;
  55. begin
  56. moveMouse(513, 346); //Age
  57. fastClick(MOUSE_LEFT);
  58. wait(500);
  59.  
  60. case random(1,9) of
  61.  
  62. 1:
  63. begin
  64. typesend('1', false);
  65. end;
  66. 2:
  67. begin
  68. typesend('2', false );
  69. end;
  70. 3:
  71. begin
  72. typesend('3', false);
  73. end;
  74. 4:
  75. begin
  76. typesend('4', false);
  77. end;
  78. 5:
  79. begin
  80. typesend('5', false);
  81. end;
  82. 6:
  83. begin
  84. typesend('6', false);
  85. end;
  86. 7:
  87. begin
  88. typesend('7', false);
  89. end;
  90. 8:
  91. begin
  92. typesend('8', false);
  93. end;
  94. 9:
  95. begin
  96. typesend('9', false);
  97. end;
  98. end;
  99. case random(1,9) of
  100.  
  101. 1:
  102. begin
  103. typesend('1');
  104. end;
  105. 2:
  106. begin
  107. typesend('2');
  108. end;
  109. 3:
  110. begin
  111. typesend('3');
  112. end;
  113. 4:
  114. begin
  115. typesend('4');
  116. end;
  117. 5:
  118. begin
  119. typesend('5');
  120. end;
  121. 6:
  122. begin
  123. typesend('6');
  124. end;
  125. 7:
  126. begin
  127. typesend('7');
  128. end;
  129. 8:
  130. begin
  131. typesend('8');
  132. end;
  133. 9:
  134. begin
  135. typesend('9');
  136. end;
  137. end;
  138. end;
  139. function RandStr1(Len: Integer): string;
  140. var
  141. I, y, cLen, clen2: Integer;
  142. Chars, chars1: string;
  143. begin
  144. Chars := 'abcdefghijklmnopqrstuvwxyz0123456789';
  145. cLen := length(chars);
  146. for i := 1 to Len do
  147. if (Random(2) = 1) then
  148. Result := Result + uppercase(Chars[Random(cLen) + 1])
  149. else
  150. Result := Result + Chars[Random(cLen) + 1];
  151. typesend(Result, false);
  152. end;
  153. procedure logout;
  154. begin
  155. RandStr(random(4, 9));
  156.  
  157. wait(500);
  158.  
  159. MoveMouse(695, 527);//Play now
  160. fastClick(MOUSE_LEFT);
  161. wait(10000);
  162.  
  163. MoveMouse(400, 275);// have played recently
  164. fastClick(MOUSE_LEFT);
  165. wait(225);
  166.  
  167. PressKey(VK_ESCAPE);//Option menu
  168. wait(529);
  169.  
  170. MoveMouse(395, 481);//logout
  171. fastClick(MOUSE_LEFT);//logsout
  172. end;
  173. begin
  174. firstclicks;
  175.  
  176. Chooseage;
  177. Randstr(random(4, 8));
  178. wait(1000);
  179. Randstr1(random(5, 8));
  180. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement