Quote:
Originally Posted by Dismounted
That will use whichever you place last. Use:
PHP Code:
$servers = array(
'123.123.123.1',
'123.123.123.2',
'123.123.123.3'
);
$serv_index = mt_rand(0, (count($servers) - 1));
$config['MasterServer']['servername'] = $servers[$serv_index];
|
Excellent Thank You for that. I will give it a try :up:
--------------- Added [DATE]1273190169[/DATE] at [TIME]1273190169[/TIME] ---------------
Alright I tried that script you posted and it works but if I pull any of the connections the forum stops working. Could you double check the script for me and make certain that a character wasn't accidentally overlooked somewhere?