Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help]Server Connection Closed

Initiate Mage
Joined
Jun 16, 2009
Messages
1
Reaction score
0
What is this? Every time i log in to my server...

"Server Connection Closed."

^ That keeps on "pop-out-ing" whenever i log in my account. Can you please help me regarding this matter? DX


Here's my char_athena
Code:
// Athena Character configuration file.
 
// Note: "Comments" are all text on the right side of a double slash "//"
// Whatever text is commented will not be parsed by the servers, and serves
// only as information/reference.
 
// Server Communication username and password.
userid: ragnarok
passwd: ragnarok
 
// Server name, use alternative character such as ASCII 160 for spaces.
// NOTE: You should not use spaces in the server name, or guild emblems won't work client-side!
server_name: TestRO
 
// Wisp name for server: used to send wisp from server to players (between 4 to 23 characters)
wisp_server_name: Server
 
// Login Server IP
// The character server connects to the login server using this IP address.
// NOTE: This is useful when you are running behind a firewall or are on
// a machine with multiple interfaces.
login_ip: MY IP
 
// The character server listens on the interface with this IP address.
// NOTE: This allows you to run multiple servers on multiple interfaces
// while using the same ports for each server.
//bind_ip: 127.0.0.
 
// Login Server Port
login_port: 6900
 
// Character Server IP
// The character server exports this IP address to the entire world.
// NOTE: You should only need to set this if you are running behind a
// firewall or are on a machine with multiple interfaces.
char_ip: MY IP
 
// Character Server Port
char_port: 6121

Code:
//      ______  __    __                                 
//     /\  _  \/\ \__/\ \                                
//   __\ \ \L\ \ \ ,_\ \ \___      __    ___      __     
// /'__`\ \  __ \ \ \/\ \  _ `\  /'__`\/' _ `\  /'__`\   
///\  __/\ \ \/\ \ \ \_\ \ \ \ \/\  __//\ \/\ \/\ \L\.\_ 
//\ \____\\ \_\ \_\ \__\\ \_\ \_\ \____\ \_\ \_\ \__/.\_\
// \/____/ \/_/\/_/\/__/ \/_/\/_/\/____/\/_/\/_/\/__/\/_/
//  _   _   _   _   _   _   _     _   _   _   _   _   _
// / \ / \ / \ / \ / \ / \ / \   / \ / \ / \ / \ / \ / \ 
//( e | n | g | l | i | s | h ) ( A | t | h | e | n | a )
// \_/ \_/ \_/ \_/ \_/ \_/ \_/   \_/ \_/ \_/ \_/ \_/ \_/
//
//--------------------------------------------------------------
//eAthena Map-Server Configuration File
//--------------------------------------------------------------

// Note: "Comments" are all text on the right side of a double slash "//"
// Whatever text is commented will not be parsed by the servers, and serves
// only as information/reference.

//--------------------------------------------------------------
//            Configuration Info            
//--------------------------------------------------------------
// Interserver communication pass*****, set in account.txt (or equiv.)
userid: ragnarok
passwd: ragnarok

// Character Server IP
// The map server connects to the character server using this IP address.
// NOTE: This is useful when you are running behind a firewall or are on
// a machine with multiple interfaces.
char_ip: MY IP
 
// The map server listens on the interface with this IP address.
// NOTE: This allows you to run multiple servers on multiple interfaces
// while using the same ports for each server.
//bind_ip: 127.0.0.1
 
// Character Server Port
char_port: 6121
 
// Map Server IP
// The map server exports this IP address to the entire world.
// NOTE: You should only need to set this if you are running behind a
// firewall or are on a machine with multiple interfaces.
map_ip: MY IP
 
// Map Server Port
map_port: 5121

my grf-files
Code:
//-----------------------------------------
// GRF List
//-----------------------------------------
 
grf: G:\Gravity\RO\data.grf
grf: G:\Gravity\RO\sdata.grf
 
// You may add more in this format
// grf: <data file path>
 
//------ Others ---------------------------
 
//Path to directory that contains the data dir 
//NOTE: Path must include trailing backslash, only one data_dir entry is supported.
//data_dir: G:\Gravity\RO\

My subnet_athena

Code:
// Subnet support file
// Format is:
// subnet: net-submask:char_ip:map_ip
// you can add more than one subnet 

subnet:MY IP:MY IP:MY IP

Can you please tell me whats wrong with this?

PLEASE? T.T
 
Back
Top