Party on GS

Results 1 to 3 of 3
  1. #1
    Proficient Member wataru is offline
    MemberRank
    Jan 2010 Join Date
    157Posts

    Party on GS

    hi guys please help me how to fix party GS. I already disable the Party skill on GS but they use glitch by invite the member and they will not accept the Party and Teleport on GS map and accept the Party and the Party Leader will use the party skill outside of the GS map and they will freely use the party skills on the GS. please help me how the fix this on source ty.


  2. #2
    Enthusiast faketest1234 is offline
    MemberRank
    May 2017 Join Date
    34Posts

    Re: Party on GS

    I'm assuming you want to fix the fact that people can use linked attack in siege? Instead of disabling the use of party skills. Instead disable the damage modifier of linked attack while people are in siege.

    Simply go to attackarbiter.cpp and search for:

    Code:
    nDamage += pAttacker->CalcLinkAttackDamage( nDamage );
    and replace it with
    Code:
    if(pAttacker->GetWorld()->GetID() != WI_WORLD_GUILDWAR )
    {
    nDamage += pAttacker->CalcLinkAttackDamage( nDamage );
    }
    In case your server has multiple siege/pvp worlds then don't just check for WI_WORLD_GUILDWAR but also check for the other worlds where applicable.

  3. #3
    Proficient Member wataru is offline
    MemberRank
    Jan 2010 Join Date
    157Posts

    Re: Party on GS

    thanks bro check it later when im home.



Advertisement