Speed in Quake, Simplified

  Рет қаралды 4,478

Sleepy Adam

Sleepy Adam

Күн бұрын

Buy Quake : www.gog.com/game/quake_the_of...
or play it in your browser : www.netquake.io
My new map - Save the World : www.slipseer.com/index.php?re...
Chapters :
0:00 Opening
0:09 Acceleration (How Speed Works in Quake)
1:48 Circle Jumping
3:00 Bunnyhopping
5:55 Power Bunnyhopping
6:52 Quakeworld and Deathmatch Tips
7:30 Wallrunning
8:15 Conclusion
Music Used :
Azazel - Can't Stop Coming
@ orioel on Twitter (18+) - 0000
@ orioel - j2b
@ orioel - trip
Support Me : / sleepyadam
Mastodon : mas.to/@SleepyAdam

Пікірлер: 18
@TarenGarond
@TarenGarond 9 ай бұрын
In Quake 1, on ground movement keys can accelerate you up to 320 in the direction the keys points. What is happening in the code is that firstly the speed(called "currentspeed") in the direction the movement keys are pointing(this direction(as a 1 unit long vector) is called "wishdir") is calculated. Code : currentspeed = DotProduct (velocity, wishdir); // "velocity" is simply a vector of the player velocity If you don't know what a "dot product" is, basically what is happening is : currentspeed = (velocity.x*wishdir.x)+(velocity.y*wishdir.y)+(velocity.z*wishdir.z) Doing a simple example : if velocity.x=300 and wishdir.x=1(wishdir vector pointing entirely into the games x direction) currentspeed is simply 300(Velocity.y is simply ignored in this scenario (and also z(up down direction) as wishdir.z is always 0 when on ground or in air)). So yeah the code have the "currentspeed" now... Next the code calculates "addspeed"(the maximum speed(In wishdir direction) the player movement can add this frame). Code : addspeed = wishspeed - currentspeed; // wishspeed is 320(when on ground) So to continue the previous example if currentspeed=300 you get 320-300 which is 20, so the player movement can add 20 speed in the wishdir direction. If the "accelspeed"(the actual amount of speed(In wishdir direction) to add to the player this frame) that is calculated in the following(Not going to show this code) "per frame acceleration code" is more than addspeed it is clipped to addspeed(which is 20 in this instance). After that the "accelspeed" is simply added to the velocity vector in the direction of wishdir. Code : velocity.x += accelspeed*wishdir.x velocity.y += accelspeed*wishdir.y So yeah, by turning your wishdir you can add speed in directions were your currentspeed is less than your wishspeed that is simply how the player acceleration works in Quake... "But why the heck is the air movement different brah?!" In air the wishpeed is 30 not 320 as on the ground (The amount of possible acceleration per frame is the same though), meaning you need to point your wishdir way more degrees from where your velocity vector is pointing than on ground to accelerate. In Q2 and 3 wishspeed is the same in air as on ground but the acceleration amount is a tenth of the on the ground one leading to that more acceleration forwards is possible but with way less snappy in air turns possible. Man my brain is toast after typing this... XD (I can explain how wallstrafing and power bunnyhopping works in the future though... maybe... XD)
@dp055
@dp055 5 ай бұрын
That intro is fire 🔥
@Dondlo46
@Dondlo46 11 ай бұрын
Why doesn't this work in real life? Developers should fix that bug
@VALIS538
@VALIS538 6 ай бұрын
“Its not a bug it’s a feature”
@MrDavidRosca
@MrDavidRosca 9 ай бұрын
Cut my teeth with Quake mp back in the day. It's the game that forced to me learn WASD + Mouse. And by golly was it a steep learning curve. Great video mate!
@mopeybloke
@mopeybloke 9 ай бұрын
I don't know whether it was a big or not that air control only truly works if you strafe, but it's good that you have the power to look at different directions while you jump without changing the trajectory of the jump.
@ibtarnine
@ibtarnine 7 ай бұрын
something you missed around the 1 minute mark is how you can take advantage of the brief speed boost from turning while still flat on the ground and not wall hugging. in your cfg you can make a simple macro that allows strafe left to activate while still holding strafe right. what this allows you to do is hold forward, left or right strafe, and tap the opposite strafe key that you're holding, pushing your constant straight line speed to around 400 ups. it's not a major difference, but it can help in a duel where you need to move straight quietly and aren't in an area you can wall hug. autorun doesn't have to be off for that initial 500 ups jump btw, and i hit about 520 on my first jump in my old zjumps video. qw also has autohop which is pretty convenient.
@sharx2002
@sharx2002 18 күн бұрын
what's bonkers to me is i feel like i discovered circlejumping almost independently when i first played through quake. lacking a sprint button to just go fast on command, your brain can clock that tiny boost in speed from turning and the lack of friction in the air and start doing it all the time to go faster. of course i had heard about bunnyhopping and stuff, but i never looked up how to do it in quake or anything
@stuntzpt
@stuntzpt 6 ай бұрын
1k!
@haikidsboy3102
@haikidsboy3102 6 ай бұрын
Very cool video :). Btw witch engine do u use ?
@hotmultimedia
@hotmultimedia 8 ай бұрын
I can gain speed with bunnyjumping easily in ezquake by moving mouse to the strafe direction. I then tried it on WinQuake and it was obviously impossible. But after that I got the original qwcl and server, and was surprised that I couldn't do it in there either.
@Aleteos
@Aleteos 4 ай бұрын
Is there a mod that shows speed in ui, like in the video, or shows if I've succesfully bunny hopped? Also, can this be done at all in Ironwail?
@SleepyAdam
@SleepyAdam 2 ай бұрын
Sorry for the late response. It really depends on the source port you're using. Both JoeQuake and FTE have speedometers like the ones seen in the video as far as I know. Not sure about Ironwail.
@cutchyuz630
@cutchyuz630 Жыл бұрын
I like bunnies
@liamblack3001
@liamblack3001 Жыл бұрын
so this is why I'm loosing Death Match
@liamblack3001
@liamblack3001 Жыл бұрын
loosing
@SleepyAdam
@SleepyAdam Жыл бұрын
Strategy is more important than movement, but damn if it doesn't help.
@kered13
@kered13 9 ай бұрын
7:55 This explanation is essentially correct. You gain speed for the same reason that turning on the ground gains speed, which is caused by the difference between your desired movement direction and your current movement direction. You stop gaining speed whenever your desired movement direction is the same as your current movement direction. Constantly turning prevents this from happening. Having a wall in your way also prevents this.
Is This the Hardest Trick in Quake?
14:35
Quake Speedruns Explained
Рет қаралды 25 М.
Strafe-jumping physics explained
4:21
Matt's Ramblings
Рет қаралды 188 М.
НРАВИТСЯ ЭТОТ ФОРМАТ??
00:37
МЯТНАЯ ФАНТА
Рет қаралды 3,9 МЛН
One moment can change your life ✨🔄
00:32
A4
Рет қаралды 34 МЛН
Cat Corn?! 🙀 #cat #cute #catlover
00:54
Stocat
Рет қаралды 16 МЛН
Why I Love Quake
17:56
Sleepy Adam
Рет қаралды 34 М.
How Speedrunners Uncovered Quake's Strangest Bug
15:51
Quake Speedruns Explained
Рет қаралды 121 М.
gm_waterflow update
4:24
func_kenobi
Рет қаралды 20 М.
Gibins' Quake3 Tutorials: Strafe Jumping
4:11
Fred Gibins
Рет қаралды 8 М.
Ironwail is amazing!
12:05
dumptruck_ds
Рет қаралды 35 М.
I added portals into software Quake
6:31
Matt's Ramblings
Рет қаралды 20 М.
Why did Quake (and arena shooters) die?
26:23
Skeleblood
Рет қаралды 362 М.
I Beat My Own Quake Record After 19 Years
18:08
Quake Speedruns Explained
Рет қаралды 19 М.
Intro to basic dodging in Quake Live
6:07
grrrmbleQL
Рет қаралды 31 М.
ОкКорз ЭП 1 - 14 | Анимация Minecraft
8:58
OK Корз
Рет қаралды 1,8 МЛН
skibidi toilet multiverse 039 (part 4)
6:06
DOM Studio
Рет қаралды 4,1 МЛН