Clientinfo: multiple servers

loki

New member
Messages
8
Points
0
I have multiple entrys for <connection> in the xml, but the client is reading only the first. How can I have more than one? Is it a NEMO config?

The client only connects to the "127.0.0.1" and the <display>, <balloon>, <desc> are not used at all.
Of course, if I change the order (putting the other <connection> entry first) it connects to the "12.100.8.1".

Code:
<?xml version="1.0" encoding="euc-kr" ?>
<clientinfo>
	<desc>Ragnarok Online Client</desc>
	<servicetype>korea</servicetype>
	<servertype>sakray</servertype>
	<hideaccountlist />
	<passwordencrypt />
	<passwordencrypt2 />
	<extendedslot />
	<readfolder />
	<connection>
		<display>server 1</display>
		<balloon>balloon</balloon>
		<desc>desc</desc>
		<address>127.0.0.1</address>
		<port>6900</port>
		<version>20</version>
		<langtype>1</langtype>
		<registrationweb>registration.url1</registrationweb>
		<yellow>
			<admin>2000001</admin>
		</yellow>
		<loading>
			<image>loading00.jpg</image>
		</loading>
	</connection>
	<connection>
		<display>server 2</display>
		<balloon>balloon</balloon>
		<desc>desc</desc>
		<address>12.100.8.1</address>
		<port>6900</port>
		<version>20</version>
		<langtype>1</langtype>
		<registrationweb>registration.url2</registrationweb>
		<yellow>
			<admin>2000001</admin>
		</yellow>
		<loading>
			<image>loading00.jpg</image>
		</loading>
	</connection>
</clientinfo>
 
Last edited by a moderator:
You might have diffed with "Skip Service Select" patch

 
Back
Top