Update config.php

This commit is contained in:
nolanwhy 2023-02-12 11:12:20 +01:00
parent 127d9d4e76
commit baf037c71f
1 changed files with 5 additions and 3 deletions

View File

@ -21,8 +21,8 @@ if($devmode) {
// if ur gonna use the availablegameservers array please pick a random gameserver from the array or else we would put all stress on 1 gameserver // if ur gonna use the availablegameservers array please pick a random gameserver from the array or else we would put all stress on 1 gameserver
$AvailableGameservers = [ $AvailableGameservers = [
1 => "ip goes here", "ip goes here",
2 => "ahh help!!" "ahh help!!"
]; ];
$gameSettings = [ $gameSettings = [
@ -31,8 +31,10 @@ MIICXQIBAAKBgQDhO7uhMz3jBLoSB/SHWhnE5tVxn7P6BlirPVrZEWVUxjyC5ybhZpyjL/r6KBlvhgyn
-----END RSA PRIVATE KEY-----" -----END RSA PRIVATE KEY-----"
]; ];
$soapIp = $AvailableGameservers[array_rand($AvailableGameservers,1)];
$soapcfg = [ $soapcfg = [
"ip" => "127.0.0.1", "ip" => $soapIp,
"port" => 64989, "port" => 64989,
"url" => "sierraf.tk" "url" => "sierraf.tk"
]; ];