[Release] zTeam Season 6 EP3 + Source

Page 290 of 304 FirstFirst ... 190240280282283284285286287288289290291292293294295296297298300 ... LastLast
Results 4,336 to 4,350 of 4549
  1. #4336
    Member Lena1004 is offline
    MemberRank
    May 2008 Join Date
    KOREALocation
    81Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Anybody's chat with server source?

    Last edited by Lena1004; 20-05-16 at 07:25 PM.

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

    re: [Release] zTeam Season 6 EP3 + Source

    does anyone know how to add new lines to mix.bmd?

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

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by natzugen View Post
    does anyone know how to add new lines to mix.bmd?
    If you find it, please share with me, or if you know how to add rows into the harmonyitem.bmd.... :D Hard to fix bugs if you dont have the right tools.

    Btw, I have started to code my own tool to add it, but I stucked. :c

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

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by djsad94 View Post
    If you find it, please share with me, or if you know how to add rows into the harmonyitem.bmd.... :D Hard to fix bugs if you dont have the right tools.

    Btw, I have started to code my own tool to add it, but I stucked. :c
    i couldnt find an editor for it, but i found a mix.bmd with other 20+ lines for chaos machine mixes
    https://mega.nz/#!FBpWTYQB!5XBQL5bKS...4fFxfnBgDg0Fgg

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

    re: [Release] zTeam Season 6 EP3 + Source

    Hy Guys I've looking the HacktoolBlockEx code and found this:

    void CHacktoolBlockEx::OnRequestHacktoolStatistics(PMSG_HACKTOOL_CHECK_USE_STATISTICS_REQ * lpMsg)
    {
    PMSG_REQ_HACKTOOL_STATISTICS pMsg = { 0 };
    PMSG_HACKTOOL_CHECK_USE_STATISTISC_ANS pResult = { 0 };
    HACKTOOL_DATA * lpHacktoolData = 0;
    // ----
    lpHacktoolData = this->SearchHacktoolData(lpMsg->wHacktoolIndex);
    // ----
    if( lpHacktoolData )
    {
    lpHacktoolData->btHackCheckType = 2;
    }
    else if( this->AddHacktoolData(lpMsg->wHacktoolIndex, lpMsg->chFilename, lpMsg->lExpireDate, lpMsg->btBlockType) )
    {
    lpHacktoolData = this->SearchHacktoolData(lpMsg->wHacktoolIndex);
    lpHacktoolData->btHackCheckType = 2;
    }
    else
    {
    PHeadSubSetB((LPBYTE)&pResult, 0x8D, 1, sizeof(PMSG_HACKTOOL_CHECK_USE_STATISTISC_ANS));
    // ----
    pResult.btResult = 1;
    pResult.wHacktoolIndex = lpMsg->wHacktoolIndex;
    pResult.wHacktoolUseCount = 0;
    pResult.wTotalUserCount = 0;
    // ----
    wsJServerCli.DataSend((char*)&pResult, pResult.head.size);
    }
    // ----
    pMsg.h.setE((LPBYTE)&pMsg, 0x8A, sizeof(PMSG_REQ_HACKTOOL_STATISTICS));
    pMsg.dwKey = lpMsg->wHacktoolIndex;
    memcpy(pMsg.Filename, lpMsg->chFilename, 64);
    // ----
    for( int i = OBJ_STARTUSERINDEX; i < OBJMAX; i++ )
    {
    if( gObj[i].Connected >= PLAYER_LOGGED && gObj[i].Type == OBJ_USER )
    {
    for( int iSlotIndex = 0; iSlotIndex < HACKTOOL_DATA_SIZE; iSlotIndex++ )
    {
    if( !gObj[i].m_HacktoolUseInfo[iSlotIndex].btUseType )
    {
    gObj[i].m_HacktoolUseInfo[iSlotIndex].Set(0, 1, lpMsg->wHacktoolIndex);
    break;
    }
    }
    }
    }
    // ----
    DataSendAll((LPBYTE)&pMsg, sizeof(PMSG_REQ_HACKTOOL_STATISTICS));
    }
    // -------------------------------------------------------------------------------

    void CHacktoolBlockEx::OnRequestHacktoolBlock(PMSG_HACKTOOL_BLOCK_REQ * lpMsg)
    {
    if( this->AddHacktoolData(lpMsg->wHacktoolIndex, lpMsg->chFilename,
    lpMsg->lExpireDate, lpMsg->btBlockType) )
    {
    return;
    }
    // ----
    PMSG_HACKTOOL_BLOCK_ANS pResult;
    pResult.head.set((LPBYTE)&pResult, 0x8D, 2, sizeof(PMSG_HACKTOOL_BLOCK_ANS));
    pResult.btResult = 1;
    wsJServerCli.DataSend((char*)&pResult, pResult.head.size);
    }
    // -------------------------------------------------------------------------------
    I've looking the in joinserver code and found nothing about it....

  6. #4341
    Enthusiast cri699 is offline
    MemberRank
    Dec 2007 Join Date
    32Posts

    re: [Release] zTeam Season 6 EP3 + Source

    link dead

  7. #4342
    Account Upgraded | Title Enabled! Nujd is offline
    MemberRank
    Jul 2012 Join Date
    United StatesLocation
    334Posts

    re: [Release] zTeam Season 6 EP3 + Source

    someone have already fixed server? + client please share it thank you

  8. #4343
    Proficient Member yuval07 is offline
    MemberRank
    Oct 2014 Join Date
    163Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Hey everyone :)
    can someone re-upload fixed files and sourcecode?

  9. #4344
    Proficient Member yuval07 is offline
    MemberRank
    Oct 2014 Join Date
    163Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by yuval07 View Post
    Hey everyone :)
    can someone re-upload fixed files and sourcecode?
    someone please?????

  10. #4345
    Account Upgraded | Title Enabled! or30n is offline
    MemberRank
    Jun 2005 Join Date
    731Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Deleted
    Last edited by or30n; 06-08-16 at 11:50 PM.

  11. #4346
    Account Upgraded | Title Enabled! Nujd is offline
    MemberRank
    Jul 2012 Join Date
    United StatesLocation
    334Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by 16102012 View Post
    Help how to fix

    can you share your server and client :)

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

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by or30n View Post
    Hi guyz. I have a lot of time to work with these files. Does anyone so far fix the chat server, gen system? I have source files with gift system fixed 100%.
    gens fix is already in this thread, just search from the beginning, or just serach in questluaabind.cpp and in the lua fles from server, that way you can fix gens quest, zyro quest and add the quest exp rate just by figuring out what these 3 variables do

    Code:
    int gFreeServer = 0;
    int gNotGlobalQuest = 0;
    int g_QuestExpAddExperience = 1;
    just load them from somewhere and edit the lua files to match what wanna do with them

    Code:
    #include "StdAfx.h"
    #include "FileManager.h"
    //---------------------------------------------------------------------------------------------------------------------------
    FileManager gFile;
    CIniReader ServerInfo(SERVER_INFO_PATH);
    //---------------------------------------------------------------------------------------------------------------------------
    void FileManager::LoadServerInfo()
    {
        if (!PathFileExists(SERVER_INFO_PATH))
        {
            MessageBox(0, "File ""Data\ServerInfo.dat"" not found.", "ERRO", MB_OK | MB_ICONHAND | MB_APPLMODAL);
            ExitProcess(0);
        }
    
    
        this->FreeServer = ServerInfo.ReadBoolean("GameServerInfo","FreeServer",0);
        this->NotGlobalQuest = ServerInfo.ReadBoolean("GameServerInfo","NotGlobalQuest",0);
        this->QuestAddExperience = ServerInfo.ReadInteger("GameServerInfo","QuestAddExperience",1);
    
    
    }




    PS: if you got something fixed just share it, that is why everyone stopped making their fixes public.

  13. #4348
    Account Upgraded | Title Enabled! or30n is offline
    MemberRank
    Jun 2005 Join Date
    731Posts

    re: [Release] zTeam Season 6 EP3 + Source

    In the pictures u saw me the gens system is working; cause I had already done these quest displayed. Sorry for bad English.

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

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by or30n View Post
    In the pictures u saw me the gens system is working; cause I had already done these quest displayed. Sorry for bad English.
    i cant understand what you want

  15. #4350
    Account Upgraded | Title Enabled! or30n is offline
    MemberRank
    Jun 2005 Join Date
    731Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Trying to pm but u have no space. I'll send you a pm.



Advertisement