Re: Untitled

By Scribby Crocodile, 10 Years ago, written in PHP, viewed 588 times. This paste is a reply to Untitled by Hot Zebra
URL http://pb.stoleyour.com/view/b9d1c71f Embed
Download Paste or View RawExpand paste to full width of browser
  1. <?php
  2.  
  3. include_once('mcmyadmin.class.php');
  4.  
  5. $mcconfig = array(
  6.     'username'  => 'snip',
  7.     'password'  => 'snip',
  8.     'host'      => 'snip',
  9.     'port'      => snip,
  10.  );
  11.  
  12.         $mcmyadmin = new McMyAdmin($mcconfig['username'],$mcconfig['password'],$mcconfig['host'],$mcconfig['port']);
  13.  
  14.                 $players = $mcmyadmin->getPlayers();
  15.                 echo "" . implode(" ",$players);
  16.  
  17.         if(isset($_GET['start'])) {
  18.                 $mcmyadmin->startServer();
  19.                 }
  20.  
  21.         if(isset($_GET['stop'])) {
  22.                 $mcmyadmin->stopServer();
  23.                 }
  24.                
  25.         if(isset($_GET['restart'])) {
  26.                 $mcmyadmin->restartServer();
  27.                 }
  28.  
  29.                 if(isset($_GET['kill'])) {
  30.                         $mcmyadmin->killServer();
  31.                 }
  32.  
  33.                 if(isset($_GET['30s-restart'])) {
  34.                         $mcmyadmin->sendChat('The Server will be restarted in 30 seconds.');
  35.                 }
  36.  
  37.                 if(isset($_GET['20s-restart'])) {
  38.                         $mcmyadmin->sendChat('The Server will be restarted in 20 seconds.');
  39.                 }
  40.  
  41.                 if(isset($_GET['10s-restart'])) {
  42.                         $mcmyadmin->sendChat('The Server will be restarted in 10 seconds.');
  43.                 }
  44.  
  45.                 if(isset($_GET['5s-restart'])) {
  46.                         $mcmyadmin->sendChat('The Server will be restarted in 5 seconds.');
  47.                 }
  48.                
  49.                 if(isset($_GET['30s-stop'])) {
  50.                         $mcmyadmin->sendChat('The Server will be shut down in 30 seconds.');
  51.                 }
  52.  
  53.                 if(isset($_GET['20s-stop'])) {
  54.                         $mcmyadmin->sendChat('The Server will be shut down in 20 seconds.');
  55.                 }
  56.  
  57.                 if(isset($_GET['10s-stop'])) {
  58.                         $mcmyadmin->sendChat('The Server will be shut down in 10 seconds.');
  59.                 }
  60.  
  61.                 if(isset($_GET['5s-stop'])) {
  62.                         $mcmyadmin->sendChat('The Server will be shut down in 5 seconds.');
  63.                 }
  64.  
  65.                 if(isset($_GET['whitelist'])) {
  66.                         $mcmyadmin->addGroupValue ("Everyone", "groupmembers", $_GET['whitelist']);
  67.                 }
  68.                
  69.  
  70. function print_list($array) {
  71. $str = '<ul>';
  72.         foreach($array as $key => $value) {
  73.                 $str .= '<li> ' . $key .': ';
  74.                         if(is_object($value) || is_array($value)) {
  75.                                 $str .= print_list($value);    
  76.                         } else {
  77.                                 $str .= $value;
  78.                         }
  79.                 $str .= '</li>';
  80.         }
  81. $str .= '</ul>';
  82. return $str;
  83. }

Reply to "Re: Untitled"

Here you can reply to the paste above