Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <?php
  2. $pclkey = "betas";
  3. require("library.php");
  4. require("tasks.php");
  5.  
  6. /*
  7. * Title: Matt's Money Maker
  8. * Version: 1.0
  9. * Legal Notice: Copying and/or plagiarizing this script is strictly prohibited.
  10. */
  11.  
  12.  
  13.  
  14. ///////////////////////////////////////////////////////////////
  15. //////////// Do not edit below this line! ///////////////////
  16. ///////////////////////////////////////////////////////////////
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27. // Welcome message ////////////////////////////////////////////
  28. $console = new console;
  29. $console->setmode(2);
  30. usleep(2500000);
  31. $console->wait = 80000;
  32. $console->colourize("Welcome to Matt's Pickle R-4 Money Maker!\n\n");
  33. sleep(2);
  34. /////////////////////////////////////////////////////////////////
  35.  
  36.  
  37.  
  38. // Config - Do not edit, it's all command line! ///////////////
  39. echo "Username: ";
  40. $Username = trim(fgets(STDIN));
  41. echo "Password: ";
  42. $Password = trim(fgets(STDIN));
  43. echo "Server: ";
  44. $Server = trim(fgets(STDIN));
  45. /////////////////////////////////////////////////////////////////
  46.  
  47. $p = new Pickle;
  48. $login = $p->connect($Username, $Password, $Server);
  49.  
  50. $p->joinGame(912);
  51. $p->getCoins(100);
  52. $p->joinRoom(800);
  53.  
  54. echo"Matt = diamonds";
  55.  
  56. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement