Created
July 4, 2024 09:07
-
-
Save DeluxtDev/1cf46db1b067af7bbd5f08fb91aadf93 to your computer and use it in GitHub Desktop.
Duel Reset
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
Created for WowEmulation.com by Deluxt | |
This script will reset player cooldowns and health, mana, and energy after a duel. | |
Add the power types you want to reset here. | |
POWER_MANA = 0, | |
POWER_RAGE = 1, | |
POWER_FOCUS = 2, | |
POWER_ENERGY = 3, | |
POWER_HAPPINESS = 4, | |
POWER_RUNE = 5, | |
POWER_RUNIC_POWER = 6, | |
MAX_POWERS = 7, | |
POWER_ALL = 127 | |
It is important to note trinity has duel reset built into the world config. | |
But this is easily customizable to suit your needs if that isnt enough. | |
]]-- | |
local powersToReset = {0, 3} | |
local function ResetPlayer(player) | |
player:ResetAllCooldowns(); | |
player:SetHealth(player:GetMaxHealth()); | |
power = player:GetPowerType(); | |
for i, v in ipairs(powersToReset) do | |
if (power == v) then | |
player:SetPower(player:GetMaxPower(v), v); | |
end | |
end | |
end | |
local function OnDuelEnd(event, winner, loser, type) | |
ResetPlayer(winner); | |
ResetPlayer(loser); | |
end | |
RegisterPlayerEvent(11, OnDuelEnd) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment