BGames
Olá visitante! Seja bem vindo á BGames!

Para ter total acesso ao nosso fórum é preciso que você se registre.

Registre-se Aqui!


PARA VER LINKS E IMAGENS É PRECISO SE REGISTRAR!


BGames
Olá visitante! Seja bem vindo á BGames!

Para ter total acesso ao nosso fórum é preciso que você se registre.

Registre-se Aqui!


PARA VER LINKS E IMAGENS É PRECISO SE REGISTRAR!

BGames
Gostaria de reagir a esta mensagem? Crie uma conta em poucos cliques ou inicie sessão para continuar.

BGamesEntrar

Fórum de Desenvolvimento de Jogos e Programação


description[C++]Npc_Duel Reset Empty[C++]Npc_Duel Reset

more_horiz

Código:

#include "ScriptPCH.h"

class Duel_Reset_NPC : public CreatureScript
{
   public:
      Duel_Reset_NPC() : CreatureScript("Duel_Reset_NPC"){}

      bool OnGossipHello(Player * Player, Creature * pCreature)
      {

         if(Player->isInCombat())
         {
            WorldSession * m_session = Player->GetSession();
            m_session->SendNotification("You can't use me while in combat!");
            return false;
         }
         Player->ADD_GOSSIP_ITEM(4, "Reset my cooldowns!", GOSSIP_SENDER_MAIN, 0);
         Player->ADD_GOSSIP_ITEM(4, "Nevermind.", GOSSIP_SENDER_MAIN, 1);
         Player->PlayerTalkClass->SendGossipMenu(8548, pCreature->GetGUID());
         return true;
      }

      bool OnGossipSelect(Player * Player, Creature * Creature, uint32 /*uiSender*/, uint32 uiAction)
      {
         if(!Player)
            return true;

         WorldSession * m_session = Player->GetSession();
         switch(uiAction)
         {
            case 0:
               Player->RemoveAllSpellCooldown();
               Player->SetHealth(Player->GetMaxHealth());
               if ( Player->getPowerType() == POWER_MANA )
                  Player->SetPower(POWER_MANA, Player->GetMaxPower(POWER_MANA));
               Player->PlayerTalkClass->SendCloseGossip();
               m_session->SendNotification("Cooldowns and Heatlh/Mana reset!");
               break;
            case 1:
               Player->PlayerTalkClass->SendCloseGossip();
               break;
            default:
               Player->PlayerTalkClass->SendCloseGossip();
               break;
         }

         return true;
      }

};

void AddSC_DuelReset_NPC()
{
   new Duel_Reset_NPC;
}


OBS: Você precisa ter o Script de Duel Reset, ja implantado em seu Servidor.
Créditos: Inertia

description[C++]Npc_Duel Reset EmptyRe: [C++]Npc_Duel Reset

more_horiz
Não precisa do script de duel reset, esse é um script para npc.
Com função de resetar cooldowns e curar o life.

até+!

description[C++]Npc_Duel Reset EmptyRe: [C++]Npc_Duel Reset

more_horiz
ola galera, achei esse Script bom mas tenho uma duvida qual e o ID do npc depois de adicionado ?


at+ e vlw pelo scripit

description[C++]Npc_Duel Reset EmptyRe: [C++]Npc_Duel Reset

more_horiz
Olá,
Isso e um script C++ não e adicionado em repack como SQL,
E o id se encontra usando o seguinte comando.

Código:

.lookup npc [nome do npc]

description[C++]Npc_Duel Reset EmptyRe: [C++]Npc_Duel Reset

more_horiz
privacy_tip Permissões neste sub-fórum
Não podes responder a tópicos
power_settings_newInicie sessão para responder