Guest User

Untitled

a guest
Oct 16th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2. /* Add all script made by DR34M */
  3. //YOU NEED THE PENGUIN CLIENT LIBRARY
  4. require_once('Pickle.php');
  5. $p = new Pickle();
  6.  
  7. define("CPPS_LOGIN_SERVER", "184.22.122.130:6112");
  8. define("CPPS_GAME_PORT", 6113);
  9. define("CPPS_LOGIN_ERROR", 'There was an error logging in. ');
  10.  
  11. $Username = "Ashbot4";
  12. $Password = "NOFANGSNOYOUCANNOTHAVEMYPASSWORD";
  13.  
  14. $login = $p->connect($Username, $Password, CPPS_LOGIN_SERVER, CPPS_GAME_PORT);
  15. if(!($login)) {
  16. die(CPPS_LOGIN_ERROR . $login);
  17. }
  18. else {
  19. for($i=1;$i<=19072;$i++) {
  20. $p->addItem($i);
  21. echo "Item# $i has been added!\n";
  22. }
  23. echo "\nAll items have been added!";
  24. sleep(rand(3,4));
  25. $p->disconnect();
  26. }
  27. ?>
Add Comment
Please, Sign In to add comment