dev rev 4 Char Server and World Server Fatal Error.

Results 1 to 15 of 15
  1. #1
    Apprentice Khris Xhan is offline
    MemberRank
    May 2013 Join Date
    10Posts

    dev rev 4 Char Server and World Server Fatal Error.

    i try to build a private server using dev rev4, but i came up to this problem in char server: FATAL ERROR could not execute query: Table 'roseon.items_newchar doesn't exist and in world server: FATAL ERROR could not execute query: Unknown column 'davertise active' in 'field list'. can you tell me which file im missing? Any help is highly appreciated. Thank you in advance and more power.

    here are some screenshot of the servers:
    loginserver4.jpgcharserver4.jpgworldserver4.jpg


  2. #2
    Account Upgraded | Title Enabled! WarKeyGFX is offline
    MemberRank
    Feb 2012 Join Date
    Pasay City, PhiLocation
    238Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    there are no tables on your database :)

  3. #3
    Last of the OsRose Devs Purpleyouko is offline
    MemberRank
    Oct 2006 Join Date
    Missouri USALocation
    2,161Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    Well there must be some tables there. It started loading the config table. just couldn't find the field named "advertize_active"

    The problem is that the tables listed in the errors (and possibly more) are completely missing from the server installation.
    Try looking in the "database/new_tables" folder and you will find a file called "items_newchar.sql"
    Run this sql query file into your database to build the missing table.

    As for that advertize entry, that was dropped from the roseZA source code before general release so I don't know where the heck that came from. It certainly isn't in my version of the code.

    you could delete the reference to it in function LoadConfig() in startup.cpp but that could cause a bunch of problems as all the following fields would be offset.
    Easiest thing to do is just edit the database table "list_config" and simply add a field by the name of "advertize_active" then set its value to zero. Doesn't matter where the filed goes in the table. You can add it at the start, the end or the middle. Whichever is easiest for you.

  4. #4
    Apprentice Khris Xhan is offline
    MemberRank
    May 2013 Join Date
    10Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    Quote Originally Posted by Purpleyouko View Post
    Well there must be some tables there. It started loading the config table. just couldn't find the field named "advertize_active"

    The problem is that the tables listed in the errors (and possibly more) are completely missing from the server installation.
    Try looking in the "database/new_tables" folder and you will find a file called "items_newchar.sql"
    Run this sql query file into your database to build the missing table.

    As for that advertize entry, that was dropped from the roseZA source code before general release so I don't know where the heck that came from. It certainly isn't in my version of the code.

    you could delete the reference to it in function LoadConfig() in startup.cpp but that could cause a bunch of problems as all the following fields would be offset.
    Easiest thing to do is just edit the database table "list_config" and simply add a field by the name of "advertize_active" then set its value to zero. Doesn't matter where the filed goes in the table. You can add it at the start, the end or the middle. Whichever is easiest for you.
    Thank you so much Purpleyouko. its a big help that there are people like you in this forum. Also thanks to WarKeyGFX for responding its nice to know that there are active members in this forum. Thank you and more power to you!

  5. #5
    Apprentice Khris Xhan is offline
    MemberRank
    May 2013 Join Date
    10Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    another error in world server couldnt locate where is this XD

    svn3.jpg

    i gave up in dev rev4 couldnt locate the database/new_tables" folder in my files so i try dev rev 3 and i cought up in this.
    Last edited by Khris Xhan; 04-06-13 at 06:30 PM. Reason: the image didnt load

  6. #6
    Last of the OsRose Devs Purpleyouko is offline
    MemberRank
    Oct 2006 Join Date
    Missouri USALocation
    2,161Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    The only table that uses "accesslevel" is "accounts".

    The error is almost certainly being generated in function bool CWorldServer::pakDoIdentify( CPlayer *thisclient, CPacket *P ) in Worldpackets.cpp

    If your "accounts" table is missing this field then I wonder what else is wrong with the installation

  7. #7
    Apprentice Khris Xhan is offline
    MemberRank
    May 2013 Join Date
    10Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    i have already find a way to avoid it i created a table called lotto_config and warning_system:
    lotto_config.jpgwarning_system.jpg
    but the problem is when i connect with my character it will load forever
    forever.jpg
    and when i exit the client the world server goes like this
    forever2.jpg

  8. #8
    Account Upgraded | Title Enabled! WarKeyGFX is offline
    MemberRank
    Feb 2012 Join Date
    Pasay City, PhiLocation
    238Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    bro your telling us that you are using DEV REV 4 right? but the thing is the one that i observed. your client is pretty wrong

  9. #9
    Last of the OsRose Devs Purpleyouko is offline
    MemberRank
    Oct 2006 Join Date
    Missouri USALocation
    2,161Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    As pointed out by WarKeyGFX That does not appear to be client 437 which is the one that works with dev rev 4

    the tree house entry screen was dropped long before 437

  10. #10
    Apprentice Khris Xhan is offline
    MemberRank
    May 2013 Join Date
    10Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    Quote Originally Posted by Khris Xhan View Post
    i have already find a way to avoid it i created a table called lotto_config and warning_system:
    lotto_config.jpgwarning_system.jpg
    but the problem is when i connect with my character it will load forever
    forever.jpg
    and when i exit the client the world server goes like this
    forever2.jpg
    im sorry for some misunderstandings i have already given up with dev rev 4 cause i couldnt locate the " database/new_tables folder" from the files i downloaded so i move back to dev rev 3, i have succesfully setup dev rev and dev rev 2. so this server files is of dev rev 3.

  11. #11
    Account Upgraded | Title Enabled! WarKeyGFX is offline
    MemberRank
    Feb 2012 Join Date
    Pasay City, PhiLocation
    238Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    alright, better get dev rev 2 than rev 3 IMO because you cant really play in Dev rev III

  12. #12
    Last of the OsRose Devs Purpleyouko is offline
    MemberRank
    Oct 2006 Join Date
    Missouri USALocation
    2,161Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    try KTRose pre-evo source.
    At least that way there's no confusion over the client.
    It only works with client 112 and we include a fully patched version of it for you.

    Also works pretty well compared to all the others.

  13. #13
    Apprentice Khris Xhan is offline
    MemberRank
    May 2013 Join Date
    10Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    Quote Originally Posted by Purpleyouko View Post
    try KTRose pre-evo source.
    At least that way there's no confusion over the client.
    It only works with client 112 and we include a fully patched version of it for you.

    Also works pretty well compared to all the others.
    where can i download it? Thanks for the advice =D thank you so much WarKeyGFX and Purpleyouko for helping me XD

  14. #14
    Account Upgraded | Title Enabled! WarKeyGFX is offline
    MemberRank
    Feb 2012 Join Date
    Pasay City, PhiLocation
    238Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.


  15. #15
    Apprentice Khris Xhan is offline
    MemberRank
    May 2013 Join Date
    10Posts

    Re: dev rev 4 Char Server and World Server Fatal Error.

    Quote Originally Posted by WarKeyGFX View Post
    Thank you so much WarKeyGFX for the link. and more power to you!

    BTW i have already made dev rev 3 working, i only forgot to execute the database.sql XD thank you so much for the guidance guys =)



Advertisement