Advertisement
Guest User

Untitled

a guest
Jul 6th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <?php
  2.  
  3. $pclkey = "betas";
  4. require "library.php";
  5. require "tasks.php";
  6.  
  7. $Username = "Gamerbot1";
  8. $Password = "apasswordthatsnotmine";
  9. $Server = "Ascent";
  10. $p->safetySignal(Advanced);
  11.  
  12. $rooms = "100%110%111%120%121%130%200%210%220%221%230%300%310%320%330%340%400%410%411%800%801%802%803%804%805%806%807%808%809%420%421%422%423";
  13.  
  14. $e_rooms = explode("%", $rooms);
  15.  
  16. $x = 1;
  17.  
  18. $p = new Pickle;
  19.  
  20. $p->connect($Username, $Password, $Server);
  21.  
  22. if ($p->run) {
  23. while($x <= 32) {
  24. $p->buddyRape($e_rooms[$x]);
  25. echo "Buddy raped room:". $e_rooms[$x] ."\n";
  26. $x++;
  27. }
  28. }
  29.  
  30.  
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement