├── .gitignore ├── API ├── api.php ├── apiExample.php ├── apiFunctions.php └── readME.md ├── ArmaRConClass ├── .DS_Store └── rcon.php ├── Backend ├── changeLicense.php ├── updateGangs.php ├── updateHouses.php ├── updatePlayers.php └── updateVehicles.php ├── Contributors.txt ├── LICENSE ├── README.md ├── addStaff.php ├── changePerms.php ├── create.php ├── delete.php ├── dist ├── .DS_Store ├── css │ ├── .DS_Store │ ├── bootstrap.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ └── bootstrap.min.js ├── editHouses.php ├── editPlayer.php ├── functions.php ├── gangs.php ├── header ├── .DS_Store └── header.php ├── help.php ├── home.php ├── houses.php ├── images ├── Admin.png ├── img1.jpg ├── img10.jpg ├── img2.jpg ├── img3.jpg ├── img4.jpg ├── img5.jpg ├── img6.jpg ├── img7.jpg ├── img8.jpg ├── img9.jpg ├── jason.png └── man.png ├── index.php ├── locked.php ├── login.php ├── logout.php ├── logs.php ├── lvlError.php ├── notes.php ├── notesView.php ├── permissions.php ├── players.php ├── profile.php ├── rCon ├── Kmenu.php ├── Kplayer.php ├── SKPlayerv1.php ├── header │ └── header.php ├── player.php ├── rcon-Skick.php ├── rcon-ban.php ├── rcon-check.php ├── rcon-kick.php ├── rcon-mess.php ├── rcon-restart.php ├── rcon-stop.php ├── rcon-unBan.php └── unBan.php ├── reimbursement.php ├── scripts ├── jquery-1.12.3.min.js └── jquery.backstretch.js ├── settings.php ├── staff.php ├── steam.php ├── styles ├── .DS_Store ├── dashboard.css └── global.css ├── updateSettings.php ├── vehicles.php ├── verifyCheck.php └── whitelist.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /API/api.php: -------------------------------------------------------------------------------- 1 | '; 197 | $time = microtime(); 198 | $time = explode(' ', $time); 199 | $time = $time[1] + $time[0]; 200 | $finish = $time; 201 | $total_time = round(($finish - $start), 4); 202 | echo 'Page generated in '.$total_time.' seconds.'; 203 | } 204 | } else { 205 | echo 'Invalid credentials'; 206 | } 207 | } else { 208 | echo 'Disabled'; 209 | } 210 | -------------------------------------------------------------------------------- /API/apiExample.php: -------------------------------------------------------------------------------- 1 | 13 | 14 |
30 |