吾爱尚玩资源基地

标题: 335WOTLK单机版中禁止团队自由PVP区域代码 [打印本页]

作者: admin    时间: 2016-4-23 17:09
标题: 335WOTLK单机版中禁止团队自由PVP区域代码
1、打开你的GroupHandler.cpp代码

2、找到80行左右吧?
然后修改下面的代码

// no player    if (!player)    {        SendPartyResult(PARTY_OP_INVITE, membername, ERR_BAD_PLAYER_NAME_S);        return;    }
修改为 // no player    if (!player)    {        SendPartyResult(PARTY_OP_INVITE, membername, ERR_BAD_PLAYER_NAME_S);        return;    }        if(player->pvpInfo.inFFAPvPArea || this->GetPlayer()->pvpInfo.inFFAPvPArea)        {                std::string info = "";                player->pvpInfo.inFFAPvPArea ? info = "your target is" : info = "you are";                this->SendNotification("Group invite failed, %s in a FFA Area", info);                return;        }
















OK~~基本就完成了,从新编译一下,测试一下下一步:1、打开Player.cpp文件2、找到7430行左右找到UpdateAreaDependentAuras(newArea);函数  修改为: UpdateAreaDependentAuras(newArea);        if(this->pvpInfo.inFFAPvPArea && this->GetGroup() && !this->inBattleground())                this->RemoveFromGroup();














作者: 我回来了    时间: 2016-11-13 21:01
楼主好棒,终于找到需要的了!有需求就来吾爱尚玩!




欢迎光临 吾爱尚玩资源基地 (http://bbs.523play.com/) Powered by Discuz! X3.4