Guest User

Untitled

a guest
Oct 22nd, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <?php
  2. require_once('Pickle.php');
  3. $p = new Pickle();
  4.  
  5. define("CPPS_LOGIN_SERVER", "184.22.122.130:6112");
  6. define("CPPS_GAME_PORT", 9875);
  7. define("CPPS_LOGIN_ERROR", 'There was an error logging in. ');
  8.  
  9. $Username = "Kelly";
  10. $Password = "HOW MANY TIMES DO I NEED TO TELL YOU FANGS?! NO YOU CANNOT HAVE IT.";
  11.  
  12. $login = $p->connect($Username, $Password, CPPS_LOGIN_SERVER, CPPS_GAME_PORT);
  13. if(!($login)) {
  14. die(CPPS_LOGIN_ERROR . $login);
  15. }
  16. while(true) {
  17. $p->getCoins(5000);
  18. echo "[".date("H\:i\:s")."] 5000 Coins were added!\n";
  19. }
  20. ?>
Add Comment
Please, Sign In to add comment