Edit (2024): You no longer need to follow this guide! Just use PrismLauncher.
.
.
.
.
#!/usr/bin/php | |
<?php | |
if(!function_exists('curl_init')) { | |
die('cURL not available!'); | |
} | |
// check if there are every required arguments | |
if (count($argv) < 4) { | |
echo('USAGE: ' . $argv[0] . ' <URL> <TOKEN> <ROOM ALIAS|ID>'); |
Edit (2024): You no longer need to follow this guide! Just use PrismLauncher.
.
.
.
.