Download
(1Kb)
Download
Updated: 07-19-16 08:19 PM
Pictures
File Info
Compatibility:
Legion (7.0.3)
Minor patch (6.2.4)
Minor patch (6.2.3)
Fury of Hellfire (6.2)
The Adventure Continues (6.1)
Warlords of Draenor (6.0.3)
Warlords of Draenor Pre-Patch (6.0.2)
Updated:07-19-16 08:19 PM
Created:02-18-10 02:01 PM
Downloads:8,117
Favorites:21
MD5:
Categories:PvP, Arena, BattleGrounds, Combat Mods, Miscellaneous

ncKillingBlow  Popular! (More than 5000 hits)

Version: 1.5.3
by: nightcracker, Coote

Now maintained by TMcMahon51. See thread here.


ncKillingBlow is a simple addon that announces in the center of your screen when you get a killing blow. That's all, nothing more, nothing less.

Upcoming features:
- None
Suggest features!

Usage:
Install & go! No config.

1.5.3
TOC Bump for Legion

1.5.2
6.1 TOC Bump

1.5.1
5.4 .TOC bump

1.5
Changed message format. See updated screenshot for details.
bgKillingBlow patch should now pretty much be wrapped in.

1.4
TOC bump

1.4
Removed some unneeded code, and bumped the TOC.

1.3
Fixed for new arg added in 4.1

1.2
Fixed addon not displaying until after UI Reload. Thanks to Real for helping figure out the issue.

1.1
TOC update - was not broken with 4.0.1
Optional Files (1)
File Name
Version
Size
Author
Date
Type
1.0.5
823B
06-29-11 05:33 AM
Patch


Post A Reply Comment Options
Unread 11-22-10, 05:42 PM  
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view AddOns

Forum posts: 440
File comments: 69
Uploads: 7
Originally posted by eccentric10
I made some small changes in the lua code to my liking (I hope you don't mind). I wanted to see the name of the person I killed and I also wanted to see only pvp killing blows, not pve mobs. I thought I could write the changes made here in case someone else wants the same:

Replace the following code
Code:
("OnEvent", function(_, _, _, event, guid)
				if event == "PARTY_KILL" and guid==playerid then
						msg:AddMessage("KILLING BLOW!", 1, 1, 0)
with
Code:
("OnEvent", function(_, _, _, event, guid, _, _, _, destName, destFlags)
				if event == "PARTY_KILL" and guid==playerid and bit.band(destFlags, COMBATLOG_OBJECT_CONTROL_PLAYER) > 0 then
						msg:AddMessage("KB: "..destName, 1, 1, 0)
and if you wish to see pve mob killing blows also then just remove this part from the latter code
Code:
and bit.band(destFlags, COMBATLOG_OBJECT_CONTROL_PLAYER) > 0
edit: These changes were for version 1.2
If you wouldn't mind, would it be alright to upload that as an Optional File?
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
Report comment to moderator  
Reply With Quote
Unread 11-22-10, 04:00 AM  
eccentric10
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
I made some small changes in the lua code to my liking (I hope you don't mind). I wanted to see the name of the person I killed and I also wanted to see only pvp killing blows, not pve mobs. I thought I could write the changes made here in case someone else wants the same:

Replace the following code
Code:
("OnEvent", function(_, _, _, event, guid)
				if event == "PARTY_KILL" and guid==playerid then
						msg:AddMessage("KILLING BLOW!", 1, 1, 0)
with
Code:
("OnEvent", function(_, _, _, event, guid, _, _, _, destName, destFlags)
				if event == "PARTY_KILL" and guid==playerid and bit.band(destFlags, COMBATLOG_OBJECT_CONTROL_PLAYER) > 0 then
						msg:AddMessage("KB: "..destName, 1, 1, 0)
and if you wish to see pve mob killing blows also then just remove this part from the latter code
Code:
and bit.band(destFlags, COMBATLOG_OBJECT_CONTROL_PLAYER) > 0
edit: These changes were for version 1.2
Last edited by eccentric10 : 11-22-10 at 04:20 AM.
Report comment to moderator  
Reply With Quote
Unread 11-21-10, 09:22 PM  
Oakenwynd
A Kobold Labourer

Forum posts: 1
File comments: 39
Uploads: 0
do I have to know LUA to do custom font and color?

Thanks! ~Oakenwynd
Report comment to moderator  
Reply With Quote
Unread 11-21-10, 06:52 PM  
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view AddOns

Forum posts: 440
File comments: 69
Uploads: 7
Originally posted by eccentric10
I have the same problem, this only works after a ui reload.
It only just started that for me after 4.0.3 for some reason, so never noticed it before. It turns out the addon was just loading way too early.
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
Report comment to moderator  
Reply With Quote
Unread 11-21-10, 11:31 AM  
eccentric10
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
I have the same problem, this only works after a ui reload.
Report comment to moderator  
Reply With Quote
Unread 11-14-10, 12:43 PM  
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view AddOns

Forum posts: 440
File comments: 69
Uploads: 7
Originally posted by Slaxi81
Planned to add sounds?
Adding ingame sounds for example, doesn't eat much of your CPU : )
I'm not sure if he ever had thought of it or not, but it sounds like a good idea. It might require a slight rewrite, but it definitely sounds like something I should toss on the To Do list.
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
Report comment to moderator  
Reply With Quote
Unread 11-14-10, 10:49 AM  
Slaxi81
Guest

Join Date: Not Yet
Forum posts: 0
File comments: 0
Uploads: 0
Hey night,

thank you for this.

Planned to add sounds?
Adding ingame sounds for example, doesn't eat much of your CPU : )

have a nice day


Slaxi
Report comment to moderator  
Edit/Delete Message Reply With Quote
Unread 10-29-10, 04:17 PM  
ulrich
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
I'm just using TukUI.

I've tried running without addons and just using ncKillingBlow. Still doesn't show until I do a reload.

:/
Report comment to moderator  
Reply With Quote
Unread 10-26-10, 12:09 AM  
Coote
A Scalebane Royal Guard
 
Coote's Avatar
AddOn Author - Click to view AddOns

Forum posts: 440
File comments: 69
Uploads: 7
Originally posted by ulrich
Any idea why I have to reload UI to get this to work?
What other addons are you using? It's probably one of them blocking it at first. Works perfectly for me, as well as several others that I've asked.
__________________

"This is the fifteen-thousandth four hundredth and ninety-eighth occurence".
Report comment to moderator  
Reply With Quote
Unread 10-25-10, 03:47 AM  
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view AddOns

Forum posts: 716
File comments: 428
Uploads: 22
Originally posted by ulrich
Any idea why I have to reload UI to get this to work?
Nope.
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.
Report comment to moderator  
Reply With Quote
Unread 10-23-10, 06:29 PM  
ulrich
A Kobold Labourer

Forum posts: 0
File comments: 9
Uploads: 0
Any idea why I have to reload UI to get this to work?
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: