Upvote Upvoted 2 Downvote Downvoted
net_graph help
posted in Q/A Help
1
#1
1 Frags +

I like to use net graph to watch my ping and fps and all that, but not on my screen while playing because it annoys me... i see people when play and want to watch their scoreboard the net graph also pops up and when he lets go of the tab key he continues playing with the net graph off....

HELP!!HELP!!HELP!!

I like to use net graph to watch my ping and fps and all that, but not on my screen while playing because it annoys me... i see people when play and want to watch their scoreboard the net graph also pops up and when he lets go of the tab key he continues playing with the net graph off....


HELP!!HELP!!HELP!!
2
#2
1 Frags +

alias graph "graphon"
alias graphon "net_graph 3; alias graph graphoff"
alias graphoff "net_graph 0; alias graph graphon"

bind "tab" "graph"

alias graph "graphon"
alias graphon "net_graph 3; alias graph graphoff"
alias graphoff "net_graph 0; alias graph graphon"

bind "tab" "graph"
3
#3
4 Frags +

You can create an alias:

bind tab togglescore
alias togglescore togglescoreon
alias "togglescoreon" "+showscores; net_graph 4; alias togglescore togglescoreoff"
alias "togglescoreoff" "-showscores; net_graph 0; alias togglescore togglescoreon"

Think this should work

You can create an alias:

[code]bind tab togglescore
alias togglescore togglescoreon
alias "togglescoreon" "+showscores; net_graph 4; alias togglescore togglescoreoff"
alias "togglescoreoff" "-showscores; net_graph 0; alias togglescore togglescoreon"[/code]

Think this should work
4
#4
4 Frags +

this is what you want

bind "TAB" "+BOARD";
alias "+BOARD" "+showscores; net_graph 1";
alias "-BOARD" "-showscores; net_graph 0";

or panzer's

this is what you want
[code]bind "TAB" "+BOARD";
alias "+BOARD" "+showscores; net_graph 1";
alias "-BOARD" "-showscores; net_graph 0";[/code]
or panzer's
5
#5
10 Frags +

CHOOSE WISELY PINK.

CHOOSE WISELY PINK.
6
#6
0 Frags +

Thanks guys:D

Thanks guys:D
7
#7
0 Frags +
panzerxiiiYou can create an alias:
bind tab togglescore
alias togglescore togglescoreon
alias "togglescoreon" "+showscores; net_graph 4; alias togglescore togglescoreoff"
alias "togglescoreoff" "-showscores; net_graph 0; alias togglescore togglescoreon"

Think this should work

This requires me to press tab again to close the scoreboard. Is there a way for this to make it close when I let got of tab?

[quote=panzerxiii]You can create an alias:

[code]bind tab togglescore
alias togglescore togglescoreon
alias "togglescoreon" "+showscores; net_graph 4; alias togglescore togglescoreoff"
alias "togglescoreoff" "-showscores; net_graph 0; alias togglescore togglescoreon"[/code]

Think this should work[/quote]

This requires me to press tab again to close the scoreboard. Is there a way for this to make it close when I let got of tab?
8
#8
0 Frags +
NeonThis requires me to press tab again to close the scoreboard. Is there a way for this to make it close when I let got of tab?

alias +scoreboard "+showscores;net_graph X"
alias -scoreboard "-showscores;net_graph 0"
bind Y "+scoreboard"

Replace X with the value of the net_graph you want and Y with your scoreboard key (probably TAB). I'm seeeing now this was mentioned in #4 already.

[quote=Neon]This requires me to press tab again to close the scoreboard. Is there a way for this to make it close when I let got of tab?[/quote]
alias +scoreboard "+showscores;net_graph X"
alias -scoreboard "-showscores;net_graph 0"
bind Y "+scoreboard"

Replace X with the value of the net_graph you want and Y with your scoreboard key (probably TAB). I'm seeeing now this was mentioned in #4 already.
9
#9
1 Frags +
// Vertical resolution minus 31. So mine is 1080 pixels minus 31 pixels equals 1049. 
// With page up and page down you can toggle the net_graph. 

net_graphheight 869
net_graphpos 3
net_graphproportionalfont 0

alias ng0 "net_graph 0; alias nup ng1; alias ndo ng0"
alias ng1 "net_graph 1; alias nup ng4; alias ndo ng0"
alias ng4 "net_graph 4; alias nup ng4; alias ndo ng1"
alias nup "ng1"
alias ndo "ng0"

bind PGUP nup
bind PGDN ndo

Is better, personally.

preview

http://i.imgur.com/fvplhqD.jpg

[code]// Vertical resolution minus 31. So mine is 1080 pixels minus 31 pixels equals 1049.
// With page up and page down you can toggle the net_graph.

net_graphheight 869
net_graphpos 3
net_graphproportionalfont 0


alias ng0 "net_graph 0; alias nup ng1; alias ndo ng0"
alias ng1 "net_graph 1; alias nup ng4; alias ndo ng0"
alias ng4 "net_graph 4; alias nup ng4; alias ndo ng1"
alias nup "ng1"
alias ndo "ng0"


bind PGUP nup
bind PGDN ndo[/code]


Is better, personally.


preview

[img]http://i.imgur.com/fvplhqD.jpg[/img]
Please sign in through STEAM to post a comment.