Arma 3
Kill Confirmed
317 Comments
Arkblade 4 Oct @ 11:31am 
Thank you very much! I am waiting for new variations.
Tokyo Cowboy  [author] 30 Sep @ 12:59am 
@Ratchet the Wusky | Lost
Yeah, not sure how that happened but the files were missing from the PBO after building it. The files are in the project folder I built from, so no idea how it happened. I have re-uploaded & now they are there so hopefully will work now.
Ratchet the Wusky | Lost 29 Sep @ 5:57pm 
I am also getting the table not found error. I have not changed any settings, it just stopped working suddenly. SQF file not found, both SP and MP, when loading in and when exiting. Attempting to change to a known good font, just in case, still results in the issue.
Tokyo Cowboy  [author] 26 Sep @ 1:27am 
@waystin2
Thank you! That's awesome.
waystin2 25 Sep @ 2:17pm 
Love this mod! Makes the guys super happy to see their name in lights. Unless they got shot lol
Tokyo Cowboy  [author] 25 Sep @ 1:54pm 
@yara
I have used a font from the Vietnam DLC in the custom font setting & it works. See example below. I have tried others that aren't in my list of fonts & they work too.
CBA Settings [imgur.com]
Notification with custom font [imgur.com]
Tokyo Cowboy  [author] 25 Sep @ 9:18am 
@yara
I will look into this as soon as I can. I think I know what has caused it.

I have tested with multiple fonts & custom fonts do work. Have you tested to see if your font class actually works?
yara 25 Sep @ 7:22am 
Hey,

I tested the mod again, but the custom font still won’t show up, and now the scoreboard isn’t appearing either. Additionally, every time I exit a mission, I get the following error:

"Script \Kill_Confirmed\Score_Table\Score_Table_SP_NA.sqf not found."

I’ve tried repairing and reinstalling the mod, but the scoreboard still doesn’t appear.
Tokyo Cowboy  [author] 25 Sep @ 4:34am 
@Arkblade
I am working on a standalone HUD mod with (hopefully) some improvements. I have implemented some of the changes to the non-ACE HUD in this mod. There are some issues currently as the HUD flickers the first time the different assets are loaded. I need to find a way of pre-loading them.
Tokyo Cowboy  [author] 25 Sep @ 4:29am 
@yara
Just updated to fix custom fonts not working.
yara 24 Sep @ 7:59am 
Hey I did what you said but nothing is showing up but when I go into my FontFamilies I can see my custom font in there but when I try to use with or without the quotation marks its still not working.
Tokyo Cowboy  [author] 23 Sep @ 2:26pm 
@yara
Did you select 'Custom' for the Notification Style and/or Score Style in Addon options? I forgot to mention that in my previous comment. Also not sure if it makes a difference whether you put the classname in quotation marks or not but worth a try. Hope this helps.
yara 23 Sep @ 10:52am 
Hey I added my custom font to Arma and I can see it in the CfgFontFamilies but when I add it to the "Custom Class" Nothing will show up
Arkblade 22 Sep @ 8:30am 
Of course, lack of time is a factor in the fact that I would have to learn a great deal about scripting if I were to do it.
Arkblade 22 Sep @ 8:28am 
Thank you very much, I am going to wait for your production as RL is busy and I don't have time to make a standalone version for me.
Tokyo Cowboy  [author] 22 Sep @ 5:18am 
@Arkblade
It is possible. Feel free to make a stand alone mod out of it if you have any scripting knowledge. Otherwise I can if I can get some time at my pc. Maybe I will also look at optimisation of this mod when I get some time. I knew the unit icons had problems.
Arkblade 22 Sep @ 3:10am 
By the way, is it possible to cut out the health display part from this mod and make it into a mod?

I recently found an optimized version of your mod, but it does not support health display, and I am looking for a mod that can be attached separately to just that.
https://steamproxy.net/sharedfiles/filedetails/?id=2975328230
Tokyo Cowboy  [author] 21 Sep @ 1:36pm 
@yara
In the Editor under tools click on Config Viewer or press Alt+C. Expand CfgFontFamilies, any class names here will be compatible. Copy the class name into the Custom Notification/Score Style boxes in Addon options. Alternatively you can access the config viewer by clicking CONFIG in the extended debug window when paused in the Virtual Arsenal.

As for adding your own fonts here is a link to a community wiki page.
Adding Custom Fonts [community.bistudio.com]
Adding Custom Fonts (Dark Mode) [community.bistudio.com]

Feel free to start a discussion if you want to make a guide for others.
yara 21 Sep @ 12:41pm 
Hey, I had a question is it possible that you could make a "Discussion" on how to add custom fonts or anything else that could explain where to look or add stuff? I am pretty new to this sort of thing.
Tokyo Cowboy  [author] 20 Sep @ 1:36pm 
@xdaniflex
That is strange. Do you have CBA_A3 mod & have you definitely enabled the icons in the addon options? The framework & sides are disabled by default. Think you will also need to restart the mission for changes to take effect.
Daniel36 20 Sep @ 9:27am 
@Tokyo Cowboy even without sector control doesn't work in SP, but it does in MP. Also, the fact that I don't see other squad members is maybe because I have other similar mods?
Tokyo Cowboy  [author] 20 Sep @ 8:12am 
@xdaniflex
Have you enabled the Unit Icons Framework in the Addon options?
As for why the game is ending on first kill with sector control mission, that's possibly down to parameters set in the sector control module. Have you played the sector control mission without the mod?
Daniel36 20 Sep @ 12:25am 
Hi, I'm using this mod on a sector control mission and I don't know why group, friendly and enemies icons don't appear. Also, when I kill the first enemy the game ends saying "Mission completed"
Tokyo Cowboy  [author] 11 Apr @ 4:08pm 
So for example:

if (isNull _instigator)
then
{
_instigator = _killer
};
if (KC_isFriendly)
then
{
if (_killed isNotEqualTo _killer)
then
{
KC_killType = "FRIENDLY KILL";
KC_ratingScore = -1000;
KC_scoreXP = KC_scoreXP - 1000;
player addRating -1000;
player spawn KC_kill;
};
if (_killed isEqualTo _killer)
then
{
KC_killType = "SUICIDE";
KC_ratingScore = -500;
KC_scoreXP = KC_scoreXP - 500;
player addRating -500;
player spawn KC_kill;
};
};
if !(KC_isFriendly)
then
{
...use all the rest of the code but remove all the "!(KC_isFriendly)" checks.
Tokyo Cowboy  [author] 11 Apr @ 4:07pm 
@DonniePCgames
I did have this originally but I removed it when I made the points that show on screen stack if you got another kill within a few seconds. Think I also originally had the points have a + or - and show in red when negative and yellow when positive. It ended up not looking so good when the points were being added up.

If you wanted to add something like that then you would have to add a condition every time the script checks for when the unit killed is not friendly and also check that the unit killed is also not the killer in case of suicide, which you could also add a penalty for. Ideally though the whole script could do with simplifying, making the first check to see if unit killed is an enemy or not. Should improve performance also.
Zed 11 Apr @ 2:43pm 
Thank you Tokyo. I tried what you offered but it did not work, but I did find a solution by digging further. My next task is trying to figure out how to remove points when killing friendly units without effecting the rest of the score tables.
Tokyo Cowboy  [author] 9 Apr @ 2:27pm 
@DonniePCgames
In the script I only differentiate sides by friendly or not using a function. The function checks the side of who is the killer & who is killed, then if it return friendly the code is not executed.

It is certainly possible to alter the score awarded but the script would need to be altered to check for faction. If you have any scripting knowledge & you host your own scenarios you could download the mission files linked in the description & make changes to it to suit your needs. You would probably need to add a new condition each time there is a friendly check
if !(KC_isFriendly)
to check the faction of who was killed was not civilian
if ((side group _killed) isNotEqualTo civilian)
then duplicate the statement after it using an 'else' control structure & change the XP values.
Tokyo Cowboy  [author] 9 Apr @ 1:49pm 
@Boopwuffliesnoot
The script checks to see if what was killed is inherited from CAManBase class which is the base class for I believe all humans. I did this to differentiate between infantry & vehicles etc. I believe these mods use a different base class so when the script checks & finds the class of what is being killed is not inherited from CAManBase, the code will not execute. I know Zombies & Demons uses different base classes also, so it doesn't work for that either.

It's possible to make it work for these mods. If you have any scripting knowledge & host your own scenarios there is a link to the mission files & you could add your own check in for the class name of what is not working.
In the EntityKilled script, wherever it has : && (_killed isKindOf "CAManBase"))
add the check for the class name after it within a new set of brackets & with || in between.
For example :
&& ((_killed isKindOf "CAManBase") || (_killed isKindOf "ClassNameHere")))
Zed 8 Apr @ 2:01pm 
Hello Tokyo. Is there a way to keep the scoring from calling when killing civilians, or a way to adjust the score so that civilian kills offer a lower value? I'm testing this with Ravage and getting the same score for killing zombies and AI soliders, but one is much easier to kill than the other.
Rumbero ☸ 7 Mar @ 8:07am 
Thank you for your work!
Boopwuffliesnoot 16 Sep, 2023 @ 6:52am 
just a heads up certain types of enemies that utalize melee in the newer mods like webknights melee series dinnae register certain enemies when you kill em
Reticuli 31 Aug, 2023 @ 2:55pm 
When changing to another unit, the text on the health HUD is moved around on top of each other.

