Upvote Upvoted 3 Downvote Downvoted
How to Practice Demoman Rollouts
1
#1
0 Frags +

Does anyone know of any servers of some sort where you can practice rollouts? Or are there any scripts?

Does anyone know of any servers of some sort where you can practice rollouts? Or are there any scripts?
2
#2
9 Frags +

1. Create a server
2. Open console
3. sv_cheats 1
4. bind "mouse4" "hurtme -120"
5. bind "mouse5" "mp_restartgame 1"

Then you restart the game using your newly created bind. and then get a buff using mouse4/whatever button you choose to bind it to. Proceed to rollout as normal, then restart game when you want to go back to spawn.

1. Create a server
2. Open console
3. sv_cheats 1
4. bind "mouse4" "hurtme -120"
5. bind "mouse5" "mp_restartgame 1"

Then you restart the game using your newly created bind. and then get a buff using mouse4/whatever button you choose to bind it to. Proceed to rollout as normal, then restart game when you want to go back to spawn.
3
#3
1 Frags +

start a local server ingame, turn sv_cheats on, bind a key to do the hurtme -3957625 command(any number really) and then type or bind a key to restart the round with mp_restartgame.

start a local server ingame, turn sv_cheats on, bind a key to do the hurtme -3957625 command(any number really) and then type or bind a key to restart the round with mp_restartgame.
4
#4
2 Frags +

also use net_fakelag x, where x is the number of ping you will get divided by 2 (net_fakelag 25 - 50 ping)

also use net_fakelag x, where x is the number of ping you will get divided by 2 (net_fakelag 25 - 50 ping)
5
#5
1 Frags +

my old teammate laz made a rollout script which i found pretty helpful
rollout.cfg
// Rollout scripts
// ???Laz

// Usage: 'exec rollout'

// Set up the server (These are for use in offline practice mode).
// Change 'net_fakelag' to whatever your ping normally is.
alias setupserver "mp_tournament 1; sv_allow_wait_command 1; sv_cheats 1; net_fakelag 40"

// All the stuff for rolling out.
// Change hurt me to whatever buff you want
// this will vary for pocket (-200 is probably a good bet), -180ish for demo
// Use more if you want to jump in setup
alias reroll "mp_restartgame 1; wait 1000; hurtme -180"

// Change the bind here
bind g reroll

// Exec the setup commands
setupserver

my old teammate laz made a rollout script which i found pretty helpful
rollout.cfg
// Rollout scripts
// ???Laz

// Usage: 'exec rollout'

// Set up the server (These are for use in offline practice mode).
// Change 'net_fakelag' to whatever your ping normally is.
alias setupserver "mp_tournament 1; sv_allow_wait_command 1; sv_cheats 1; net_fakelag 40"

// All the stuff for rolling out.
// Change hurt me to whatever buff you want
// this will vary for pocket (-200 is probably a good bet), -180ish for demo
// Use more if you want to jump in setup
alias reroll "mp_restartgame 1; wait 1000; hurtme -180"

// Change the bind here
bind g reroll

// Exec the setup commands
setupserver
6
#6
-10 Frags +

https://www.youtube.com/watch?v=vQbj1AswwiY
using all of the server commands, you may also want to consider the variations of rollouts.
*not all jumps in my video are optimal to mid*

https://www.youtube.com/watch?v=vQbj1AswwiY
using all of the server commands, you may also want to consider the variations of rollouts.
*not all jumps in my video are optimal to mid*
7
#7
14 Frags +

i'm sure mr relyt will be very grateful for the advice you gave him almost two years after he asked

i'm sure mr relyt will be very grateful for the advice you gave him almost two years after he asked
8
#8
8 Frags +
blu3z_https://www.youtube.com/watch?v=vQbj1AswwiY
using all of the server commands, you may also want to consider the variations of rollouts.
*not all jumps in my video are optimal to mid*

i just watched the granary rollouts you demonstrated, and i have to say, for one, they're very sloppy, slow, and you hit like every corner, and the left rollout was wrong to begin with.

making helpful videos is great but please know the rollouts before you make one

[quote=blu3z_]https://www.youtube.com/watch?v=vQbj1AswwiY
using all of the server commands, you may also want to consider the variations of rollouts.
*not all jumps in my video are optimal to mid*[/quote]


i just watched the granary rollouts you demonstrated, and i have to say, for one, they're very sloppy, slow, and you hit like every corner, and the left rollout was wrong to begin with.

making helpful videos is great but please know the rollouts before you make one
9
#9
0 Frags +

Something I use that I found incredibly useful for practicing rollouts/jumps in general is a offline teleport script. This is one I found off the jump forums, lots of other helpful stuff on there if you're looking to improve your jumps.

//Settings
sv_cheats 1
con_timestamp 0
con_logfile console.log

