Forums WoW Modding Support Archives Azerothcore Discord Archives [DiscordArchive] anyone know how to disable grouping in gurubashi arena?

[DiscordArchive] anyone know how to disable grouping in gurubashi arena?

[DiscordArchive] anyone know how to disable grouping in gurubashi arena?

rektbyfaith
Administrator
0
10-31-2020, 10:31 PM
#1
Archived author: Chaz • Posted: 2020-10-31T22:31:55.251000+00:00
Original source

anyone know how to disable grouping in gurubashi arena?
rektbyfaith
10-31-2020, 10:31 PM #1

Archived author: Chaz • Posted: 2020-10-31T22:31:55.251000+00:00
Original source

anyone know how to disable grouping in gurubashi arena?

rektbyfaith
Administrator
0
10-31-2020, 10:32 PM
#2
Archived author: Chaz • Posted: 2020-10-31T22:32:05.633000+00:00
Original source

the world pvp zone
rektbyfaith
10-31-2020, 10:32 PM #2

Archived author: Chaz • Posted: 2020-10-31T22:32:05.633000+00:00
Original source

the world pvp zone

rektbyfaith
Administrator
0
10-31-2020, 11:02 PM
#3
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())
{
``
rektbyfaith
10-31-2020, 11:02 PM #3

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())
{
``

rektbyfaith
Administrator
0
10-31-2020, 11:04 PM
#4
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)
{
``
rektbyfaith
10-31-2020, 11:04 PM #4

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)
{
``

rektbyfaith
Administrator
0
10-31-2020, 11:28 PM
#5
Archived author: Chaz • Posted: 2020-10-31T23:28:42.729000+00:00
Original source

<@550013353171484682> u made my day
rektbyfaith
10-31-2020, 11:28 PM #5

Archived author: Chaz • Posted: 2020-10-31T23:28:42.729000+00:00
Original source

<@550013353171484682> u made my day

Recently Browsing
 
Recently Browsing