Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.49 KB | None | 0 0
  1. <?php
  2. $pclkey = "betas";
  3. require "library.php";
  4. require "tasks.php";
  5. //Config//
  6. $Username = "USERNAME HERE";
  7. $Password = "PASSWORD HERE";
  8. $Server = "1001";
  9. //Config//
  10. $p = new Pickle;
  11. $p->connect($Username, $Password, $Server);
  12. echo "Successfully Connect To $Server\n";
  13. $p->joinRoom(800, 0, 0);
  14. echo "Currently At The Dock\n";
  15. $p->addItem(418);
  16. echo "Free Pink Toque Added To Your Inventory\n";
  17. sleep(2);
  18. echo "Item(s) have been successfully hacked. Goodbye\n";
  19. sleep(4);
  20. exit;
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement