aboutsummaryrefslogtreecommitdiff
path: root/util/tools/db_query_master_applet.pl
diff options
context:
space:
mode:
authorDarkelarious <darkelarious@333networks.com>2017-05-13 14:18:28 +0200
committerDarkelarious <darkelarious@333networks.com>2017-05-13 14:20:49 +0200
commit34a2c7390ea9662d33258d384e72fff1912343ff (patch)
treed96ea33c0107e4906a152aa1de4b5c75b81ba0a8 /util/tools/db_query_master_applet.pl
parent84af66aba26d2088d5d95c240d176f3edaf17b58 (diff)
downloadMasterServer-Perl-2.3.0.tar.gz
MasterServer-Perl-2.3.0.zip
revised synchronization methods, config settings and bug fixesv2.3.0
Diffstat (limited to 'util/tools/db_query_master_applet.pl')
-rwxr-xr-xutil/tools/db_query_master_applet.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/util/tools/db_query_master_applet.pl b/util/tools/db_query_master_applet.pl
index 628e03c..9af8b73 100755
--- a/util/tools/db_query_master_applet.pl
+++ b/util/tools/db_query_master_applet.pl
@@ -26,11 +26,15 @@ require "r_lists.pl";
our $dbh;
my @data = (
- {ip => "dev.333networks.com", port => 28905, games => [qw|ut unreal deusex rune|]},
+ {ip => "master.hypercoop.tk", port => 28900, games => [qw|ut unreal|]},
+ {ip => "utmaster.epicgames.com", port => 28900, games => [qw|ut unreal|]},
+ {ip => "master.deusexnetwork.com",port => 28900, games => [qw|deusex|]},
);
for my $ms (@data) {
sleep 1;
+
+ print "\n\n$ms->{ip}, $ms->{port}\n";
query_master($ms);
}