Raised This Month: $32 Target: $400
 8% 

csgo killfeed


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
pride95
Senior Member
Join Date: Aug 2015
Old 08-29-2015 , 08:57   csgo killfeed
Reply With Quote #1

Hello, is there a way to make the killfeed in csgo to show only kills with red border and red background, namely my kills and my deaths

sorry for my english.
pride95 is offline
pride95
Senior Member
Join Date: Aug 2015
Old 09-01-2015 , 08:55   Re: csgo killfeed
Reply With Quote #2

no one?
pride95 is offline
Znfantry
New Member
Join Date: Sep 2015
Old 09-01-2015 , 20:36   Re: csgo killfeed
Reply With Quote #3

This one confuses me.

If you are involved (kill,assist, or death) it will outline it unless you suicide .
Znfantry is offline
h3bus
AlliedModders Donor
Join Date: Nov 2013
Old 09-02-2015 , 03:59   Re: csgo killfeed
Reply With Quote #4

Unfortunately kill log is created client-side from player_death event.
Events being either broacasted to all clients or not sent to anyone, you can't filter event per client (maybe an extension coul do this that I'm unaware of).

That's why it's not possible.
h3bus is offline
pride95
Senior Member
Join Date: Aug 2015
Old 09-03-2015 , 12:17   Re: csgo killfeed
Reply With Quote #5

Quote:
Originally Posted by h3bus View Post
Unfortunately kill log is created client-side from player_death event.
Events being either broacasted to all clients or not sent to anyone, you can't filter event per client (maybe an extension coul do this that I'm unaware of).

That's why it's not possible.
in ffa dm servers with instant respawn the killfeed appear in full screen. I placed a plugin with 10 max crimes on screen but it not works. sometimes exceeds the limit, sometimes few crimes not appear. and disabling the killfeed is not a solution, few players complain of it

Last edited by pride95; 09-03-2015 at 13:56.
pride95 is offline
pride95
Senior Member
Join Date: Aug 2015
Old 10-10-2015 , 05:20   Re: csgo killfeed
Reply With Quote #6

PHP Code:
#include <sourcemod>

#define SHOW_OWN_KILLS 1

public OnPluginStart()
{
    
HookEvent("player_death"Event_PlayerDeathEventHookMode_Pre);
}
public 
Action:Event_PlayerDeath(Handle:event, const String:name[], bool:dontBroadcast)
{
    new 
victim GetClientOfUserId(GetEventInt(event"userid"));
    new 
attacker GetClientOfUserId(GetEventInt(event"attacker"));
    new 
assister GetClientOfUserId(GetEventInt(event"assister"));

    
#if SHOW_OWN_KILLS == 1
        
for (new 1<= MaxClientsi++)
        {
            if(
IsClientInGame(i))
            {
                if(
victim == || attacker == || assister == i)
                {
                    return 
Plugin_Continue;
                }
                else
                {
                    return (
Plugin_Handled);
                }
            }
        }
    
#endif
    
return (Plugin_Handled);

i found this but it shows only kills made by first connected player
pride95 is offline
pride95
Senior Member
Join Date: Aug 2015
Old 11-06-2015 , 12:50   Re: csgo killfeed
Reply With Quote #7

someone else with a solution?
pride95 is offline
Reply


Thread Tools
Display Modes

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 00:15.


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