Two Servers

PunkBuster

New member
Messages
216
Points
0
I have a test server along with a main server. I'd like to allow players to connect to the test server during testing periods so I can test new features, exactly like a Sakray Server. How do I add the second server to the Service Select screen upon log in?

 
just add the <connection> entry in your clientinfo.xml

example

Code:
<?xml version="1.0" encoding="big5" ?> <clientinfo> 		<servicetype>korean</servicetype>	<servertype>primary</servertype>	<extendedslot>9</extendedslot>	<connection>		<display>Server 1</display>		<desc>Tes Server 1</desc>		<balloon>Unknown</balloon>		<address>127.0.0.1</address>		<port>6900</port>		<version>32</version>		<langtype>1</langtype>		<aid>			<admin>20000000</admin>		</aid>		<registrationweb></registrationweb>	</connection>	<connection>		<display>Server 2</display>		<desc>Tes Server 2</desc>		<balloon>Unknown</balloon>		<address>127.0.0.2</address>		<port>6900</port>		<version>32</version>		<langtype>1</langtype>		<aid>			<admin>20000000</admin>		</aid>		<registrationweb></registrationweb>	</connection><clientinfo>
 
Back
Top