[Release] zTeam Season 6 EP3 + Source

Page 40 of 304 FirstFirst ... 3032333435363738394041424344454647485090140 ... LastLast
Results 586 to 600 of 4549
  1. #586
    Enthusiast macoy is offline
    MemberRank
    Mar 2011 Join Date
    33Posts

    re: [Release] zTeam Season 6 EP3 + Source

    no CS for this?

  2. #587
    Am i? ScriptKid is offline
    MemberRank
    Oct 2006 Join Date
    $Location="??";Location
    1,810Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by Denied View Post
    Has anyone noticed that News Board gets screwed if you modify the current news?
    Nope :)



    - - - Updated - - -

    Quote Originally Posted by xtreme17 View Post
    Elf agility bug on 65k :)
    Even MG Power Slash. Maybe a Visual Bug unlike ES

  3. #588
    ¯\_(ツ)_/¯ Soumyxorp is offline
    MemberRank
    Jun 2011 Join Date
    CyberworldLocation
    337Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by webmonkey View Post
    Can we please all work together and FIX the source code instead of turning this into another ego fest topic like IA Julia's one? these files could be a HUGE ground base for custom development and stable servers.

    I get that everyone wants some sort of credit for the problems they solved but a comment on source with that is going to be much more useful than a thousand different compiled binaries. It makes more sense than everyone doing the same work over and over again.

    I'll try to keep an updated list of problems and solutions


    SEALS NOT WORKING FIX:

    Open WZ_PeriodItemInsert and Delete


    Code:
    SELECT       @periodItemIndex = PeriodIndex FROM T_PeriodItem_Info WHERE UserGuid =      @userGuid AND CharacterName =      @CharacterName AND OptionType =      @OptiOnType AND UsedInfo = 1
    
        IF (      @periodItemIndex != 0 )
        BEGIN
            UPDATE T_PeriodItem_Info SET UsedInfo = 0 WHERE UserGuid =      @userGuid AND CharacterName =      @CharacterName AND OptionType =      @OptiOnType AND UsedInfo = 1
         END
    //Credits to BladeKnight109

    UNICORN PET FIX (dissapears after move)

    go to user.cpp and add:

    Code:
    case ITEMGET(13,106): // Unicorn Pet
    lpObj->CharSet[16] |= 0xA0;
    break;
    below of:

    Code:
    case ITEMGET(13,80): // Panda Pet
    lpObj->CharSet[16] |= 224;
    break;
    // Credits to MemBrick

    DL RAVEN NOT LEVELING UP

    To fix this Edit GameServerInfo Table, fill the rows to 0

    //Credits to Josesp



    DOUBLE GOER EVENT CRASH ( I think I'm missing another error on enter, but I couldn't find info on it)

    Code:
    QuestExpProgMng.cpp file, find these lines:
    :
    void QuestExpProgMng::ChkUserQuestTypeMonsterKill(OBJECTSTRUCT *lpObj, 
                                                        OBJECTSTRUCT *lpMonsterObj)
    {
        if ( lpObj->PartyNumber == -1 )
        {
            ChkUserQuestType(1, lpObj, lpMonsterObj, 0);
            return;
        }
    
        int party_number = lpObj->PartyNumber;
        int killer_obj_index = lpObj->m_Index;
    
        for(int party_user_count = 0; party_user_count < 5; ++party_user_count )
        {
            int party_user_index = gParty.m_PartyS[party_number].Number[party_user_count];
            if( party_user_index >= 0 )
            {
                OBJECTSTRUCT* lpPartyObj = &gObj[party_user_index];
                if( gObj[party_user_index].Connected >= PLAYER_PLAYING || !lpPartyObj->Live )
                {
                    if( lpObj->MapNumber == lpPartyObj->MapNumber )
                    {
                        if( gObjCalDistance(lpObj, lpPartyObj) <= 9 )
                            ChkUserQuestType(1, lpPartyObj, lpMonsterObj, killer_obj_index);
                    }
                }
            }
        }
    
    }
    this check for party members, and got error, coz doppel is party event, and if u go alone, dowwn...

    Code:
     if ( lpObj->PartyNumber == -1 )
        {
            ChkUserQuestType(1, lpObj, lpMonsterObj, 0);
            return;
        }
    just comment these lines, and bazinga =D

    // Credits to Brunoia


    List of things not working:

    * Quest system: Missing config files in data\customs
    * Gifts from Shop
    * Denied mentioned something about a Jewel of Harmony bug?

    BladeKnight109 was nice enough to upload fixed DB here
    SQL2008
    SQL2000

    please PM with any mistakes or more errors so I can at least try to keep an updated source.


    Thanks!
    Sorry if noob question but i don't see any code? am i using an outdated source or..



    edit: nvm yeah i downloaded the other link ^^
    Last edited by Soumyxorp; 27-06-14 at 03:11 AM.

  4. #589
    Am i? ScriptKid is offline
    MemberRank
    Oct 2006 Join Date
    $Location="??";Location
    1,810Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Another BUG Found

    Try to Summon any Elf Summon GS will crash

  5. #590
    Valued Member webmonkey is offline
    MemberRank
    Jul 2005 Join Date
    125Posts

    re: [Release] zTeam Season 6 EP3 + Source

    ScriptKid are you using latest source? summons work fine for me

  6. #591
    Member MemBrick is offline
    MemberRank
    Nov 2012 Join Date
    ArgentinaLocation
    65Posts

    re: [Release] zTeam Season 6 EP3 + Source

    LOL now any mistake on configuration is called "BUG"

  7. #592
    Am i? ScriptKid is offline
    MemberRank
    Oct 2006 Join Date
    $Location="??";Location
    1,810Posts

    re: [Release] zTeam Season 6 EP3 + Source

    @memBrik : I won't report anything if it's not tested or it's only a conflict on the configuration.
    @webmonkey : I'm using the latest update . NO Logs can be founded.

  8. #593
    Valued Member webmonkey is offline
    MemberRank
    Jul 2005 Join Date
    125Posts

    re: [Release] zTeam Season 6 EP3 + Source

    spoke too soon, crashed after a few seconds. looks like a bug in quests. UserQuestInfo::GetEpisode()

  9. #594
    Am i? ScriptKid is offline
    MemberRank
    Oct 2006 Join Date
    $Location="??";Location
    1,810Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Add it in your Bug Update and Fix Thanks!

  10. #595
    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 ScriptKid View Post
    Nope :)



    - - - Updated - - -



    Even MG Power Slash. Maybe a Visual Bug unlike ES
    Share me yours please..

    Could be the editor fault?

  11. #596
    Am i? ScriptKid is offline
    MemberRank
    Oct 2006 Join Date
    $Location="??";Location
    1,810Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Sure

    Code:
    //===================================================================================
    // zGameServer
    // ----------------------------------------------------------------------------------
    // Description: News list (max news count: 12)
    // ----------------------------------------------------------------------------------
    // Revision:     7:49 01.09.2013
    //===================================================================================
    
    // ----------------------------------------------------------------------------------
    //    Date        Time    Title
    // ----------------------------------------------------------------------------------
        "06.20.2014"    "03:15"    "ScrptKid"
    //===================================================================================
        "Information Goes here"
    // ----------------------------------------------------------------------------------
    //    Date        Time    Title
    // ----------------------------------------------------------------------------------
        "06.27.2014"    "03:15"    "RageZone.com"
    //===================================================================================
        "Information Goes here"

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

    re: [Release] zTeam Season 6 EP3 + Source

    Fixed!

    Use ANSI for encode when saving NewsList to avoid any problems :)
    Last edited by Denied; 27-06-14 at 02:39 AM.

  13. #598
    Valued Member webmonkey is offline
    MemberRank
    Jul 2005 Join Date
    125Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Elf Summon FIX

    in gObjMonster.cpp

    find:

    Code:
    #ifdef WZQUEST
    		if( lpObj->Type == OBJ_MONSTER)
    		{
    			g_QuestExpProgMng.ChkUserQuestTypeMonsterKill(&gObj[aIndex], lpObj);
    			g_QuestExpProgMng.QuestMonsterItemDrop(0, &gObj[aIndex], lpObj);
    		}
    #endif
    and replace with:

    Code:
    #ifdef WZQUEST
    		if( lpObj->Type == OBJ_MONSTER && gObj[aIndex].Type == OBJ_USER)
    		{
    			g_QuestExpProgMng.ChkUserQuestTypeMonsterKill(&gObj[aIndex], lpObj);
    			g_QuestExpProgMng.QuestMonsterItemDrop(0, &gObj[aIndex], lpObj);
    		}
    #endif

  14. #599
    Am i? ScriptKid is offline
    MemberRank
    Oct 2006 Join Date
    $Location="??";Location
    1,810Posts

    re: [Release] zTeam Season 6 EP3 + Source

    @webmonkey : bro can you send me your fixed GS? im at the office can't work on that ATM. Thanks!

  15. #600
    Member MemBrick is offline
    MemberRank
    Nov 2012 Join Date
    ArgentinaLocation
    65Posts

    re: [Release] zTeam Season 6 EP3 + Source

    Quote Originally Posted by ScriptKid View Post
    @webmonkey : bro can you send me your fixed GS? im at the office can't work on that ATM. Thanks!
    Because of people like you who want everything served making no effort is that those who know do not want to share anything.



Advertisement