HL2 Bullet-Time script

After some experimentation i've found this script kicks total ass!
 
http://www.halflife2.net/forums/showthread.php?t=56420

Its not really a mod.. just some "cheat" key bindings.
sv_cheats 1
bind b "+BT"
alias "+bt" "host_timescale 0.3;phys_pushscale 20;cl_phys_timescale 0.1;Physcannon_maxforce 10000;physcannon_minforce 3000;physcannon_tracelength 1000;physcannon_maxmass 8000;physcannon_pullforce 8000"
alias "-bt" "host_timescale 1;phys_pushscale 1;cl_phys_timescale 1;Physcannon_maxforce 1500;physcannon_minforce 700;physcannon_tracelength 250;physcannon_maxmass 250;physcannon_pullforce 4000;"
Still, could be fun. :)
 
This is quite similar to HL2.nets http://www.halflife2.net/forums/showthread.php?t=55911&page=1

Here is a script that will only slowdown time, but will do it gradually, so it isn't such a sudden change:

Code:
sv_cheats 1
bind ALT "slowdown"
alias "wait15" "wait; wait; wait; wait; wait; wait; wait; wait; wait; wait"
alias "slowdown" "host_timescale .7; wait15; host_timescale .5; wait15; host_timescale .4; wait15; host_timescale .35; wait15; host_timescale .3; wait15; host_timescale .25; wait15; bind ALT "speedup
alias "speedup" "host_timescale .3; wait15; host_timescale .5; wait15; host_timescale .8; wait15; host_timescale 1; bind ALT "slowdown

Put that code into your autoexec.cfg file, and it will be activated by the ALT button.

If you don't know what the autoexec.cfg file is, go to the thread I posted above and read it.
 
Back
Top