Advertisement
Guest User

Untitled

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