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

CS:GO Hide HUD


Post New Thread Reply   
 
Thread Tools Display Modes
pride95
Senior Member
Join Date: Aug 2015
Old 10-18-2017 , 07:21   Re: CS:GO Hide HUD
Reply With Quote #11

Quote:
Originally Posted by hoppbro View Post
so, does anyone know how to disable hud on the top of the screen (timer,score)?
for timer, score ... 1 << 13
pride95 is offline
Nickelony
Junior Member
Join Date: Aug 2017
Location: Poland
Old 11-16-2017 , 14:48   Re: CS:GO Hide HUD
Reply With Quote #12

Any idea how to hide the weapon slot and the ammo amount in the bottom right corner?
Nickelony is offline
headline
SourceMod Moderator
Join Date: Mar 2015
Old 11-16-2017 , 19:42   Re: CS:GO Hide HUD
Reply With Quote #13

Quote:
Originally Posted by Nickelony View Post
Any idea how to hide the weapon slot and the ammo amount in the bottom right corner?
You can try (1<<0), but I'm not sure if it still works
headline is offline
Nickelony
Junior Member
Join Date: Aug 2017
Location: Poland
Old 11-17-2017 , 03:02   Re: CS:GO Hide HUD
Reply With Quote #14

Quote:
Originally Posted by Headline View Post
You can try (1<<0), but I'm not sure if it still works
Doesn't work. Any other ideas?
Nickelony is offline
Mitchell
~lick~
Join Date: Mar 2010
Old 11-17-2017 , 11:57   Re: CS:GO Hide HUD
Reply With Quote #15

Hiding the weapon selection will prevent players from actually being able to switch weapons (from last time I checked)
Mitchell is offline
petre
Junior Member
Join Date: Sep 2017
Old 12-01-2017 , 12:37   Re: CS:GO Hide HUD
Reply With Quote #16

Quote:
Originally Posted by Nickelony View Post
Doesn't work. Any other ideas?
( 1<<6 )

Last edited by petre; 12-01-2017 at 12:38.
petre is offline
alerad
Junior Member
Join Date: Mar 2016
Old 10-27-2018 , 12:04   Re: CS:GO Hide HUD
Reply With Quote #17

Anyone having problems hiding the round timer on panorama? I'm doing it with 1<<12 and not working.
alerad is offline
Proz
AlliedModders Donor
Join Date: Apr 2005
Old 10-28-2018 , 07:48   Re: CS:GO Hide HUD
Reply With Quote #18

Quote:
Originally Posted by alerad View Post
Anyone having problems hiding the round timer on panorama? I'm doing it with 1<<12 and not working.
Did you try any other combinations? Might have changed since panorama
Proz is offline
PastyBully
Junior Member
Join Date: Dec 2016
Old 11-09-2018 , 12:09   Re: CS:GO Hide HUD
Reply With Quote #19

Quote:
Originally Posted by alerad View Post
Anyone having problems hiding the round timer on panorama? I'm doing it with 1<<12 and not working.
Anyone finds a solution of this problem since the HUD update ?
PastyBully is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 11-09-2018 , 15:51   Re: CS:GO Hide HUD
Reply With Quote #20

Well, player HUD will behavior on game events, like bomb_planted, round_end and so on.
And when game_type is changed, but then player need reconnect to server.

These are more client side effect.

Here one example. For classic game play (game_type 0)
This hide clock digits, like for example when round_end. But bad side is, you also here "Round Draw"
And this event is send to players, and will not disturp other SM plugins by fake events.
PHP Code:
public void OnPluginStart()
{
    
HookEvent("round_freeze_end"round_freeze_endEventHookMode_PostNoCopy);
}

public 
void round_freeze_end(Event event, const char[] namebool dontBroadcast)
{

    
Event event CreateEvent("round_end");
    
event.SetInt("winner"1);

    for(
int i 1<= MaxClientsi++)
    {
        if(
IsClientInGame(i) && !IsFakeClient(i)) event.FireToClient(i);
    }

    
delete event;

__________________
Do not Private Message @me
Bacardi 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 04:20.


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