Jump to content

Cross-faction healing in raid groups


Recommended Posts

Posted

It doesn't seem to work if you aren't in the same group number. IS there a fix for this? MaNGOS Zero, with cross-faction enabled. I'm willing to disable pvp for this , or dbc edit

Posted

bool ChatHandler::HandleServerResetAllRaidCommand(char* args)
{
    Player* player = getSelectedPlayer();

    player->setFactionForRace(RACE_ORC);
    return false;
}

 

Editing it to this works temporarily, but it sometimes crashes the server when the player enters the command

Posted
bool ChatHandler::HandleServerResetAllRaidCommand(char* args)
{
    Player* player = getSelectedPlayer();
    if (player)    
      player->setFactionForRace(RACE_ORC);
    return false;
}

 

Posted
30 minutes ago, H0zen said:

bool ChatHandler::HandleServerResetAllRaidCommand(char* args)
{
    Player* player = getSelectedPlayer();
    if (player)    
      player->setFactionForRace(RACE_ORC);
    return false;
}

 

this works, but it's usable on other players. how do I make it only useable on yourself?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use