BPM would be useful and easy to get from ACE.

Might be useful to have adjustable time the kill markers and kill comment stay. Personally I'd like the marker to stay longer and the comment to stay shorter lengths of time.
Uldorn 30 Jul, 2023 @ 9:40am 
Just wanted to add my appreciation for this mod.

There are a handful of game-changing must have mods on our server, and this is definitely one of them.
Bendy 24 Jul, 2023 @ 10:07pm 
great mod!!! could you add an adjusted score according to kill / death ratio? so when playing with freinds, whoever spawns too many times gets their score adjusted.....

also another question - is there a way to see all players scores in multiplayer?

cheers
waystin2 2 Jul, 2023 @ 6:17pm 
The squad loves this mod!
Tokyo Cowboy  [author] 2 Jul, 2023 @ 9:26am 
@nayD
Sorry, I somehow deleted your comment deleting my own comment cos I'd made a mistake.
Tokyo Cowboy  [author] 2 Jul, 2023 @ 9:25am 
@nayD
They only count if the side is enemy. You might have to set the side relation in the mission init using independent setFriend [civilian, 0]; or civilian setFriend [independent, 0];
Tokyo Cowboy  [author] 21 May, 2023 @ 12:59pm 
@waystin2
Both for the workshop version but I do have a Mission script version linked in the description if you wanted to run it on the server. It doesn't come with all the features though.
waystin2 21 May, 2023 @ 7:22am 
Can this be run server side only? Or does client & server need to subscribe to mod?
Rex Seattle 7 Jan, 2023 @ 7:34pm 
This mod made Arma so much more enjoyable for me, and is one of the most valuable, IMHO. I would consider it indispensable. I had trouble telling when I hit somebody. Especially long-distance / artillery hits. Thank you very much for making it.
PROJ_DRK 28 Oct, 2022 @ 1:02pm 
Fair enough, well when I load back into a save in a single player scenario with the Show Score widget active, the UI element of it flickers rapidly. Works perfect at the start but flickers if I save and load back.
Tokyo Cowboy  [author] 28 Oct, 2022 @ 10:30am 
It's ok, just put it on here. If I can fix it I will.
PROJ_DRK 28 Oct, 2022 @ 7:29am 
Huge thanks for that, will test that tonight! Also, Have you got a way I can contact you privately please to ask about one more minor issue I have encountered? Huge amount of respect for you for pulling this mod off so Im not looking fill your comments with negative nonsense
Tokyo Cowboy  [author] 27 Oct, 2022 @ 9:11pm 
Unit Icons uses side relations function to determine enemies. Civilian I think is always friendly. Might work if you use:

west setFriend [civilian, 0];

Put in your mission init.
PROJ_DRK 27 Oct, 2022 @ 5:11pm 
Hi mate, i'm trying to run the Enemy Icons on units spawned from the Ambient Zombies + Horde Placement Modules from Ravage, specifically the Health Only option. I think they won't display because the Zeds are classed as Civ's / Agents by the engine. Is there a way to either apply Hostile Icons to these units via a script or is there a way to force Health Only icons on for ALL units that are alive on the map please?
Tokyo Cowboy  [author] 2 Oct, 2022 @ 11:42pm 
Disable enemy icons & make friendly icons always visible. It's the visibility check that uses the most resources.
games4zak 2 Oct, 2022 @ 5:44pm 
Any idea how to make the unit icons less cpu intensive?
RESQUART 18 Aug, 2022 @ 12:24pm 
Arma is a good game but i don't like its game engine... But i don't have any other choice because Arma community is vast and other games like Arma don't have thousand of mods.
RESQUART 18 Aug, 2022 @ 12:22pm 
I tried this mod on its own but with (RIS) Random Infantry Skirmish mission. (I like random skirmish/randomly generated missions) When i created team-deathmatch mission on RIS, the kill tickets hud not showing with this mod.

IDK why but Arma 3 really suffering from HUD mods. I hope ARMA 4 or ARMA: REFORGED don't have problems like this because this kind of mods must have for me. These mods like "Quality of life mods" and i can't enjoy Arma without these.

For final words, RIS is not exactly a hud mod. Its only a mission which you can create team vs team battles. But of course, it uses a hud for showing team scores.
Tokyo Cowboy  [author] 18 Aug, 2022 @ 11:28am 
I have non of these issues. Can you try this mod on it's own? Also try disabling each aspect of the mod to see which part is causing you problems, then maybe I can fix it if there is a problem.