Forums WoW Modding Support Archives TrinityCore Discord Archives [DiscordArchive] <@200677690838220800> does it matter whether i push a PR for this without any way to know which one

[DiscordArchive] <@200677690838220800> does it matter whether i push a PR for this without any way to know which one

[DiscordArchive] <@200677690838220800> does it matter whether i push a PR for this without any way to know which one

Pages (2): 1 2 Next
rektbyfaith
Administrator
0
06-30-2025, 05:47 PM
#1
Archived author: Telegrill • Posted: 2025-06-30T17:47:23.629000+00:00
Original source

<@200677690838220800> does it matter whether i push a PR for this without any way to know which one is which?
rektbyfaith
06-30-2025, 05:47 PM #1

Archived author: Telegrill • Posted: 2025-06-30T17:47:23.629000+00:00
Original source

<@200677690838220800> does it matter whether i push a PR for this without any way to know which one is which?

rektbyfaith
Administrator
0
06-30-2025, 05:48 PM
#2
Archived author: Telegrill • Posted: 2025-06-30T17:48:03.361000+00:00
Original source

because sniffs aren't telling me much, unless there's something in the client i cant really access
rektbyfaith
06-30-2025, 05:48 PM #2

Archived author: Telegrill • Posted: 2025-06-30T17:48:03.361000+00:00
Original source

because sniffs aren't telling me much, unless there's something in the client i cant really access

rektbyfaith
Administrator
0
06-30-2025, 05:48 PM
#3
Archived author: Hayden • Posted: 2025-06-30T17:48:18.624000+00:00
Original source

That a good thing, thanks for checking <:pepoLove:431878952265580564>
rektbyfaith
06-30-2025, 05:48 PM #3

Archived author: Hayden • Posted: 2025-06-30T17:48:18.624000+00:00
Original source

That a good thing, thanks for checking <:pepoLove:431878952265580564>

rektbyfaith
Administrator
0
06-30-2025, 05:48 PM
#4
Archived author: Telegrill • Posted: 2025-06-30T17:48:25.485000+00:00
Original source

or maybe there's something in sniffs im missing (which is probably true)
rektbyfaith
06-30-2025, 05:48 PM #4

Archived author: Telegrill • Posted: 2025-06-30T17:48:25.485000+00:00
Original source

or maybe there's something in sniffs im missing (which is probably true)

rektbyfaith
Administrator
0
06-30-2025, 05:48 PM
#5
Archived author: Telegrill • Posted: 2025-06-30T17:48:40.756000+00:00
Original source

since gear/tool shouldn't appear at all with one option set
rektbyfaith
06-30-2025, 05:48 PM #5

Archived author: Telegrill • Posted: 2025-06-30T17:48:40.756000+00:00
Original source

since gear/tool shouldn't appear at all with one option set

rektbyfaith
Administrator
0
06-30-2025, 05:52 PM
#6
Archived author: Hayden • Posted: 2025-06-30T17:52:42.401000+00:00
Original source

I have a weird thing happening with AccountBankTabSettings, basically i want to update UFs after modify a tab so value taken by opcode CMSG_UPDATE_ACCOUNT_BANK_TAB_SETTINGS i'm doing something wrong? i got a malformed update

```C++
void WorldSession::HandleUpdateAccountBankTabSettings(WorldPackets::Bank::UpdateAccountBankTabSettings& p_Packet)
{
Creature* l_Unit = m_Player->GetNPCIfCanInteractWith(p_Packet.Banker, UNIT_NPC_FLAG_ACCOUNT_BANKER | UNIT_NPC_FLAG_BANKER, UNIT_NPC_FLAG2_NONE);
if (!l_Unit)
return;

if (m_Player->m_activePlayerData->AccountBankTabSettings.size() <= p_Packet.TabID)
return;

auto l_TabUpdate = m_Player->m_values.ModifyValue(&Player::m_activePlayerData).ModifyValue(&UF::ActivePlayerData::AccountBankTabSettings, p_Packet.TabID);
m_Player->SetUpdateFieldValue(l_TabUpdate.ModifyValue(&UF::BankTabSettings:Big GrinepositFlags), p_Packet.DepositFlags);
m_Player->SetUpdateFieldValue(l_TabUpdate.ModifyValue(&UF::BankTabSettings::Name), p_Packet.Name);
m_Player->SetUpdateFieldValue(l_TabUpdate.ModifyValue(&UF::BankTabSettings::Icon), p_Packet.Icon);
m_Player->SetUpdateFieldValue(l_TabUpdate.ModifyValue(&UF::BankTabSettings:Big Grinescription), p_Packet.Description);
```
[Image: image.png?ex=690c37aa&is=690ae62a&hm=494...80b0c4fc4&]
rektbyfaith
06-30-2025, 05:52 PM #6

