Jump to content

Duel - Reset


Alexej

Recommended Posts

Inspired by Foereaper - Duel Reset

---------------------------------------------
--            Made by Foereaper            --
--       Edited and Tested by Alexej       --
--  Expansion: The Burning Crusade 2.4.3   --
---------------------------------------------

function OnDuelReset(event, player1, player2)
   -- OnDuelReset - player1
   player1:ResetAllCooldowns()                 -- Remove all cooldowns.
   player1:SetHealth(player1:GetMaxHealth())   -- Set player1 health to maximum. (100%)
   player1:SetPower(player1:GetMaxPower(), 0)  -- Set player1 mana to maximum.   (100%)
   player1:SetPower(0, 1)                      -- Set player1 rage to minimum.     (0%)
   player1:SetPower(player1:GetMaxPower(), 3)  -- Set player1 energy to maximum. (100%)

   -- OnDuelReset - player2
   player2:ResetAllCooldowns()                 -- Remove all cooldowns.
   player2:SetHealth(player2:GetMaxHealth())   -- Set player2 health to maximum. (100%)
   player2:SetPower(player2:GetMaxPower(), 0)  -- Set player2 mana to maximum.   (100%)
   player2:SetPower(0, 1)                      -- Set player2 rage to minimum.     (0%)
   player2:SetPower(player2:GetMaxPower(), 3)  -- Set player2 energy to maximum. (100%)
end


RegisterPlayerEvent(10, OnDuelReset)           -- PLAYER_EVENT_ON_DUEL_START
RegisterPlayerEvent(11, OnDuelReset)           -- PLAYER_EVENT_ON_DUEL_END

 

Edited by Alexej
  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • 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