Raised This Month: $ Target: $400
 0% 

Customize status kill announce


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
suchorski
New Member
Join Date: Aug 2022
Old 08-29-2022 , 15:55   Customize status kill announce
Reply With Quote #1

Hi.

There is a way to customize the kill status announce on top right screen? See attachment

I want to do something like
Instead of “Attacker [m4] Victim” show “ [AA] Attacker [m4] [BB] Victim”

Is that possible?

Thanks
Attached Thumbnails
Click image for larger version

Name:	40CBFC7A-3616-4A45-9B74-72C91C9FE820.jpeg
Views:	54
Size:	8.5 KB
ID:	196551  
suchorski is offline
kww
Senior Member
Join Date: Feb 2021
Location: Russia
Old 08-29-2022 , 18:20   Re: Customize status kill announce
Reply With Quote #2

Quote:
Originally Posted by suchorski View Post
Hi.

There is a way to customize the kill status announce on top right screen? See attachment

I want to do something like
Instead of “Attacker [m4] Victim” show “ [AA] Attacker [m4] [BB] Victim”

Is that possible?

Thanks
No, you can only specify: killer, weapon, is headshot and victim
__________________
Now working on: Side Weapons (Very lazy, tbh)
Avatar source: https://bit.ly/3BAk19g
Discord: kww#9951
kww is offline
bibu
Veteran Member
Join Date: Sep 2010
Old 08-30-2022 , 02:46   Re: Customize status kill announce
Reply With Quote #3

It would be possible, by caching the players name and blocking all default death messages. Edit the players name for a split second, create new death message and reset the players name.
__________________
Selling tons of my own private works.
Accepting paid work for clans and communities.
Don't hesitate to contact me.
bibu is offline
731
Member
Join Date: Aug 2006
Old 08-30-2022 , 04:17   Re: Customize status kill announce
Reply With Quote #4

example:
Knife kill information changed to skull display

Code:
#include <amxmodx>
#define PLUGIN "Test"
#define AUTHOR "731"
#define VERSION "1.0"
public plugin_init()
{
	register_plugin(PLUGIN, VERSION, AUTHOR)
	register_message(get_user_msgid("DeathMsg"), "msg_death")
}
public msg_death(msg_id, msg_dest, msg_entity)
{
	static weapon[20]
	get_msg_arg_string(4, weapon, 19)
	if(weapon[0] == 'k')
	{
		//set_msg_arg_int(3, ARG_BYTE, 0) //Do not show headshot
		set_msg_arg_string(4, "world")
	}
	return PLUGIN_CONTINUE
}
731 is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 15:41.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode