Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

FUCKMS Launch.Bat error!

Newbie Spellweaver
Joined
Jul 21, 2012
Messages
67
Reaction score
0
JAVA ERROR - FUCKMS Launch.Bat error! - RaGEZONE Forums

I checked the database. It is fuckms right?

Code:
 final Connection con = DriverManager.getConnection(
                    "jdbc:mysql://localhost:3306/fuckms?autoReconnect=true", 
					"root", "asdfghjkl123");

I checked MYSQL schema. It is also under "fuckms"

what is the problem down here? please help!

edit-
I have two sources in my MAPLESTORY folder. Could it be the problem?
 - FUCKMS Launch.Bat error! - RaGEZONE Forums
 
hmm, you sure that your password is right? Try to check that, and be sure you can connect to your mysql... because i've had the same errors long time ago, but forgot to turn on my WAMP -.-'
 
Upvote 0
If you have this:

Code:
 final Connection con = DriverManager.getConnection(
                    "jdbc:mysql://localhost:3306/fuckms?autoReconnect=true", 
					"root", "asdfghjkl123");

And you said No Password... then what the hell is "asdfghjkl123"?
If theres no password, put this:

Code:
 final Connection con = DriverManager.getConnection(
                    "jdbc:mysql://localhost:3306/fuckms?autoReconnect=true", 
					"root", "");
 
Upvote 0
Back