SpecialAttack.net
https://forum.specialattack.net/

Engy Update out or what?
https://forum.specialattack.net/viewtopic.php?t=4589
Page 1 of 1

Author:  [SpA]Relentless [ 05 Jan 2009, 12:04 ]
Post subject:  Engy Update out or what?

Gotta love those people....

Image

Enemy had 3 or 4 as well >.<

Author:  [SpA]SaintK [ 05 Jan 2009, 12:11 ]
Post subject:  Re: Engy Update out or what?

Wrong server i'd say! :mrgreen:

Author:  [SpA]Relentless [ 05 Jan 2009, 12:32 ]
Post subject:  Re: Engy Update out or what?

Beside the fact that it has TFTrue 2.1, I agree :mrgreen:

Author:  [SpA]futari [ 05 Jan 2009, 12:45 ]
Post subject:  Re: Engy Update out or what?

Yay for fixed random damage 0_0

Author:  dckjns [ 05 Jan 2009, 14:10 ]
Post subject:  Re: Engy Update out or what?

You don't normally play with that net graph there, do you?

Author:  [SpA]Relentless [ 05 Jan 2009, 14:22 ]
Post subject:  Re: Engy Update out or what?

I got a script that only displays net_graph 3 if I look at the scoreboard.

Author:  Lim-Dul [ 05 Jan 2009, 14:56 ]
Post subject:  Re: Engy Update out or what?

[SpA]Relentless wrote:
I got a script that only displays net_graph 3 if I look at the scoreboard.
Code:
bind "TAB" 	"+statusrpt"
alias +statusrpt "+showscores; net_graph 3; timeleft"
alias -statusrpt "-showscores; net_graph 0"
Taken from my old CS config - strange what passes for "scripts" nowadays. ;-)

Author:  [SpA]Relentless [ 05 Jan 2009, 22:20 ]
Post subject:  Re: Engy Update out or what?

[SpA]Lim-Dul wrote:
[SpA]Relentless wrote:
I got a script that only displays net_graph 3 if I look at the scoreboard.
Code:
bind "TAB" 	"+statusrpt"
alias +statusrpt "+showscores; net_graph 3; timeleft"
alias -statusrpt "-showscores; net_graph 0"
Taken from my old CS config - strange what passes for "scripts" nowadays. ;-)
Sure that works? Mine looks this way:
Code:
alias +pinger "+score; net_graph 3"
alias -pinger "-score; net_graph 0"
bind tab "+pinger"

Author:  Lim-Dul [ 05 Jan 2009, 23:14 ]
Post subject:  Re: Engy Update out or what?

Quote:
Sure that works? Mine looks this way:
Code:
alias +pinger "+score; net_graph 3"
alias -pinger "-score; net_graph 0"
bind tab "+pinger"
Of course it works - if you look at it it's exactly the same "script" only with a differently named alias (statusrpt instead of pinger) - ah, and I have the timeleft command in it just for good measure.

Author:  [SpA]Relentless [ 05 Jan 2009, 23:27 ]
Post subject:  Re: Engy Update out or what?

[SpA]Lim-Dul wrote:
Quote:
Sure that works? Mine looks this way:
Code:
alias +pinger "+score; net_graph 3"
alias -pinger "-score; net_graph 0"
bind tab "+pinger"
Of course it works - if you look at it it's exactly the same "script" only with a differently named alias (statusrpt instead of pinger) - ah, and I have the timeleft command in it just for good measure.
Ye but mine says +score, yours say +showscores. Its like having 2 different cvars for primary attack.

Author:  MikeDH [ 06 Jan 2009, 11:08 ]
Post subject:  Re: Engy Update out or what?

oooh.. i've gonna start using that script thanks!

Author:  Lim-Dul [ 06 Jan 2009, 15:41 ]
Post subject:  Re: Engy Update out or what?

Quote:
Ye but mine says +score, yours say +showscores. Its like having 2 different cvars for primary attack.
My config.cfg in TF2 also says +showscores (I'm not using this "script" in TF2) and I'm pretty sure that I was able to check the score table for the past year or so. :-D

According to the TF2 command reference +showscores is the right one - are you sure you don't have +score aliased somewhere?

Author:  [SpA]SaintK [ 06 Jan 2009, 15:47 ]
Post subject:  Re: Engy Update out or what?

The definition of a script;
Quote:
A scripting language, script language or extension language, is a programming language that controls a software application.
In this case you give a serie of commands to controle the software application. The configuration files are actually scripts to controle the software. So the people here are correct when naming this a script ;).

Author:  [SpA]Relentless [ 06 Jan 2009, 15:57 ]
Post subject:  Re: Engy Update out or what?

[SpA]Lim-Dul wrote:
Quote:
Ye but mine says +score, yours say +showscores. Its like having 2 different cvars for primary attack.
My config.cfg in TF2 also says +showscores (I'm not using this "script" in TF2) and I'm pretty sure that I was able to check the score table for the past year or so. :-D

According to the TF2 command reference +showscores is the right one - are you sure you don't have +score aliased somewhere?
Yes I am. Try it :)

Author:  Lim-Dul [ 06 Jan 2009, 18:02 ]
Post subject:  Re: Engy Update out or what?

Saint - I realize that Source Engine command scripts technically speaking ARE scripts - I'm just saying that stuff like the crouch-jump or the net_graph toggle is so simple (basically two commands executed instead of one) that back in the day people e.g. in the CS community were calling this a bind at most. =)
The scripts that were posted earlier with the whole reload stuff - now these were proper scripts in gaming, not IT terms. ^^

Author:  [SpA]SaintK [ 06 Jan 2009, 18:06 ]
Post subject:  Re: Engy Update out or what?

[SpA]Lim-Dul wrote:
Saint - I realize that Source Engine command scripts technically speaking ARE scripts - I'm just saying that stuff like the crouch-jump or the net_graph toggle is so simple (basically two commands executed instead of one) that back in the day people e.g. in the CS community were calling this a bind at most. =)
The scripts that were posted earlier with the whole reload stuff - now these were proper scripts in gaming, not IT terms. ^^

It might be a tiny little piece of code, but its still srcipts.
Code:
main() {
       printf("hello, world");
}

Its a WHOLE program. Doesn't do much, but still classifies as a program :mrgreen:

Author:  Lim-Dul [ 06 Jan 2009, 18:43 ]
Post subject:  Re: Engy Update out or what?

Touché - I rest my case. ^^

Author:  [SpA]YellowGoudvis [ 06 Jan 2009, 22:26 ]
Post subject:  Re: Engy Update out or what?

funny how 1 post can make the orignal subject go to the complete opiside of it XD

Author:  Bartg [ 07 Jan 2009, 00:04 ]
Post subject:  Re: Engy Update out or what?

That Limdul script would cause me to check timeleft 5 times a minute, cause i'm always checking scoreboard, not mainly for scores, but more for classes on my team, so its easier to recognize a spy ;]

Page 1 of 1 All times are UTC+02:00

Powered by phpBB® Forum Software © phpBB Limited