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!

Lots of Bugs!

Status
Not open for further replies.
Newbie Spellweaver
Joined
Mar 20, 2013
Messages
88
Reaction score
3
Fixed. Thanks Blure :)
 
Last edited:
◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜
Developer
Joined
May 29, 2007
Messages
2,167
Reaction score
899
The keyboard change to 'QWERTY' has always been in WarRock since the start, I think the developers did this on purpose to avoid having issues with the config of players. (They shouldn't have done it like that but hey they are lazy).

I don't know why you get disconnected when you talk ingame but I think this is caused by a table that doesn't exist in the MySQL database.
 
Newbie Spellweaver
Joined
Mar 20, 2013
Messages
88
Reaction score
3
You can see all the tables from the MySQL database over here s
Nothing missing I guess...
 
Last edited:
◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜
Developer
Joined
May 29, 2007
Messages
2,167
Reaction score
899
Jup, there is no chatlog table, that's causing the disconnect.
 
Newbie Spellweaver
Joined
Mar 20, 2013
Messages
88
Reaction score
3
So I only need to add a table called 'chatlog'? Or some special tables inside of it?
 
Newbie Spellweaver
Joined
Mar 19, 2014
Messages
20
Reaction score
2
I don't have that table too but my chat is working, so I checked in the code and I find this in "HANDLE_CHAT.cs" file:

//DB.runQuery("INSERT INTO chatlogs (`userid`, `roomid`, `message`, `timestamp`) VALUES ('" + User.UserID + "', '" + ((User.Room == null) ? -1 : User.Room.ID) + "', '" + DB.Stripslash(sMessage) + "', '" + Program.currTimeStamp + "')");

I suppose this is the reason why, the code is commented out..
You could do the same in your code or create the table so that you can avoid the error, is up to you :)
 
Newbie Spellweaver
Joined
Mar 20, 2013
Messages
88
Reaction score
3
I will try to add that code & make a table also :p Buth that is for tomorrow im not at my PC a.t.m.
 
Newbie Spellweaver
Joined
Mar 19, 2014
Messages
20
Reaction score
2
you don't need to "add" that code, that code probably is already in your source, you need to comment it out
 
Newbie Spellweaver
Joined
Mar 20, 2013
Messages
88
Reaction score
3
I did that... still getting the same error.
 
◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜
Developer
Joined
May 29, 2007
Messages
2,167
Reaction score
899
You didn't comment it out. add // in front of that line & recompile your source code :).
 
Newbie Spellweaver
Joined
Mar 20, 2013
Messages
88
Reaction score
3
Omg Im such a noob. I dont even know what recompile means -,-.
 
Newbie Spellweaver
Joined
Mar 20, 2013
Messages
88
Reaction score
3
So, that will fix the bug? I dont think so D:



Made the table "Chatlogs", Still getting the same error.
 
Status
Not open for further replies.
Back
Top