//Binds
bind F1 gotoPosition1
bind F2 gotoPosition2
bind F3 gotoPosition3
bind F4 gotoPosition4
bind F5 gotoPosition5
bind ALT +savePosition

//Code
alias +savePosition "bind F1 savePosition1; bind F2 savePosition2; bind F3 savePosition3; bind F4 savePosition4; bind F5 savePosition5"
alias -savePosition "bind F1 gotoPosition1; bind F2 gotoPosition2; bind F3 gotoPosition3; bind F4 gotoPosition4; bind F5 gotoPosition5"
alias resetLogfile "con_logfile console.log"
alias savePosition1 "con_logfile cfg/position1; getpos; resetLogfile;"
alias savePosition2 "con_logfile cfg/position2; getpos; resetLogfile;"
alias savePosition3 "con_logfile cfg/position3; getpos; resetLogfile;"
alias savePosition4 "con_logfile cfg/position4; getpos; resetLogfile;"
alias savePosition5 "con_logfile cfg/position5; getpos; resetLogfile;"
alias gotoPosition1 "exec position1.log"
alias gotoPosition2 "exec position2.log"
alias gotoPosition3 "exec position3.log"
alias gotoPosition4 "exec position4.log"
alias gotoPosition5 "exec position5.log"

from: http://tf2rj.com/forum/index.php?topic=422.0

The one I use is slightly different and less polished, though I have not tried this one myself it should work fine. I liked having a script like this because overall I find it easier to grind certain jumps versus doing the whole thing over and over. This one seems pretty cool because you could probably just set up practice areas and just go to them as you please. For example have one right next to spawn door on blands, one at the bottom of the stairs heading to dropdown and one at dropdown itself.

Something I use that I found incredibly useful for practicing rollouts/jumps in general is a offline teleport script. This is one I found off the jump forums, lots of other helpful stuff on there if you're looking to improve your jumps.
[code]//Settings
sv_cheats 1
con_timestamp 0
con_logfile console.log

//Binds
bind F1 gotoPosition1
bind F2 gotoPosition2
bind F3 gotoPosition3
bind F4 gotoPosition4
bind F5 gotoPosition5
bind ALT +savePosition

//Code
alias +savePosition "bind F1 savePosition1; bind F2 savePosition2; bind F3 savePosition3; bind F4 savePosition4; bind F5 savePosition5"
alias -savePosition "bind F1 gotoPosition1; bind F2 gotoPosition2; bind F3 gotoPosition3; bind F4 gotoPosition4; bind F5 gotoPosition5"
alias resetLogfile "con_logfile console.log"
alias savePosition1 "con_logfile cfg/position1; getpos; resetLogfile;"
alias savePosition2 "con_logfile cfg/position2; getpos; resetLogfile;"
alias savePosition3 "con_logfile cfg/position3; getpos; resetLogfile;"
alias savePosition4 "con_logfile cfg/position4; getpos; resetLogfile;"
alias savePosition5 "con_logfile cfg/position5; getpos; resetLogfile;"
alias gotoPosition1 "exec position1.log"
alias gotoPosition2 "exec position2.log"
alias gotoPosition3 "exec position3.log"
alias gotoPosition4 "exec position4.log"
alias gotoPosition5 "exec position5.log"[/code]

from: http://tf2rj.com/forum/index.php?topic=422.0

The one I use is slightly different and less polished, though I have not tried this one myself it should work fine. I liked having a script like this because overall I find it easier to grind certain jumps versus doing the whole thing over and over. This one seems pretty cool because you could probably just set up practice areas and just go to them as you please. For example have one right next to spawn door on blands, one at the bottom of the stairs heading to dropdown and one at dropdown itself.
10
#10
1 Frags +

map cp_badlands
sv_cheats 1
net_fakelag to emulate online ping
bind x "mp_restartgame 1"
bind c "hurtme -185"

x to reset, c to buff, go nuts

map cp_badlands
sv_cheats 1
net_fakelag to emulate online ping
bind x "mp_restartgame 1"
bind c "hurtme -185"

x to reset, c to buff, go nuts
11
#11
6 Frags +

mp_restartgame_immediate 1 for hardcore mode

mp_restartgame_immediate 1 for hardcore mode
12
#12
0 Frags +
kaidusmp_restartgame_immediate 1 for hardcore mode

Yep you actually need to add this to spaceman's script (#5) or else sometimes the buff gets given to you before you restart which fucks it all up
In case anyone wants to use that old script
Yeah

[quote=kaidus]mp_restartgame_immediate 1 for hardcore mode[/quote]
Yep you actually need to add this to spaceman's script (#5) or else sometimes the buff gets given to you before you restart which fucks it all up
In case anyone wants to use that old script
Yeah
13
#13
1 Frags +

this and this map is very good and easy to practise your rollouts (and other jumps)
You don't need any binds for that, just download the map :]

