[Release] zTeam Season 6 EP3 + Source

Page 47 of 304 FirstFirst ... 3739404142434445464748495051525354555797147 ... LastLast
Results 691 to 705 of 4549
  1. #691
    Account Upgraded | Title Enabled! BladeKnight109 is offline
    MemberRank
    Jun 2014 Join Date
    242Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by webmonkey View Post
    Please EXPLAIN bugs with as much detail as posible so we can fix it. running around is circles screaming ERROR! is not going to help anyone.

    @BladeKnight109 which packet do you need? you have full protocolcore source, you can add a debug log in there so you don't have to deal with the raw packet. I need to get some sleep, but I'll try to do it in the morning, I haven't tested gifts from shop, could you explain what happens?
    gift shop not work. i find only 1 packet: 0xD2 - 0x04.
    but I don't understand:
    Code:
    void GameShop::RequestItemBuy(int aIndex, GAMESHOP_REQ_BUY * lpRequest)
    {
        GAMESHOP_ANS_BUY pBuy;
        PHeadSubSetB((LPBYTE)&pBuy, 0xD2, cBuy, sizeof(pBuy));    //Here cBuy = 0x03
        ................................................
        ................................................
        ................................................
        DataSend(aIndex, (LPBYTE)&pBuy, pBuy.h.size);    //Here
    }
    Where is this packet sent to?
    I think Client, but, i don't have source client and i don't know Asembly.
    Who can tell me?

    - - - Updated - - -


    cDBSMng.Send((char*)&pMsg,sizeof(pMsg)); ===> Send to DataServer
    DataSend(aIndex, (LPBYTE)&pBuy, pBuy.h.size); ==> Sent to?????

  2. #692
    King of the bongo Denied is offline
    MemberRank
    Oct 2009 Join Date
    RomaniaLocation
    986Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by webmonkey View Post
    Please EXPLAIN bugs with as much detail as posible so we can fix it. running around is circles screaming ERROR! is not going to help anyone.

    @BladeKnight109 which packet do you need? you have full protocolcore source, you can add a debug log in there so you don't have to deal with the raw packet. I need to get some sleep, but I'll try to do it in the morning, I haven't tested gifts from shop, could you explain what happens?
    Try to gift any item from X Shop to anyone

  3. #693
    Account Upgraded | Title Enabled! Lazerhack is offline
    MemberRank
    Feb 2012 Join Date
    311Posts

    re: [Release] zTeam Season 6 EP3 + Source

    BUG:
    Seals are diassapear after character switch.
    Any solutions?


    Problem #1:
    How ti fix TAB when writing account details ???

    Problem #2:*Fixed: I found good JoinServer by SynergyX in the MuEngine Free Repack.
    How to fix MD5? I have MD5 installed in the database and in the site but my JoinServer not allow me in the game. Someone give me good JoinServer with MD5 support
    Last edited by Lazerhack; 28-06-14 at 12:20 PM.

  4. #694
    Account Upgraded | Title Enabled! BladeKnight109 is offline
    MemberRank
    Jun 2014 Join Date
    242Posts

    re: [Release] zTeam Season 6 EP3 + Source


  5. #695
    King of the bongo Denied is offline
    MemberRank
    Oct 2009 Join Date
    RomaniaLocation
    986Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by CMETAHKA View Post
    BUG:
    Seals are diassapear after character switch.
    Any solutions?


    Problem #1:
    How ti fix TAB when writing account details ???

    Problem #2:*Fixed: I found good JoinServer by SynergyX in the MuEngine Free Repack.
    How to fix MD5? I have MD5 installed in the database and in the site but my JoinServer not allow me in the game. Someone give me good JoinServer with MD5 support
    1. If you search this thread you will find the fix for seals and many more

    2. The correct spelling would be How to add (not fix) TAB when writing account details because this feature is available since many versions, anyways, you can write either your name or password in the fields then press ENTER two times and it will forward you into the second files.

    3. Have you added the MD5 DLL to the correct place in MSSQL folder?

  6. #696
    Proficient Member caothuphutho is offline
    MemberRank
    Dec 2007 Join Date
    0x00000000Location
    150Posts

    re: [Release] zTeam Season 6 EP3 + Source

    source fix offline trade :
    find in GMMng.cpp :
    Code:
                char * OffTradeType = {0};
    
    
                OffTradeType = this->GetTokenString();
    
    
                if ( OffTradeType == NULL )
                {
                    return FALSE;
                }
    
    
                if(strcmp(OffTradeType, "zen") == 0 && g_OfflineTrade.EnableZen == true)
                {
                    g_OfflineTrade.Start(aIndex, 0);
                }
                else if(strcmp(OffTradeType, "wcoin") == 0 && g_OfflineTrade.EnableWCoin == true)
                {
                    g_OfflineTrade.Start(aIndex, 1);
                }
                else if(strcmp(OffTradeType, "soul") == 0 && g_OfflineTrade.EnableSoul == true)
                {
                    g_OfflineTrade.Start(aIndex, 2);
                }
                else
                {
                    return FALSE;
                }


    and fix :
    Code:
    /*            char * OffTradeType = {0};
    
    
                OffTradeType = this->GetTokenString();
    
    
                if ( OffTradeType == NULL )
                {
                    return FALSE;
                }
    */
                if(g_OfflineTrade.EnableZen == true)
                {
                    LogAddC(2, "test");
                    g_OfflineTrade.Start(aIndex, 0);
                }
                else if(g_OfflineTrade.EnableWCoin == true)
                {
                    g_OfflineTrade.Start(aIndex, 1);
                }
                else if(g_OfflineTrade.EnableSoul == true)
                {
                    g_OfflineTrade.Start(aIndex, 2);
                }
                else
                {
                    return FALSE;
                }

  7. #697
    selling server files is against RZ rules LTPTeam is offline
    MemberRank
    Feb 2013 Join Date
    UkraineLocation
    551Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by webmonkey View Post
    Doppleganger FIX is no longer needed and it breaks quest system. restore party check!
    crash has been fixed with Elf Summon FIX.
    which file to restore the party check?


    I do not remember, but from the post with fixed removed this part (

  8. #698
    Account Upgraded | Title Enabled! tranphuoctai is offline
    MemberRank
    Jan 2013 Join Date
    503Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by ikenylee View Post
    Custom wings Active
    Backdoor remove
    Pet unicorn fix
    Fix Double Goer
    Fix player post Command: !
    Pet dl Fix
    Crash summons elf Fix
    Drop 0 zen Fix
    Seals Fix
    Armony fix
    Customs Zteam Active (Aliennation, BalanceSystem, ItemDropBlock,ItemDropEx, MonsterSpawner, Offtrade Zen/Wcoin).
    Commands /openware (NEW)
    Logout custom Data\CommonServer.cfg (NEW)

    http://www.mediafire.com/download/br...r_UP7_Full.rar
    @ikenylee : your database in this update is SQL 2000 Or 2008?

  9. #699
    Account Upgraded | Title Enabled! Lazerhack is offline
    MemberRank
    Feb 2012 Join Date
    311Posts

    re: [Release] zTeam Season 6 EP3 + Source

    lol. I make a reset by my site then tried to enter the game and kicked to select server section.
    Also there is some other GS errors after this:

    error-L2 : Index EDSProtocol.cpp 2119

    error-L1 : CloseClient INVALID_SOCKET

    (user.cpp)(4416) = index over error (-1)

    Error: Monster location setting error user.cpp 3317
    error-L2 : 7037 class : 0

  10. #700
    selling server files is against RZ rules LTPTeam is offline
    MemberRank
    Feb 2013 Join Date
    UkraineLocation
    551Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by CMETAHKA View Post
    lol. I make a reset by my site then tried to enter the game and kicked to select server section.
    Also there is some other GS errors after this:

    error-L2 : Index EDSProtocol.cpp 2119

    error-L1 : CloseClient INVALID_SOCKET

    (user.cpp)(4416) = index over error (-1)

    Error: Monster location setting error user.cpp 3317
    error-L2 : 7037 class : 0
    zGameServer/Data/ServerInfo.dat
    and change
    MinUserReset = 0
    MaxUserReset = 0

    to

    MinUserReset = 0
    MaxUserReset = 99

  11. #701
    King of the bongo Denied is offline
    MemberRank
    Oct 2009 Join Date
    RomaniaLocation
    986Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Can someone release ResetGroup.txt and ResetGroup.z like this?

    Code:
    //===================================================================================
    // zGameServer
    // ----------------------------------------------------------------------------------
    // Description: Reset system group settings
    // ----------------------------------------------------------------------------------
    // Revision: 	14:31 10.08.2013
    //===================================================================================
    
    // ----------------------------------------------------------------------------------
    //	MinReset	MaxReset	ReqLevel	ReqMoney	ItemCount
    // ----------------------------------------------------------------------------------
    0
    	0		     50		400		10000000	1
    // ----------------------------------------------------------------------------------
    //	Point	GensP	WCoinC	WCoinP	GoblinP
    // ----------------------------------------------------------------------------------
    	700	0	5	10	20	//-> CLASS_WIZARD
    	700	0	5	10	20	//-> CLASS_KNIGHT
    	700	0	5	10	20	//-> CLASS_ELF
    	800	0	5	10	20	//-> CLASS_MAGUMSA
    	700	0	5	10	20	//-> CLASS_DARKLORD
    	800	0	5	10	20	//-> CLASS_SUMMONER
    	800	0	5	10	20	//-> CLASS_MONK
    // ----------------------------------------------------------------------------------
    //	ID	MinLvl	MaxLvl	MinOpt	MaxOpt	Luck	Skill	Exc	Anc	Sock
    // ----------------------------------------------------------------------------------
    
    end
    I would really appreciate it :D



    Also I found a new bug. After joining Gens the D or V sign wont appear

  12. #702
    Forget it RE5P3CT is offline
    MemberRank
    Dec 2005 Join Date
    BulgariaLocation
    258Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by Denied View Post
    Can someone release ResetGroup.txt and ResetGroup.z like this?

    Code:
    //===================================================================================
    // zGameServer
    // ----------------------------------------------------------------------------------
    // Description: Reset system group settings
    // ----------------------------------------------------------------------------------
    // Revision: 	14:31 10.08.2013
    //===================================================================================
    
    // ----------------------------------------------------------------------------------
    //	MinReset	MaxReset	ReqLevel	ReqMoney	ItemCount
    // ----------------------------------------------------------------------------------
    0
    	0		     50		400		10000000	1
    // ----------------------------------------------------------------------------------
    //	Point	GensP	WCoinC	WCoinP	GoblinP
    // ----------------------------------------------------------------------------------
    	700	0	5	10	20	//-> CLASS_WIZARD
    	700	0	5	10	20	//-> CLASS_KNIGHT
    	700	0	5	10	20	//-> CLASS_ELF
    	800	0	5	10	20	//-> CLASS_MAGUMSA
    	700	0	5	10	20	//-> CLASS_DARKLORD
    	800	0	5	10	20	//-> CLASS_SUMMONER
    	800	0	5	10	20	//-> CLASS_MONK
    // ----------------------------------------------------------------------------------
    //	ID	MinLvl	MaxLvl	MinOpt	MaxOpt	Luck	Skill	Exc	Anc	Sock
    // ----------------------------------------------------------------------------------
    
    end
    I would really appreciate it :D
    Here,
    https://mega.co.nz/#!uZMkkZbA!8nsn-r...T5TI2aGn8MBXcQ
    Also edit gameserver/data/serverinfo.dat
    MaxUserReset = 50

  13. #703
    selling server files is against RZ rules LTPTeam is offline
    MemberRank
    Feb 2013 Join Date
    UkraineLocation
    551Posts

    re: [Release] zTeam Season 6 EP3 + Source

    which file to restore the party check?


    I do not remember, but from the post with fixed removed this part (

  14. #704
    Account Upgraded | Title Enabled! tranphuoctai is offline
    MemberRank
    Jan 2013 Join Date
    503Posts

    re: [Release] zTeam Season 6 EP3 + Source

    bug find, create character RF and SUM by character card don't work!

  15. #705
    Account Upgraded | Title Enabled! Lazerhack is offline
    MemberRank
    Feb 2012 Join Date
    311Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by cocs55 View Post
    zGameServer/Data/ServerInfo.dat
    and change
    MinUserReset = 0
    MaxUserReset = 0

    to

    MinUserReset = 0
    MaxUserReset = 99
    thank you
    how could i seen this



Advertisement