1. #1

    Necrosis LdC - 3.3 Version Released!

    I just wanted to inform you all, my Warlock brethren, that after many months a new version of the popular addon Necrosis has been released!

    You can find it on Curse. com website.
    It includes all the recent changes regarding Warlocks such as Fel Domination cooldown, Infernal cooldown, Soulstone cooldown - as well as quite a few bug fixes.

    For those of you that have not yet tried the Necrosis addon, i highly recommend it.

  2. #2

    Re: Necrosis LdC - 3.3 Version Released!

    I suppot this thread.
    Necrosis makes your warlock life a lot easier. Glad to see a new release.

    It still doesn't make coffee though...

  3. #3

    Re: Necrosis LdC - 3.3 Version Released!

    I actually took the 3.3 release as an opportunity to uninstall Necrosis from my PC - as well as it has served me over the years, I've found that I'm no longer using it since I have other addons to do most of those tasks, plus I tend to find it's a little bit... "bulky" as addons go...

    If there's anything particularly special in the new version, I'm all ears, but I think I'm over necrosis now...

  4. #4
    Deleted

    Re: Necrosis LdC - 3.3 Version Released!

    Quote Originally Posted by ~Thalia~
    I suppot this thread.
    Necrosis makes your warlock life a lot easier. Glad to see a new release.

    It still doesn't make coffee though...
    ^^^ This

  5. #5

    Re: Necrosis LdC - 3.3 Version Released!

    Its a lovely addon that simplifies Warlock summoning, stones, pets and certain spells.
    Personally i do not even play my lock without Necrosis.

  6. #6
    Legendary! gherkin's Avatar
    15+ Year Old Account
    Join Date
    Aug 2008
    Location
    Vancouver, BC, Canada
    Posts
    6,002

    Re: Necrosis LdC - 3.3 Version Released!

    @Thalia

    Open Message.lua

    Find the following

    Code:
    elseif Spell.Name == Necrosis.Spell[37].Name then
    		Speeches.SpellSucceed.TP = setmetatable({}, metatable)
    		if (NecrosisConfig.ChatMsg or NecrosisConfig.SM) and self.Speech.TP then
    			local tempnum = math.random(1, #self.Speech.TP)
    			while tempnum == Speeches.LastSpeech.TP and #self.Speech.TP >= 2 do
    				tempnum = math.random(1, #self.Speech.TP)
    			end
    			Speeches.LastSpeech.TP = tempnum
    			for i in ipairs(self.Speech.TP[tempnum]) do
    				if self.Speech.TP[tempnum][i]:find("<after>") then
    					Speeches.SpellSucceed.TP:insert(self.Speech.TP[tempnum][i])
    				elseif self.Speech.TP[tempnum][i]:find("<emote>") then
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "EMOTE")
    				elseif self.Speech.TP[tempnum][i]:find("<yell>") then
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "YELL")
    				else
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "WORLD")
    				end
    			end
    		end
    		AlphaBuffMenu = 1
    		AlphaBuffVar = GetTime() + 3
    	-- messages to be posted while summoning a pet demon

    Add a this new line
    Code:
    			self:Msg("summons a nice steaming cup of Gherkin Dark Blend.", "EMOTE")
    so that it looks like this

    Code:
    elseif Spell.Name == Necrosis.Spell[37].Name then
    		Speeches.SpellSucceed.TP = setmetatable({}, metatable)
    		if (NecrosisConfig.ChatMsg or NecrosisConfig.SM) and self.Speech.TP then
    			local tempnum = math.random(1, #self.Speech.TP)
    			while tempnum == Speeches.LastSpeech.TP and #self.Speech.TP >= 2 do
    				tempnum = math.random(1, #self.Speech.TP)
    			end
    			Speeches.LastSpeech.TP = tempnum
    			for i in ipairs(self.Speech.TP[tempnum]) do
    				if self.Speech.TP[tempnum][i]:find("<after>") then
    					Speeches.SpellSucceed.TP:insert(self.Speech.TP[tempnum][i])
    				elseif self.Speech.TP[tempnum][i]:find("<emote>") then
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "EMOTE")
    				elseif self.Speech.TP[tempnum][i]:find("<yell>") then
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "YELL")
    				else
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "WORLD")
    				end
    			end
    			self:Msg("summons a nice steaming cup of Gherkin Dark Blend.", "EMOTE")
    		end
    		AlphaBuffMenu = 1
    		AlphaBuffVar = GetTime() + 3
    	-- messages to be posted while summoning a pet demon

    Gherkin Dark, a sophisticated choice for a sophisticated Warlock.

    R.I.P. YARG

  7. #7

    Re: Necrosis LdC - 3.3 Version Released!

    ^lol

    I love Necrosis
    Quote Originally Posted by Zehlkatur
    I have died some times for just blinking away from balls and straight in to another pair of balls.
    Nerf teabagging!

  8. #8

    Re: Necrosis LdC - 3.3 Version Released!

    coffee making lol ^^ nice idea

    /bump

  9. #9

    Re: Necrosis LdC - 3.3 Version Released!

    Quote Originally Posted by gherkin
    @Thalia

    Open Message.lua

    Find the following

    Code:
    elseif Spell.Name == Necrosis.Spell[37].Name then
    		Speeches.SpellSucceed.TP = setmetatable({}, metatable)
    		if (NecrosisConfig.ChatMsg or NecrosisConfig.SM) and self.Speech.TP then
    			local tempnum = math.random(1, #self.Speech.TP)
    			while tempnum == Speeches.LastSpeech.TP and #self.Speech.TP >= 2 do
    				tempnum = math.random(1, #self.Speech.TP)
    			end
    			Speeches.LastSpeech.TP = tempnum
    			for i in ipairs(self.Speech.TP[tempnum]) do
    				if self.Speech.TP[tempnum][i]:find("<after>") then
    					Speeches.SpellSucceed.TP:insert(self.Speech.TP[tempnum][i])
    				elseif self.Speech.TP[tempnum][i]:find("<emote>") then
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "EMOTE")
    				elseif self.Speech.TP[tempnum][i]:find("<yell>") then
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "YELL")
    				else
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "WORLD")
    				end
    			end
    		end
    		AlphaBuffMenu = 1
    		AlphaBuffVar = GetTime() + 3
    	-- messages to be posted while summoning a pet demon

    Add a this new line
    Code:
    			self:Msg("summons a nice steaming cup of Gherkin Dark Blend.", "EMOTE")
    so that it looks like this

    Code:
    elseif Spell.Name == Necrosis.Spell[37].Name then
    		Speeches.SpellSucceed.TP = setmetatable({}, metatable)
    		if (NecrosisConfig.ChatMsg or NecrosisConfig.SM) and self.Speech.TP then
    			local tempnum = math.random(1, #self.Speech.TP)
    			while tempnum == Speeches.LastSpeech.TP and #self.Speech.TP >= 2 do
    				tempnum = math.random(1, #self.Speech.TP)
    			end
    			Speeches.LastSpeech.TP = tempnum
    			for i in ipairs(self.Speech.TP[tempnum]) do
    				if self.Speech.TP[tempnum][i]:find("<after>") then
    					Speeches.SpellSucceed.TP:insert(self.Speech.TP[tempnum][i])
    				elseif self.Speech.TP[tempnum][i]:find("<emote>") then
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "EMOTE")
    				elseif self.Speech.TP[tempnum][i]:find("<yell>") then
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "YELL")
    				else
    					self:Msg(self:MsgReplace(self.Speech.TP[tempnum][i], Spell.TargetName), "WORLD")
    				end
    			end
    			self:Msg("summons a nice steaming cup of Gherkin Dark Blend.", "EMOTE")
    		end
    		AlphaBuffMenu = 1
    		AlphaBuffVar = GetTime() + 3
    	-- messages to be posted while summoning a pet demon

    Gherkin Dark, a sophisticated choice for a sophisticated Warlock.
    I love it already !

  10. #10

    Re: Necrosis LdC - 3.3 Version Released!

    /bump to get more fellow Warlocks informed 'bout this great addon!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •