https://trinitycore.org logo
Join Discord
Powered by
# 💬・lobby
  • r

    rapid-rose-39834

    07/10/2025, 8:33 AM
    I want to receive it from a rest api
  • r

    rapid-rose-39834

    07/10/2025, 8:34 AM
    I mean to separate into 2 flows Login: Login through a web api => save ticket Launch game: Store ticket into registry and launch
  • r

    rapid-rose-39834

    07/10/2025, 8:34 AM
    And then I hope to launch straight into character select
  • w

    wonderful-plastic-29020

    07/10/2025, 8:35 AM
    Generally a bad idea, how the blizz launcher does it is that it connects to the auth/bnet server and it stores the ticket immediately in registry (afaik)
  • r

    rapid-rose-39834

    07/10/2025, 8:36 AM
    I need to assume players will want multiple accounts stored
  • r

    rapid-rose-39834

    07/10/2025, 8:36 AM
    We have quite a few multiboxers
  • a

    aloof-winter-8914

    07/10/2025, 12:02 PM
    U ever see those jbod arrays online for sale?
  • a

    aloof-winter-8914

    07/10/2025, 12:03 PM
    Usually like around 200ish
  • a

    aloof-winter-8914

    07/10/2025, 12:03 PM
    Slap 48 hdds in them
  • a

    aloof-winter-8914

    07/10/2025, 12:04 PM
  • r

    rough-piano-65188

    07/10/2025, 5:39 PM
    Question for anyone that might know. I created a spell that uses SPELL_AURA_FORCE_REACTION and SPELL_AURA_MOD_FACTION. My goal is while I have the buff on I can attack members of my faction while being friendly to members of the other faction. It seems to work but I notice this odd bug with aggroing. Like for example, this AV boss will only attack me if I hit him first but for real Horde, he will aggro when they are in range. https://gyazo.com/37adc2e7ec7051a27d86d99636fa764f.mp4 Anyone happen to know what I can do to make this more smooth.
  • a

    adventurous-ability-81259

    07/10/2025, 5:53 PM
    you should check what the conditions are for detection to happen
  • a

    adventurous-ability-81259

    07/10/2025, 5:53 PM
    maybe they're not taking those aura changes into account
  • r

    rough-piano-65188

    07/10/2025, 6:37 PM
    looks like it comes from
  • r

    rough-piano-65188

    07/10/2025, 6:37 PM
    Copy code
    bool WorldObject::IsFriendlyTo(WorldObject const* target) const
    {
        return GetReactionTo(target) >= REP_FRIENDLY;
    }
  • r

    rough-piano-65188

    07/10/2025, 6:50 PM
    found it, specifically
  • r

    rough-piano-65188

    07/10/2025, 6:50 PM
    Copy code
    if (FactionEntry const* factionEntry = sFactionStore.LookupEntry(factionTemplateEntry->Faction))
                {
                    if (factionEntry->CanHaveReputation())
                    {
                        // CvP case - check reputation, don't allow state higher than neutral when at war
                        ReputationRank repRank = targetPlayerOwner->GetReputationMgr().GetRank(factionEntry);
                        if (targetPlayerOwner->GetReputationMgr().IsAtWar(factionEntry))
                            repRank = std::min(REP_NEUTRAL, repRank);
                        return repRank;
                    }
                }
  • a

    adventurous-ability-81259

    07/10/2025, 7:29 PM
    what does it return?
  • a

    adventurous-ability-81259

    07/10/2025, 7:29 PM
    for that case specifically
  • r

    rough-piano-65188

    07/10/2025, 10:47 PM
    well since im still an alliance player
  • r

    rough-piano-65188

    07/10/2025, 10:47 PM
    i have rep with AV people
  • r

    rough-piano-65188

    07/10/2025, 10:47 PM
    and since I have rep that is in good standing with them, they wont aggro me via range
  • g

    glamorous-manchester-1005

    07/10/2025, 10:48 PM
    well well well https://cdn.discordapp.com/attachments/376073286884392970/1393000892583907439/image.png?ex=687194ad&is=6870432d&hm=73d1f080d54131e4fecbde1d1f594f4257cf80f9621d6db69561707e1ba2813b&
  • r

    rough-piano-65188

    07/10/2025, 10:48 PM
    so I added a check, that would skip that if my faction was set to fake horde player
  • g

    glamorous-manchester-1005

    07/10/2025, 10:48 PM
    now i'm curious what kind of code a supposed Blizzard Developer is writing
  • r

    rough-piano-65188

    07/10/2025, 10:49 PM
    He spoke about this a bit on his stream b4 ppl were trying to cancel him
  • r

    rough-piano-65188

    07/10/2025, 10:49 PM
    I forget what he said but what he worked on is prob in a clip online somewhere
  • g

    glamorous-manchester-1005

    07/10/2025, 10:49 PM
    people take apart his code
  • g

    glamorous-manchester-1005

    07/10/2025, 10:50 PM
    now i'm curious what i will expect
  • g

    glamorous-manchester-1005

    07/10/2025, 11:19 PM
    ok crazy, that code is really insane