Untitled

By Hot Zebra, 10 Years ago, written in PHP, viewed 554 times.
URL http://pb.stoleyour.com/view/b1d355ee 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.  
  66. function print_list($array) {
  67. $str = '<ul>';
  68.         foreach($array as $key => $value) {
  69.                 $str .= '<li> ' . $key .': ';
  70.                         if(is_object($value) || is_array($value)) {
  71.                                 $str .= print_list($value);    
  72.                         } else {
  73.                                 $str .= $value;
  74.                         }
  75.                 $str .= '</li>';
  76.         }
  77. $str .= '</ul>';
  78. return $str;
  79. }

Replies to Untitled rss

Title Name When
Re: Untitled Scribby Crocodile 10 Years ago.

Reply to "Untitled"

Here you can reply to the paste above