Archived author: Hayden • Posted: 2025-06-30T17:52:42.401000+00:00
Original source

I have a weird thing happening with AccountBankTabSettings, basically i want to update UFs after modify a tab so value taken by opcode CMSG_UPDATE_ACCOUNT_BANK_TAB_SETTINGS i'm doing something wrong? i got a malformed update

```C++
void WorldSession::HandleUpdateAccountBankTabSettings(WorldPackets::Bank::UpdateAccountBankTabSettings& p_Packet)
{
Creature* l_Unit = m_Player->GetNPCIfCanInteractWith(p_Packet.Banker, UNIT_NPC_FLAG_ACCOUNT_BANKER | UNIT_NPC_FLAG_BANKER, UNIT_NPC_FLAG2_NONE);
if (!l_Unit)
return;

if (m_Player->m_activePlayerData->AccountBankTabSettings.size() <= p_Packet.TabID)
return;

auto l_TabUpdate = m_Player->m_values.ModifyValue(&Player::m_activePlayerData).ModifyValue(&UF::ActivePlayerData::AccountBankTabSettings, p_Packet.TabID);
m_Player->SetUpdateFieldValue(l_TabUpdate.ModifyValue(&UF::BankTabSettings:Big GrinepositFlags), p_Packet.DepositFlags);
m_Player->SetUpdateFieldValue(l_TabUpdate.ModifyValue(&UF::BankTabSettings::Name), p_Packet.Name);
m_Player->SetUpdateFieldValue(l_TabUpdate.ModifyValue(&UF::BankTabSettings::Icon), p_Packet.Icon);
m_Player->SetUpdateFieldValue(l_TabUpdate.ModifyValue(&UF::BankTabSettings:Big Grinescription), p_Packet.Description);
```
[Image: image.png?ex=690c37aa&is=690ae62a&hm=494...80b0c4fc4&]

rektbyfaith
Administrator
0
06-30-2025, 05:59 PM
#7
Archived author: Telegrill • Posted: 2025-06-30T17:59:34.345000+00:00
Original source

are you sure AccountBankTabSettings is not missing any new fields?
rektbyfaith
06-30-2025, 05:59 PM #7

Archived author: Telegrill • Posted: 2025-06-30T17:59:34.345000+00:00
Original source

are you sure AccountBankTabSettings is not missing any new fields?

rektbyfaith
Administrator
0
06-30-2025, 06:00 PM
#8
Archived author: Telegrill • Posted: 2025-06-30T18:00:12.196000+00:00
Original source

or the fields are in order
rektbyfaith
06-30-2025, 06:00 PM #8

Archived author: Telegrill • Posted: 2025-06-30T18:00:12.196000+00:00
Original source

or the fields are in order

rektbyfaith
Administrator
0
06-30-2025, 06:00 PM
#9
Archived author: Tea • Posted: 2025-06-30T18:00:30.282000+00:00
Original source

there is a bug with the structure specifically for accountbanktabsettings
rektbyfaith
06-30-2025, 06:00 PM #9

Archived author: Tea • Posted: 2025-06-30T18:00:30.282000+00:00
Original source

there is a bug with the structure specifically for accountbanktabsettings

rektbyfaith
Administrator
0
06-30-2025, 06:00 PM
#10
Archived author: Hayden • Posted: 2025-06-30T18:00:39.176000+00:00
Original source

ha!
rektbyfaith
06-30-2025, 06:00 PM #10

Archived author: Hayden • Posted: 2025-06-30T18:00:39.176000+00:00
Original source

ha!

Pages (2): 1 2 Next
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)