Advertisement
oxguy3

Untitled

Jan 29th, 2015
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1.     $args = explode("/",$_GET["arg"]);
  2.  
  3.    
  4.  
  5.     switch($args[0])
  6.  
  7.     {
  8.  
  9.         case "add":
  10.  
  11.             $args[1] == "direct" ? $hl->directHighlightThat($args[2]) : ($args[1] == "coebot" ? $hl->coeBotHighlight($args[2],$args[3]) : $hl->highlightThat($args[1]));
  12.  
  13.             break;
  14.  
  15.         default:
  16.  
  17.             $args[0] == "view" ? $hl->viewHighlights($args[1],$args[2]) : ($args[1] ? $hl->showStatsv2($args[0],$args[1]) : $hl->showStatsv2($args[0]));
  18.  
  19.             break;
  20.  
  21.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement