Raised This Month: $51 Target: $400
 12% 

[CS:GO] Show enemy names in centre of screen when using knives


Post New Thread Reply   
 
Thread Tools Display Modes
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 09-20-2012 , 15:03   Re: [CS:GO] Show enemy names in centre of screen when using knives
Reply With Quote #11

then we better hope to God that valve gets there heads out of their asses and fix basic stuff like this
__________________
PresidentEvil is offline
bl4nk
SourceMod Developer
Join Date: Jul 2007
Old 09-20-2012 , 17:40   Re: [CS:GO] Show enemy names in centre of screen when using knives
Reply With Quote #12

Vote up this bug report to get it fixed faster.
bl4nk is offline
peewee41
Member
Join Date: Jul 2009
Old 10-24-2012 , 19:16   Re: [CS:GO] Show enemy names in centre of screen when using knives
Reply With Quote #13

Anyone thought of a way to get around this? CS:GO, like CS:S, doesn't have the 'ShowHudText' function, so can't do it that way. Perhaps via KeyHintText?
peewee41 is offline
databomb
Veteran Member
Join Date: Jun 2009
Location: california
Old 10-26-2012 , 07:28   Re: [CS:GO] Show enemy names in centre of screen when using knives
Reply With Quote #14

KeyHintText isn't valid in CS:GO either. Names do show up when you point at a player but not for the opposite team. There doesn't seem to be any cvar to control this on the server; however, it's possible to emulate this behavior with a server plugin using trace rays and timers.
__________________
databomb is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 10-26-2012 , 18:14   Re: [CS:GO] Show enemy names in centre of screen when using knives
Reply With Quote #15

please do it, i'd be willing to throw in a few bucks
__________________
PresidentEvil is offline
SEGnosis
Senior Member
Join Date: Oct 2012
Old 10-26-2012 , 19:41   Re: [CS:GO] Show enemy names in centre of screen when using knives
Reply With Quote #16

So, are you asking for a loop like

PHP Code:
new g_maxClients GetMaxClients() + 1;
new 
g_lastClientSeen[g_maxClients];


for(new 
1g_maxClientsi++)
{
    if(
IsClientConnected(i) == true  && IsClientInGame(i) == true && IsPlayerAlive(i) == true)
    {
        new 
target GetClientAimTarget(itrue);
        
        if(
g_lastClientSeen[i] != target)
        {
            new 
String:clientName[32];
            
GetClientName(iclientNamesizeof(clientName));
            
PrinToChat(i"You are looking at %s"clientName);
            
            
g_lastClientSeen[i] = target;
        }
    }

SEGnosis is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 06-29-2014 , 11:03   Re: [CS:GO] Show enemy names in centre of screen when using knives
Reply With Quote #17

Did people already found solution to this ? I didn't find topic about it.
So here (maybe again) answer
Code:
"weapon_reticle_knife_show" = "0" client replicated                              - When enabled will show knife reticle on clients. Used for game modes requiring t
in server console
weapon_reticle_knife_show 1
Bacardi is offline
PresidentEvil
AlliedModders Donor
Join Date: Jun 2012
Old 06-29-2014 , 14:34   Re: [CS:GO] Show enemy names in centre of screen when using knives
Reply With Quote #18

Quote:
Originally Posted by Bacardi View Post
Did people already found solution to this ? I didn't find topic about it.
So here (maybe again) answer
Code:
"weapon_reticle_knife_show" = "0" client replicated                              - When enabled will show knife reticle on clients. Used for game modes requiring t
in server console
weapon_reticle_knife_show 1
yea we saw that a few updates ago, its still an issue though it works for knifes but when hold nades, unscoped awp/scout or when unarmed names dont show up

they also dont show up when you're in spec, you cant see the opposite teams names


these people who made this game are clearly idiots, these things were never an issue in CSS
__________________
PresidentEvil is offline
wired9119
Junior Member
Join Date: Aug 2017
Old 08-19-2017 , 01:21   Re: [CS:GO] Show enemy names in centre of screen when using knives
Reply With Quote #19

I believe it is hud_showtargetid "1".
it didnt work for me at first but then i realized that i put taget instead of target.
wired9119 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 21:03.


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