Lots of Bugs!

Results 1 to 21 of 21
  1. #1
    Member Aron123 is offline
    MemberRank
    Mar 2013 Join Date
    BelgiumLocation
    88Posts

    Lots of Bugs!

    Fixed. Thanks Blure :)
    Last edited by Aron123; 01-05-14 at 08:32 PM.


  2. #2
    ◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜ Taiga is offline
    DeveloperRank
    May 2007 Join Date
    InternetLocation
    2,464Posts

    Re: Lots of Bugs!

    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.

  3. #3
    Member Aron123 is offline
    MemberRank
    Mar 2013 Join Date
    BelgiumLocation
    88Posts

    Re: Lots of Bugs!

    You can see all the tables from the MySQL database over here http://prntscr.com/3eko9s
    Nothing missing I guess...
    Last edited by Aron123; 29-04-14 at 06:12 PM.

  4. #4
    Enthusiast Blure is offline
    MemberRank
    Dec 2013 Join Date
    The NetherlandsLocation
    41Posts

    Re: Lots of Bugs!

    No server error?

  5. #5
    ◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜ Taiga is offline
    DeveloperRank
    May 2007 Join Date
    InternetLocation
    2,464Posts

    Re: Lots of Bugs!

    Jup, there is no chatlog table, that's causing the disconnect.

  6. #6
    Member Aron123 is offline
    MemberRank
    Mar 2013 Join Date
    BelgiumLocation
    88Posts

    Re: Lots of Bugs!

    So I only need to add a table called 'chatlog'? Or some special tables inside of it?

  7. #7
    Apprentice diggercoder is offline
    MemberRank
    Mar 2014 Join Date
    20Posts

    Re: Lots of Bugs!

    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 :)

  8. #8
    Member Aron123 is offline
    MemberRank
    Mar 2013 Join Date
    BelgiumLocation
    88Posts

    Re: Lots of Bugs!

    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.

  9. #9
    Apprentice diggercoder is offline
    MemberRank
    Mar 2014 Join Date
    20Posts

    Re: Lots of Bugs!

    you don't need to "add" that code, that code probably is already in your source, you need to comment it out

  10. #10
    Member Aron123 is offline
    MemberRank
    Mar 2013 Join Date
    BelgiumLocation
    88Posts

    Re: Lots of Bugs!

    What do you mean with comment it out? :$

  11. #11
    ◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜ Taiga is offline
    DeveloperRank
    May 2007 Join Date
    InternetLocation
    2,464Posts

    Re: Lots of Bugs!

    Quote Originally Posted by Aron123 View Post
    What do you mean with comment it out? :$
    You should read this: http://msdn.microsoft.com/en-us/libr...(v=vs.71).aspx

  12. #12
    Member Aron123 is offline
    MemberRank
    Mar 2013 Join Date
    BelgiumLocation
    88Posts

    Re: Lots of Bugs!

    I did that... http://prntscr.com/3erzfd still getting the same error.

  13. #13
    ◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜ Taiga is offline
    DeveloperRank
    May 2007 Join Date
    InternetLocation
    2,464Posts

    Re: Lots of Bugs!

    You didn't comment it out. add // in front of that line & recompile your source code :).

  14. #14
    Member Aron123 is offline
    MemberRank
    Mar 2013 Join Date
    BelgiumLocation
    88Posts

    Re: Lots of Bugs!

    Omg Im such a noob. I dont even know what recompile means -,-.

  15. #15
    Enthusiast Blure is offline
    MemberRank
    Dec 2013 Join Date
    The NetherlandsLocation
    41Posts

    Re: Lots of Bugs!

    Quote Originally Posted by Aron123 View Post
    Omg Im such a noob. I dont even know what recompile means -,-.
    Do you've any version of visual studios?

  16. #16
    Member Aron123 is offline
    MemberRank
    Mar 2013 Join Date
    BelgiumLocation
    88Posts

    Re: Lots of Bugs!

    Yes, C# 2010 Express

  17. #17
    ◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜ Taiga is offline
    DeveloperRank
    May 2007 Join Date
    InternetLocation
    2,464Posts

    Re: Lots of Bugs!

    Quote Originally Posted by Aron123 View Post
    Yes, C# 2010 Express
    Upgrade to Visual studio 2013 express or at least 2012.

  18. #18
    Member Aron123 is offline
    MemberRank
    Mar 2013 Join Date
    BelgiumLocation
    88Posts

    Re: Lots of Bugs!

    So, that will fix the bug? I dont think so D:

    - - - Updated - - -

    Made the table "Chatlogs", Still getting the same error.

  19. #19
    Enthusiast Blure is offline
    MemberRank
    Dec 2013 Join Date
    The NetherlandsLocation
    41Posts

    Re: Lots of Bugs!

    Quote Originally Posted by Aron123 View Post
    So, that will fix the bug? I dont think so D:

    - - - Updated - - -

    Made the table "Chatlogs", Still getting the same error.
    Hmm, I can help you with teamviewer. I got time atm.

  20. #20
    Member Aron123 is offline
    MemberRank
    Mar 2013 Join Date
    BelgiumLocation
    88Posts

    Re: Lots of Bugs!

    Add my skype : Multincredibles

  21. #21
    Enthusiast Blure is offline
    MemberRank
    Dec 2013 Join Date
    The NetherlandsLocation
    41Posts

    Re: Lots of Bugs!

    Solved.



Advertisement