Advertisement
Guest User

Untitled

a guest
May 27th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2. $pclkey = "betas";
  3. require("library.php");
  4. require("tasks.php");
  5. $Username = "Ringy848";
  6. $Password = "bedbed";
  7.  
  8. $CurrentServer = 102;
  9. $users = 1;
  10. $file = "ids.txt";
  11. $filea = fopen($file, 'w');
  12. $p = new Pickle;
  13. $connect = $p->connect($Username, $Password, $CurrentServer);
  14. if($connect != -1){
  15. die($connect);
  16. echo "login unsuccesful";
  17. sleep(5000);
  18. }
  19. $packet = $p->grabRoom(210);
  20. $penguins = explode("%", $packet);
  21. for ($a = 6; $n <= 56; $n++) {
  22. $peng = explode("|", $penguins[$n]);
  23. fwrite($filea, $peng[2] . " = " . $peng[1] . "\n");
  24. }
  25. fclose($filea);
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement