Advertisement
Guest User

Untitled

a guest
May 20th, 2019
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 11.08 KB | None | 0 0
  1. <?php
  2. include 'apiFunctions/init.php';
  3. $twitchtv = new TwitchTV;
  4.  
  5. $user = checkConnect();
  6. ?>
  7. <!DOCTYPE html>
  8. <html>
  9.     <head>
  10.         <title>Commands list | Trahanqc's API</title>
  11.  
  12.         <?php include 'includes/header.php'; ?>
  13.  
  14.     </head>
  15.     <body>
  16.         <nav class="navbar navbar-fixed-top navbar-dark bg-inverse">
  17.             <a class="navbar-brand" href="dashboard">Trahanqc's API</a>
  18.  
  19.             <div class="globalMessage"><?= $messageGlobal; ?></div>
  20.  
  21.             <ul class="nav nav-pills nav-right" role="tablist" data-toggle="pill">
  22.                 <?php if(!empty($user)) : ?>
  23.                     <li class="nav-item dropdown">
  24.                         <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false"><?= $user[0]['twitchUsername']; ?></a>
  25.                         <div class="dropdown-menu">
  26.                             <a class="dropdown-item" href="logout">Logout</a>
  27.                         </div>
  28.                     </li>
  29.                 <?php else: ?>
  30.                     <li class="nav-item">
  31.                         <a class="nav-link" href="<?php echo $twitchtv->authenticate() ?>" id="login_twitch">Login with Twitch</a>
  32.                     </li>
  33.                 <?php endif; ?>
  34.             </ul>
  35.         </nav>
  36.  
  37.         <div id="wrapper">
  38.             <div id="sidebar">
  39.                 <?php include 'addon/main_menu.php'; ?>
  40.             </div>
  41.  
  42.             <div id="content">
  43.                 <div class="container-fluid">
  44.                     <div class="row">
  45.                         <div class="col-lg-12">
  46.                             <h1 class="page-header">Commands list</h1>
  47.  
  48.                             <ol class="breadcrumb">
  49.                                 <li class="active">
  50.                                     <i class="fa fa-dashboard"></i>  <a href="dashboard">Dashboard</a>
  51.                                 </li>
  52.                                 <li>
  53.                                     <i class="fa fa-terminal"></i>  Commands list
  54.                                 </li>
  55.                             </ol>
  56.  
  57.                             <p>Within this API, we have access to a lot of commands.  Some may be more useful for you and you can choose to add any of them.  Sadly, you will need to add them individually.  Feel free to change the command name, these are just examples!</p>
  58.  
  59.                             <table class="table table-hover table-striped table-responsive">
  60.                                 <thead>
  61.                                     <tr>
  62.                                         <th>Command name</th>
  63.                                         <th>Description</th>
  64.                                         <th>Example</th>
  65.                                     </tr>
  66.                                 </thead>
  67.                                 <tbody>
  68.                                     <tr>
  69.                                         <td>!championPoints</td>
  70.                                         <td>Display your champion points with a champion and if a chest has been granted.</td>
  71.                                         <td>
  72.                                             <code>Trahanqc: !championPoints tristana</code><br>
  73.                                             <code>Nightbot: Champion level 5 (58190 points - S). Chest granted!</code>
  74.                                         </td>
  75.                                     </tr>
  76.                                     <tr>
  77.                                         <td>!doublekills</td>
  78.                                         <td>Display the number of doublekills you have and with which champions.  <strong>Note: be careful, the response may be long!</strong></td>
  79.                                         <td>
  80.                                             <code>Trahanqc: !doublekills</code><br>
  81.                                             <code>Nightbot: Ekko (22), Shaco (13), Malphite (4), Zac (3)</code>
  82.                                         </td>
  83.                                     </tr>
  84.                                     <tr>
  85.                                         <td>!lastgame</td>
  86.                                         <td>Display the statistics of your last ranked game.</td>
  87.                                         <td>
  88.                                             <code>Trahanqc: !lastgame</code><br>
  89.                                             <code>Nightbot: Last game won with Gragas 5/4/11 (4 KDA with 51.6% kill participation) 1 double kill</code>
  90.                                         </td>
  91.                                     </tr>
  92.                                     <tr>
  93.                                         <td>!masteries</td>
  94.                                         <td>Display your masteries for the current game.  <strong>Note: The summoner must be in a game.</strong></td>
  95.                                         <td>
  96.                                             <code>Trahanqc: !masteries</code><br>
  97.                                             <code>Nightbot: 12/18/0 (Thunderlord's Decree)</code>
  98.                                         </td>
  99.                                     </tr>
  100.                                     <tr>
  101.                                         <td>!mostplayed</td>
  102.                                         <td>Display the 5 most played champions in ranked games.</td>
  103.                                         <td>
  104.                                             <code>Trahanqc: !mostplayed</code><br>
  105.                                             <code>Nightbot: 1. Ekko (35), 2. Shaco (16), 3. Zac (9), 4. Malphite (9), 5. Brand (6)</code>
  106.                                         </td>
  107.                                     </tr>
  108.                                     <tr>
  109.                                         <td>!pentakills</td>
  110.                                         <td>Display the number of pentakills you have and with which champions.  <strong>Note: be careful, the response may be long!</strong></td>
  111.                                         <td>
  112.                                             <code>Trahanqc: !pentakills</code><br>
  113.                                             <code>Nightbot: Ekko (1)</code>
  114.                                         </td>
  115.                                     </tr>
  116.                                     <tr>
  117.                                         <td>!quadrakills</td>
  118.                                         <td>Display the number of quadrakills you have and with which champions.  <strong>Note: be careful, the response may be long!</strong></td>
  119.                                         <td>
  120.                                             <code>Trahanqc: !quadrakills</code><br>
  121.                                             <code>Nightbot: Ekko (2)</code>
  122.                                         </td>
  123.                                     </tr>
  124.                                     <tr>
  125.                                         <td>!queue</td>
  126.                                         <td>Display your current queue type.  <strong>Note: The summoner must be in a game.</strong></td>
  127.                                         <td>
  128.                                             <code>Trahanqc: !queue</code><br>
  129.                                             <code>Nightbot: Ranked 5v5 Draft Pick</code>
  130.                                         </td>
  131.                                     </tr>
  132.                                     <tr>
  133.                                         <td>!rank</td>
  134.                                         <td>Display your current League of Legends ranking.</td>
  135.                                         <td>
  136.                                             <code>Trahanqc: !rank</code><br>
  137.                                             <code>Nightbot: Gold V (86 LP) Series: ✓ X -</code>
  138.                                         </td>
  139.                                     </tr>
  140.                                     <tr>
  141.                                         <td>!rankof <code>Summoner name</code></td>
  142.                                         <td>Display the current League of Legends ranking of <code>Summoner name</code>.</td>
  143.                                         <td>
  144.                                             <code>Trahanqc: !rankof trahanqc</code><br>
  145.                                             <code>Nightbot: Gold V (86 LP) Series: ✓ X -</code>
  146.                                         </td>
  147.                                     </tr>
  148.                                     <tr>
  149.                                         <td>!stats <code>Champion name</code></td>
  150.                                         <td>Display your current stats with <code>Champion name</code> in ranked games.</td>
  151.                                         <td>
  152.                                             <code>Trahanqc: !stats ekko</code><br>
  153.                                             <code>Nightbot: 57.1% [20/15]. KDA: 8.1/7.7/8.6 1 penta kill</code>
  154.                                         </td>
  155.                                     </tr>
  156.                                     <tr>
  157.                                         <td>!streak</td>
  158.                                         <td>Display your current winning/losing streak in ranked games.</td>
  159.                                         <td>
  160.                                             <code>Trahanqc: !streak</code><br>
  161.                                             <code>Nightbot: Win (1)</code>
  162.                                         </td>
  163.                                     </tr>
  164.                                     <tr>
  165.                                         <td>!triplekills</td>
  166.                                         <td>Display the number of triplekills you have and with which champions.  <strong>Note: be careful, the response may be long!</strong></td>
  167.                                         <td>
  168.                                             <code>Trahanqc: !triplekills</code><br>
  169.                                             <code>Nightbot: Ekko (4), Malphite (1), Pantheon (1), Gragas (1)</code>
  170.                                         </td>
  171.                                     </tr>
  172.                                     <tr>
  173.                                         <td>!winrate</td>
  174.                                         <td>Display your overall winning pourcentage and your top 5 champions with 5 games or more in ranked games.</td>
  175.                                         <td>
  176.                                             <code>Trahanqc: !winrate</code><br>
  177.                                             <code>Nightbot: Overall : 48% Top 5 : 1. Blitzcrank (83.3%), 2. Brand (66.7%), 3. Ekko (57.1%), 4. Shaco (56.3%), 5. Morgana (40%)</code>
  178.                                         </td>
  179.                                     </tr>
  180.                                 </tbody>
  181.                             </table>
  182.  
  183.                             <div class="blank"></div>
  184.                         </div>
  185.                     </div>
  186.                 </div>
  187.             </div>
  188.         </div>
  189.  
  190.         <?php include 'includes/footer.php'; ?>
  191.  
  192.     </body>
  193. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement