[DiscordArchive] anyone know how to disable grouping in gurubashi arena?
[DiscordArchive] anyone know how to disable grouping in gurubashi arena?
Archived author: Chaz • Posted: 2020-10-31T22:31:55.251000+00:00
Original source
anyone know how to disable grouping in gurubashi arena?
Archived author: Chaz • Posted: 2020-10-31T22:32:05.633000+00:00
Original source
the world pvp zone
Archived author: IntelligentQuantum • Posted: 2020-10-31T23:02:14.327000+00:00
Original source
> anyone know how to disable grouping in gurubashi arena?
<@!207901137267851264> GroupHandler.cpp
``
+if (player->GetMapId() == 0 && player->GetAreaId() == 2177)
+{
+ SendPartyResult(PARTY_OP_INVITE, membername, ERR_BAD_PLAYER_NAME_S);
+ return;
+}
// restrict invite to GMs
if (!sWorld->getBoolConfig(CONFIG_ALLOW_GM_GROUP) && !GetPlayer()->IsGameMaster() && player->IsGameMaster())
{
``
Archived author: IntelligentQuantum • Posted: 2020-10-31T23:04:15.143000+00:00
Original source
Player.cpp
``
UpdateAreaDependentAuras(newArea);
+ if (this->GetMapId() == 0 && this->GetAreaId() == 2177)
+ {
+ if (Group* group = this->GetGroup())
+ {
+ if (group->GetMembersCount() >= 3)
+ {
+ this->RemoveFromGroup();
+ return;
+ }
+ }
+ }
pvpInfo.IsInNoPvPArea = false;
if (!area)
{
``
Archived author: Chaz • Posted: 2020-10-31T23:28:42.729000+00:00
Original source
<@550013353171484682> u made my day