Jump to content
  • 0

Cross-faction healing in raid groups


JPlady42

Question

6 answers to this question

Recommended Posts

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

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

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