[url=http://tf2.gamebanana.com/maps/170038]this[/url] and [url=http://teamfortress.tv/thread/13667/?page=1]this[/url] map is very good and easy to practise your rollouts (and other jumps)
You don't need any binds for that, just download the map :]
14
#14
-1 Frags +
unfblu3z_https://www.youtube.com/watch?v=vQbj1AswwiY
using all of the server commands, you may also want to consider the variations of rollouts.
*not all jumps in my video are optimal to mid*

i just watched the granary rollouts you demonstrated, and i have to say, for one, they're very sloppy, slow, and you hit like every corner, and the left rollout was wrong to begin with.

making helpful videos is great but please know the rollouts before you make one

I remade this granary rollout video differently. hopefully this is optimal enough.
https://www.youtube.com/watch?v=Fd5wAcD-BaU

[quote=unf][quote=blu3z_]https://www.youtube.com/watch?v=vQbj1AswwiY
using all of the server commands, you may also want to consider the variations of rollouts.
*not all jumps in my video are optimal to mid*[/quote]


i just watched the granary rollouts you demonstrated, and i have to say, for one, they're very sloppy, slow, and you hit like every corner, and the left rollout was wrong to begin with.

making helpful videos is great but please know the rollouts before you make one[/quote]

I remade this granary rollout video differently. hopefully this is optimal enough.
https://www.youtube.com/watch?v=Fd5wAcD-BaU
15
#15
2 Frags +
blu3z_unfblu3z_https://www.youtube.com/watch?v=vQbj1AswwiY
using all of the server commands, you may also want to consider the variations of rollouts.
*not all jumps in my video are optimal to mid*

i just watched the granary rollouts you demonstrated, and i have to say, for one, they're very sloppy, slow, and you hit like every corner, and the left rollout was wrong to begin with.

making helpful videos is great but please know the rollouts before you make one

I remade this granary rollout video differently. hopefully this is optimal enough.
https://www.youtube.com/watch?v=Fd5wAcD-BaU

no offense but i dont think some of those jumps are optimal, have a look a kaidus' rollout tutorials if you want to see how its done

[quote=blu3z_][quote=unf][quote=blu3z_]https://www.youtube.com/watch?v=vQbj1AswwiY
using all of the server commands, you may also want to consider the variations of rollouts.
*not all jumps in my video are optimal to mid*[/quote]


i just watched the granary rollouts you demonstrated, and i have to say, for one, they're very sloppy, slow, and you hit like every corner, and the left rollout was wrong to begin with.

making helpful videos is great but please know the rollouts before you make one[/quote]

I remade this granary rollout video differently. hopefully this is optimal enough.
https://www.youtube.com/watch?v=Fd5wAcD-BaU[/quote]

no offense but i dont think some of those jumps are optimal, have a look a kaidus' rollout tutorials if you want to see how its done
16
#16
0 Frags +
blu3z_unfblu3z_https://www.youtube.com/watch?v=vQbj1AswwiY
using all of the server commands, you may also want to consider the variations of rollouts.
*not all jumps in my video are optimal to mid*

i just watched the granary rollouts you demonstrated, and i have to say, for one, they're very sloppy, slow, and you hit like every corner, and the left rollout was wrong to begin with.

making helpful videos is great but please know the rollouts before you make one

I remade this granary rollout video differently. hopefully this is optimal enough.
https://www.youtube.com/watch?v=Fd5wAcD-BaU

ok so, they're better, but at second you cant do a crouch jump to shutter door and still jump, your hp will be way too low, might even die from fall damage

so left rollout is a regular sticky jump to shutter door, if you're going catwalk, it's a crouch jump to healthpack, then out to shutter door, and jump, you can't skip the healthpack

your "right rollout" is basically irrelevant and outdated, garage rollout is better from the left as well

also you have left and catwalk rollout labels mixed up in the video

[quote=blu3z_][quote=unf][quote=blu3z_]https://www.youtube.com/watch?v=vQbj1AswwiY
using all of the server commands, you may also want to consider the variations of rollouts.
*not all jumps in my video are optimal to mid*[/quote]


i just watched the granary rollouts you demonstrated, and i have to say, for one, they're very sloppy, slow, and you hit like every corner, and the left rollout was wrong to begin with.

making helpful videos is great but please know the rollouts before you make one[/quote]

I remade this granary rollout video differently. hopefully this is optimal enough.
https://www.youtube.com/watch?v=Fd5wAcD-BaU[/quote]

ok so, they're better, but at second you cant do a crouch jump to shutter door and still jump, your hp will be way too low, might even die from fall damage

so left rollout is a regular sticky jump to shutter door, if you're going catwalk, it's a crouch jump to healthpack, then out to shutter door, and jump, you can't skip the healthpack

your "right rollout" is basically irrelevant and outdated, garage rollout is better from the left as well

also you have left and catwalk rollout labels mixed up in the video
Please sign in through STEAM to post a comment.