Updated xaseco files to support variable substition
This commit is contained in:
parent
fa9e5aba50
commit
dd34ae8939
|
@ -6,7 +6,7 @@
|
|||
<!-- ipaddress can be specified to guard each login against -->
|
||||
<!-- unauthorized use of admin commands from other IP addresses -->
|
||||
<!-- format:
|
||||
<tmlogin>YOUR_MASTERADMIN_LOGIN</tmlogin> <ipaddress>YOUR_MASTERADMIN_IP</ipaddress>
|
||||
<tmlogin>--$MASTERADMIN_LOGIN--</tmlogin> <ipaddress></ipaddress>
|
||||
-->
|
||||
</masteradmins>
|
||||
|
||||
|
@ -128,7 +128,7 @@
|
|||
<song>{#server}> Track {#highlite}{1} {#server}plays song: {#highlite}{2}</song>
|
||||
<mod>{#server}> Track {#highlite}{1} {#server}uses mod: {#highlite}{2} {#server}({#highlite}{3}{#server})</mod>
|
||||
<coppers>{#server}> Server {#highlite}{1}$z$s {#server}owns {#highlite}{2} {#server}coppers!</coppers>
|
||||
<time>{#server}> {#interact}Current Server Time: {#highlite}$i {1}{#interact} on {#highlite}$i {2}</time>
|
||||
<time>{#server}> {#interact}Current Server Time: {#highlite}$i {2}{#interact} on {#highlite}$i {2}</time>
|
||||
<tmxrec>{#server}>> {#record}TMX World Record: {#highlite}{1}{#record} by {#highlite}{2}</tmxrec>
|
||||
<round>$n{#message}R{#highlite}{1}{#message}> </round>
|
||||
<no_cpsspec>{#server}> {#highlite}/cpsspec{#server} is not currently enabled on this server.</no_cpsspec>
|
||||
|
@ -178,7 +178,7 @@
|
|||
<bannedips_file>bannedips.xml</bannedips_file>
|
||||
<blacklist_file>blacklist.txt</blacklist_file>
|
||||
<guestlist_file>guestlist.txt</guestlist_file>
|
||||
<trackhist_file>trackhist.txt</trackhist_file>
|
||||
<trackhist_file>trackhistory.txt</trackhist_file>
|
||||
|
||||
<!-- the remaining settings are for TMF only -->
|
||||
<admin_client_version>2.11.19</admin_client_version>
|
||||
|
@ -211,7 +211,7 @@
|
|||
|
||||
<tmserver>
|
||||
<login>SuperAdmin</login>
|
||||
<password>YOUR_SUPERADMIN_PASSWORD</password>
|
||||
<password>--$SERVER_SA_PASSWORD--</password>
|
||||
<ip>127.0.0.1</ip>
|
||||
<port>5000</port>
|
||||
<timeout>180</timeout>
|
||||
|
|
|
@ -39,9 +39,9 @@
|
|||
<!-- For the nation, please use the 3-character abbreviation from -->
|
||||
<!-- http://en.wikipedia.org/wiki/List_of_IOC_country_codes -->
|
||||
<masterserver_account>
|
||||
<login>YOUR_SERVER_LOGIN</login>
|
||||
<password>YOUR_SERVER_PASSWORD</password>
|
||||
<nation>YOUR_SERVER_NATION</nation>
|
||||
<login>--$SERVER_LOGIN--</login>
|
||||
<password>--$SERVER_LOGIN_PASSWORD--</password>
|
||||
<nation></nation>
|
||||
</masterserver_account>
|
||||
|
||||
<messages>
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<settings>
|
||||
<!-- MySQL Server Settings -->
|
||||
<mysql_server>localhost</mysql_server>
|
||||
<mysql_login>YOUR_MYSQL_LOGIN</mysql_login>
|
||||
<mysql_password>YOUR_MYSQL_PASSWORD</mysql_password>
|
||||
<mysql_database>aseco</mysql_database>
|
||||
<mysql_server>--$DB_HOST--</mysql_server>
|
||||
<mysql_login>--$DB_LOGIN--</mysql_login>
|
||||
<mysql_password>--$DB_LOGIN_PASSWORD--</mysql_password>
|
||||
<mysql_database>--$DB_NAME--</mysql_database>
|
||||
<!-- Do you want XASECO to display newly driven records? -->
|
||||
<display>true</display>
|
||||
<!-- Limit the highest record that will be displayed to all? -->
|
||||
|
|
|
@ -7,11 +7,11 @@
|
|||
//##################################################################
|
||||
|
||||
//Set to true if you want the rank system active
|
||||
$feature_ranks = true;
|
||||
$feature_ranks = false;
|
||||
//Set to true if you want /nextrank to show the difference in record positions,
|
||||
// i.e. the combined number of positions that your records need to be improved
|
||||
// in order to catch up with the next better ranked player
|
||||
$nextrank_show_rp = true;
|
||||
$nextrank_show_rp = false;
|
||||
|
||||
//Set to true if you want all times recorded, and /pb command to be active
|
||||
$feature_stats = true;
|
||||
|
@ -22,15 +22,15 @@ $always_show_pb = true;
|
|||
|
||||
//Set to true ONLY if you use the karma feature.
|
||||
//If you set this to true when you are not, it will produce errors
|
||||
$feature_karma = true;
|
||||
$feature_karma = false;
|
||||
//Set to true if you allow ++ & -- votes as well as /++ & /--
|
||||
$allow_public_karma = true;
|
||||
$allow_public_karma = false;
|
||||
//Set to true if you want to show the karma message at the start of each track
|
||||
$karma_show_start = true;
|
||||
$karma_show_start = false;
|
||||
//Set to true if you want to show vote counts & percentages
|
||||
$karma_show_details = true;
|
||||
$karma_show_details = false;
|
||||
//Set to true if you want to show players their actual votes
|
||||
$karma_show_votes = true;
|
||||
$karma_show_votes = false;
|
||||
//Set to the number of times a player should have finished a track before
|
||||
//being allowed to karma vote for it
|
||||
//Note: this is the total number of finishes since the first time a player
|
||||
|
|
Loading…
Reference in New Issue