1. #1

    Let horde players whisper alliance group leaders in LFG tool.

    I cannot be the only person this annoys, trying to whisper people in the tool only to find out they are of the opposing faction.

    Can we raise awareness so they fix this, cant be that difficult, im no coder so idk if below is even something that will work:

    if (IsInGroup() && IsLFGModeActive()) {
    const char* playerFaction = UnitFactionGroup("player");
    if (strcmp(playerFaction, "Horde") == 0 || strcmp(playerFaction, "Alliance") == 0) {
    uint32_t proposalType, instanceType, _, _, _, _, _, instanceID;
    GetLFGProposal(&proposalType, &instanceType, nullptr, nullptr, nullptr, nullptr, nullptr, &instanceID);
    if (proposalType && instanceType && instanceID) {
    char* leaderName = nullptr;
    LFGGetLeaderName(instanceID, &leaderName);
    if (leaderName && strcmp(UnitFactionGroup(leaderName), playerFaction) != 0) {
    std::string whisperCommand = "/w " + std::string(leaderName) + " ";
    ChatFrame_OpenChat(whisperCommand.c_str(), 1);
    }
    if (leaderName) {
    delete[] leaderName;
    }
    }
    }
    }

  2. #2
    Or, you know, just get rid of the stupid language barrier altogether. It was dumb when it was conceived, and it's dumb to this day.

    It's even idiotic in-game; there's no reason whatsoever that Forsaken and Humans couldn't communicate, nevermind the various Elf factions.

  3. #3
    Warchief
    7+ Year Old Account
    Join Date
    Mar 2015
    Location
    Unda da bridge, mon
    Posts
    2,077
    Yeah, I would just remove the barrier and let everyone speak "Common" at any time.
    It was neat when the game started, but turns out 19 years later, it's kind of annoying.

  4. #4
    yep. they need to fix it. However, lfg tool has been always broken in some way. Like no longer allowing users to filter spams since blizzards block apis to access title, description and voicechat etc.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •