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!

v142 problem

Newbie Spellweaver
Joined
Sep 15, 2013
Messages
19
Reaction score
0
so hey guys im new here i have few problem when trying making a maplestory Private Server V142
so there is a Youtube Video show what to do and i follow all thing when i try to Launch the server
i have this problem
REMOVED
and i dont know why
also when im on SQL its giving me Error Creating Admin account
REMOVED
please help me fix it im not asking for TeamViewer just help me fix it to start the server
 
Junior Spellweaver
Joined
Feb 18, 2018
Messages
117
Reaction score
10
in the first pic you need to make sure you put into your config.ini
#sql
sql_port=3306
sql_user=root
sql_password=pasword
sql_db=databasename

or go to Database > Database conection idk whats the server you're using
and for the SQL error you should use a clean one :blink: or edit it in order to let you run it as it says and incorrect value in birthday, i think you need to convert your password to sha1
 
Upvote 0
Newbie Spellweaver
Joined
Sep 15, 2013
Messages
19
Reaction score
0
in the first pic you need to make sure you put into your config.ini
#sql
sql_port=3306
sql_user=root
sql_password=pasword
sql_db=databasename

or go to Database > Database conection idk whats the server you're using
and for the SQL error you should use a clean one :blink: or edit it in order to let you run it as it says and incorrect value in birthday, i think you need to convert your password to sha1
well i checked the SQL is same as you wirite down i tryid go to database conection and its same
im trying to use V142 with OurStoryMS i did same as video but still have problem may you skype with me? and try help me
 
Upvote 0
Junior Spellweaver
Joined
Feb 18, 2018
Messages
117
Reaction score
10
in that source there are two database conections, this:
url=jdbc:mysql://localhost:3306/ourstoryv144?autoReconnect=true
and this one:
protected final Connection initialValue() {
try {
Class.forName("com.mysql.jdbc.Driver"); // touch the mysql driver
} catch (final ClassNotFoundException e) {
System.err.println("ERROR" + e);
}
try {
final Connection con = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/ourstoryv144?autoReconnect=true",
ServerConstants.SQL_USER, ServerConstants.SQL_PASSWORD);
allConnections.add(con);
return con;
} catch (SQLException e) {
System.err.println("ERROR" + e);
return null;
}
}
i think the DB conection in the netbeans is used to get all the dump info from the wz(you'll need it), edit both and it should work
 
Upvote 0
Newbie Spellweaver
Joined
Sep 15, 2013
Messages
19
Reaction score
0
in that source there are two database conections, this:
url=jdbc:mysql://localhost:3306/ourstoryv144?autoReconnect=true
and this one:
protected final Connection initialValue() {
try {
Class.forName("com.mysql.jdbc.Driver"); // touch the mysql driver
} catch (final ClassNotFoundException e) {
System.err.println("ERROR" + e);
}
try {
final Connection con = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/ourstoryv144?autoReconnect=true",
ServerConstants.SQL_USER, ServerConstants.SQL_PASSWORD);
allConnections.add(con);
return con;
} catch (SQLException e) {
System.err.println("ERROR" + e);
return null;
}
}
i think the DB conection in the netbeans is used to get all the dump info from the wz(you'll need it), edit both and it should work
well i didnt use netbeans i use Eclipse and i did everything
in the DB file i change it to url=jdbc:mysql://localhost:3306/(my server)?autoReconnect=true

so i dont know the other one if you can please help me on skype
 
Upvote 0
Junior Spellweaver
Joined
Feb 18, 2018
Messages
117
Reaction score
10
okay that's the problem you need to edit the file named db.properties too in your server files
 
Upvote 0
Newbie Spellweaver
Joined
Sep 15, 2013
Messages
19
Reaction score
0
okay that's the problem you need to edit the file named db.properties too in your server files
the file name DB.properties to change file name? or inside the file
cuz inside the file i already change
so to change (my servername).properties ?
 
Upvote 0
Junior Spellweaver
Joined
Feb 18, 2018
Messages
117
Reaction score
10
okay, that's weird if you have edited db.properties file it should run without any problems double check your db info o.o
 
Upvote 0
Newbie Spellweaver
Joined
Sep 15, 2013
Messages
19
Reaction score
0
okay, that's weird if you have edited db.properties file it should run without any problems double check your db info o.o
i did can you please send me your skype name i will add you and see what problem is?
well i deleted all and start all over hope its will work now
 
Upvote 0
Back
Top