Source: 1.02 DataServer

Results 1 to 17 of 17
  1. #1
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Source: 1.02 DataServer

    Hello, does someone has DataServer Source 1.02 0.65.00 version to share it?
    Last edited by Th3AnG3L; 15-09-16 at 08:26 PM.


  2. #2
    Don't be afraid to ask! RevolGaming is offline
    MemberRank
    Jun 2012 Join Date
    1,458Posts

    Re: Source: 1.02 DataServer

    Hmm I dont think, maybe downgrade the muemu s4 ds?

  3. #3
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: Source: 1.02 DataServer

    as i managed to make clean 0.65.00 version DataServer
    i had found only this problem here with connection to Database

    Code:
    if(CWZSEncode.Open(".\\dataserver.ini.dat") == FALSE)
        {
            AfxMessageBox("file 'dataserver.ini.dat' is not exist in local folder.", 16, 0);
        }
    
    
        CWZSEncode.GetToken();
        gNewAccountCreate = CWZSEncode.GetNumber();
        CWZSEncode.GetToken(); //??
        CWZSEncode.GetToken();
        strcpy(szDbConnectID, CWZSEncode.GetString());
        CWZSEncode.GetToken();
        strcpy(szDbConnectPass, CWZSEncode.GetString());
        CWZSEncode.GetToken();
        DCInfo.SetMabubBanjiOption( CWZSEncode.GetNumber() );
    
    
        iTokenType = CWZSEncode.GetToken();
        if(iTokenType == T_END)
        {
            strcpy(szDbConnectDsn, "MuOnline");
        }
        else
        {
            strcpy(szDbConnectDsn, CWZSEncode.GetString());
        }
    
    
        if(strcmp(szDbConnectDsn, "") == 0)
        {
            strcpy(szDbConnectDsn, "MuOnline");
        }
    
    
        LogAddTD("szDbConnectDsn %s ", __FILE__, __LINE__); // Return Error
    
    
        CWZSEncode.Close();
    Download: Source 0.65.00 Beta
    Last edited by Th3AnG3L; 17-09-16 at 08:33 PM.

  4. #4
    Proficient Member muzic25 is offline
    MemberRank
    Aug 2008 Join Date
    HungaryLocation
    183Posts

    Re: Source: 1.02 DataServer

    Quote Originally Posted by Th3AnG3L View Post
    as i managed to make clean 0.65.00 version DataServer
    i had found only this problem here with connection to Database

    Code:
    if(CWZSEncode.Open(".\\dataserver.ini.dat") == FALSE)
        {
            AfxMessageBox("file 'dataserver.ini.dat' is not exist in local folder.", 16, 0);
        }
    
    
        CWZSEncode.GetToken();
        gNewAccountCreate = CWZSEncode.GetNumber();
        CWZSEncode.GetToken(); //??
        CWZSEncode.GetToken();
        strcpy(szDbConnectID, CWZSEncode.GetString());
        CWZSEncode.GetToken();
        strcpy(szDbConnectPass, CWZSEncode.GetString());
        CWZSEncode.GetToken();
        DCInfo.SetMabubBanjiOption( CWZSEncode.GetNumber() );
    
    
        iTokenType = CWZSEncode.GetToken();
        if(iTokenType == T_END)
        {
            strcpy(szDbConnectDsn, "MuOnline");
        }
        else
        {
            strcpy(szDbConnectDsn, CWZSEncode.GetString());
        }
    
    
        if(strcmp(szDbConnectDsn, "") == 0)
        {
            strcpy(szDbConnectDsn, "MuOnline");
        }
    
    
        LogAddTD("szDbConnectDsn %s ", __FILE__, __LINE__); // Return Error
    
    
        CWZSEncode.Close();
    Download: Source 0.65.00 Beta
    Just comment the line that is not an error just pointing in the cpp file and the line

    Incrased Logprint:

    09:34:10p szDbConnectDsn c:\users\muzic\desktop\dataserver 0.65.00\dataserver\source_db\mainfrm.cpp 174

  5. #5
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: Source: 1.02 DataServer

    I'm glad to help others too :)

  6. #6
    Don't be afraid to ask! RevolGaming is offline
    MemberRank
    Jun 2012 Join Date
    1,458Posts

    Re: Source: 1.02 DataServer

    I am not sure the right way to comment that line, because than if you have any connection problem, you dont will see on the screen, like ODBC or any errors.
    I cannot download it now, but your project doesnt contain the LogAddTD() function?
    Or what was the error message, why is it recommended to comment that line?

  7. #7
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: Source: 1.02 DataServer

    For sure it will need a new way to connect if its require user and password

  8. #8
    (づ。◕‿‿◕。) Natzugen is offline
    MemberRank
    Jun 2014 Join Date
    ElbelandLocation
    1,858Posts

    Re: Source: 1.02 DataServer

    and why not use 0.74 and downgrade it?

  9. #9
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: Source: 1.02 DataServer

    because this is 0.74 downgraded :D

  10. #10
    Proficient Member muzic25 is offline
    MemberRank
    Aug 2008 Join Date
    HungaryLocation
    183Posts

    Re: Source: 1.02 DataServer

    Quote Originally Posted by RevolGaming View Post
    I am not sure the right way to comment that line, because than if you have any connection problem, you dont will see on the screen, like ODBC or any errors.
    I cannot download it now, but your project doesnt contain the LogAddTD() function?
    Or what was the error message, why is it recommended to comment that line?
    Because It's useless... If you have any error in the database there's a message box at start to seeing where's the error (like ODBC Error) and are simply logging the error.... (like this: 08:18:21a (2) SQLSTATE:42S22, Diagnosis:[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'Summoner'.)
    That's a pointer not have any command... download it and see and think

  11. #11
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: Source: 1.02 DataServer

    the only problem i found until now is this:
    - Cannot save Character Skills (Learn skill, switch character, no skill learned)
    - Cannot save Character Map Possition (go to some place switch and it will go back)
    Anyone has this problem too ?

  12. #12
    Don't be afraid to ask! RevolGaming is offline
    MemberRank
    Jun 2012 Join Date
    1,458Posts

    Re: Source: 1.02 DataServer

    Are you sure its dataserver problem?

    The dataserver Request recieve part okey?

    The dataserver write the changes or any error ?

    Did you tryed to debug - add breakpoint into the code in the update part of the dataserver?

  13. #13
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: Source: 1.02 DataServer

    ye im 100% sure that is from dataserver problem
    somewhere doesnt read/save correct the stuff or in DS>GS send stuff is wrong

  14. #14
    (づ。◕‿‿◕。) Natzugen is offline
    MemberRank
    Jun 2014 Join Date
    ElbelandLocation
    1,858Posts

    Re: Source: 1.02 DataServer

    Weird, its working fine here

    https://youtu.be/wOa-9RS28Iw

    are you sure its not the gs?

  15. #15
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: Source: 1.02 DataServer

    i use it on 1.00.18 gs, and it got that problem, if i switch to default dataservers it works fine, with builded dataserver doesnt make it correct

  16. #16
    (づ。◕‿‿◕。) Natzugen is offline
    MemberRank
    Jun 2014 Join Date
    ElbelandLocation
    1,858Posts

    Re: Source: 1.02 DataServer

    well, that is weird, all id did on taht ds sources some minor stuff to compile it vs 2013, as for the gs im using deathways source so there shouldnt be anything that affects it

  17. #17
    Evolution Team Th3AnG3L is offline
    MemberRank
    Apr 2014 Join Date
    634Posts

    Re: Source: 1.02 DataServer

    the problem is somewhere in dataserver, as i use clean 0.70 version dataserver downgraded it works fine it saves character information and moves, i will try research more to see the problem

    - - - Updated - - -

    i see the problem, as i managed to alot of fix this dataserver , i had found the problem that causes this stuff, when i create to read Resets of character from DataServer it makes this issue, will check it more

    - - - Updated - - -

    Edit: as i know it was from sql query problems , default option from dataserver is total wrong
    now is working fine



Advertisement