Back in 2018 I was playing a lot of Quake Champions and other Arena FPS games. Sadly, since my time of playing the arena shooter genre has dwindled pretty significantly. Looking at Steam Charts is pretty revealing to the whole genre, Quake Live and Quake Champions are the two most played games in the genre and each only get 30 day averages of 250+ players. No other games comes close either. However even though I am not playing games much these days, I still do enjoy this genre a lot. So much so that back in 2018 I actually created a blog and was thinking about streaming the game: https://teaskittle.blogspot.com/.
I wanted to archive a few of the posts from that blog her on my website, so that is what blog entry will be about. Mainly all I discussed in the few blog posts on this old quake site was talking about aim/sensitivity stuff related to the game. Without further ado, let’s get into those old posts!
Hi everyone! So one of the first things that I really wanted to get down in Quake Champions, or any FPS for that matter, is my aim. But this is way harder than it sounds, as getting your settings just right can be complicated and take some time. So like many newcomers, I decided to look at the settings and configurations of the pros. I ended up finding this spreadsheet via Reddit: Spreadsheet.
One thing I concluded after looking at this was that there is not one shoes that fits all. Everyone is different. But a few things did peak my curiosity. Firstly only three of them use a fov higher than 120, and only two of them have one lower than 110. Interesting, so a good sweet spot is somewhere between 110 and 120. I assume that is where a good balance of aim and awareness meet. The second thing I noticed is only 6 of them have a dpi higher than 1000. This inst too surprising as higher dpi tends to be a marketing ploy more than something that has major impact of your performance. Anything higher than 1600 is rather ridiculous. And lastly 6 of them use mouse acceleration. Wait what?
Ya, if you do some research into the older quake games it was very common for high level players to use mouse acceleration. I did a simple search on Reddit and found some good opinions of mouse acceleration.
https://www.reddit.com/r/QuakeLive/comments/5xhgev/why_mouse_accel/I think these are all things worth considering if you are debating on trying mouse acceleration, and if you do decide to try it I highly recommend using the software and driver created by both Povohat and Kovaak. Here is a video showing the software:
I highly recommenced at least giving it a try for a few hours or a few days, I did and honestly it ended up being tremendously helpful to my game. Last night I played a TDM where I got 11 impressive medals, my rail was terrible before I got these settings down. That completely changed my previous notions of mouse acceleration.
So after a few weeks of playing with mouse acceleration(see my previous post about this), I decided to go back to using no mouse acceleration in Quake. I decided to try this because my aim was, well inconsistent with acceleration. I liked the logical ideals behind acceleration(i.e. being able to track well, and also being able to flick on command), but it really threw off my muscle memory at times. I started to find it is really quite difficult to calculate on the fly both the distance your mouse needs to move to land a precise shot, and also factor in the speed at which you do this. One thing to note here is that I was using a low sensitivity at 41.5cm/360 with a lower acceleration rate, so the acceleration wasn't even that much and it was enough to throw off my muscle memory. These are the setting I was using:
dpi = 800Compared to a lot of players I have seen who use acceleration, this is quite low. So I began experimenting and started out at 1.25 sensitivity and raised it over time. As of writing this post I am using:
dpi = 800After using these settings for a while I found it to be more consistent than using acceleration. But this is just for me, I think acceleration is great for certain players, but we all have different preferences, hands, grip styles, and play styles. For some acceleration is wonderful, for others it may just not be the shoe that fits. With doing a lot of this testing I played many games of instagib, here is a clip of me playing with these current settings that I am quite happy with.
Hope my experimenting helps you in your Quake journey, cheers
The old post I made for this subject, which you can find here, used an old python script that I had lost. I went ahead and recreated it in Perl as I have been experimenting with Perl lately. This was also a short blog entry so I have fully recreated it for this new site.
There are several sites out there that you can use to calculate your cm/360 for your mouse sensitivity, this was just a fun exercise to do. When I was learning to program in Python I figured this would be a good challenge, and it is! Like stated above that old Python script has been lost and I went ahead and re-wrote it in Perl. What I really needed was the basic formula for calculating it, which I was able to find: here.
The formula is:Here is the Perl script I created:
#!/usr/bin/perl
use strict;
use warnings;
my $yaw = 0.022;
print "Enter your DPI: ";
my $dpi = <STDIN>;
chomp $dpi;
print "Enter your in-game sensitivity: ";
my $sens = <STDIN>;
chomp $sens;
sub alg {
return (360 / ($yaw * $dpi * $sens)) * 2.54;
}
print "Your cm/360: ", alg(), "\n";
And that is it for those olg blog posts! Was a fun trip down memory lane.