mastercoms
Account Details
SteamID64 76561198046110893
SteamID3 [U:1:85845165]
SteamID32 STEAM_0:1:42922582
Country United States
Signed Up August 8, 2017
Last Posted May 7, 2024 at 8:36 PM
Posts 1534 (0.6 per day)
Game Settings
In-game Sensitivity
Windows Sensitivity
Raw Input 1
DPI
 
Resolution
 
Refresh Rate
 
Hardware Peripherals
Mouse  
Keyboard  
Mousepad  
Headphones  
Monitor  
1 ⋅⋅ 36 37 38 39 40 41 42 ⋅⋅ 103
#1709 mastercomfig - fps/customization config in Customization
SeppSmurfits nice to see this isn't dead
I have got a question wether tf2s "rate" setting limits client-server download or upload bandwidth. In mastercomfig-cfg file it says its upload speed but on csgo the same cvar is for download because when i change the "new" setting in csgo menu options called "max acceptable game traffic bandwidth" which has a description clearly saying it controls download bandwidth, it changes the "rate" cvar alongside. Help plz

It's upload and download. This is also why it says game traffic (two ways). Download is much more important than upload because it's not used as much in tbe engine for upload purposes.

posted about 5 years ago
#1707 mastercomfig - fps/customization config in Customization

Here's a very experimental config with some settings/values I want to test out. No presets, just experimenting with optimizations. It'll probably work best on modern PCs with GPUs though. Not sure.

Note that custom.cfg is now user/autoexec.cfg. Also rename your class configs back to not use _c.

https://cdn.discordapp.com/attachments/389091069091905546/560300691369754635/autoexec.cfg

posted about 5 years ago
#5 about tf2 rate settings and how much tf2 eats data in Q/A Help

Rate is what entirely dictates how much you receive/send per second to the server. However, having a bigger update rate or cmd rate than what it can reliably transfer will cause bad networking effects. So, reduce your cl_cmdrate and cl_updaterate (update packets are larger btw, around 600 to 3000 bytes, while client packets are around 90 to 200 bytes).

I would also set cl_smooth 1 and cl_smoothtime 0.1 as there's no reason to have it off.

posted about 5 years ago
#4 Some Textures Actually Blinding Me in TF2 General Discussion

Launch options, remove -nosrgb

posted about 5 years ago
#1701 mastercomfig - fps/customization config in Customization

r_worldlightmin 0.0002

posted about 5 years ago
#7 Current year net settings in Customization
SylentHonestly, you and people like you are the reason this game has survived for so long. Putting in so much effort in passion projects with no financial gain and typing up essays just because some dude asked a question on a forum. I greatly appreciate the lengthy and in-depth reply and I'll try out your values tomorrow <3
Show Content
P.S. my slightly customized mastercomfig 4.2.7 gets me about 12% more fps than the current very low config that you have up on your site (version 6 I believe), if you want to see it tell me

EDIT: nvm, just saw that you're no longer working on it

thankss <3. i honestly could have gone more in depth on the other stuff but I'm glad you liked it!!

and I would be glad to hear about it. I'm no longer working on mastercomfig, but that doesn't mean I'm stopping work on TF2 configs.

posted about 5 years ago
#5 Current year net settings in Customization

I also recommend cl_smooth 1 and cl_smoothtime 0.06 to reduce client view position jitter when you get juggled or pushed by being in front the payload cart. The 0.06 comes from scientifically measured human tolerances for jitter.

Finally, probably the most important of the bunch is your rate settings. These were set in 2007 to 80,000 bytes per second, which was a reasonable value back then. However, since then, Internet speeds have gotten better and although CS:GO has updated its default rate to 196608, TF2 has stuck with that same old default rate. Also, TF2 usually delays packets sent to the server based on your rate, but you can resolve this by using net_maxcleartime 0.015, which means packets will never be delayed.

So, I recommend rate 196608; net_splitpacket_maxrate 196608;net_maxcleartime 0.015, or if you want something closer to the TF2 default, rate 100000; net_splitpacket_maxrate 100000;net_maxcleartime 0.015.

posted about 5 years ago
#4 Current year net settings in Customization

Well, first off, you have conflicting values of cl_interp and cl_interp_ratio. cl_interp and cl_interp_ratio are used to determine the client interp value, which is a single decimal value measured in seconds.

cl_interp_ratio sets the client interp value to be cl_interp_ratio divided by cl_updaterate, while cl_interp is a direct value for the client interp value. The client chooses the highest value among these two for the final client interp value.

You've seemed to flip the cl_interp_ratio value that is used conventionally for projectile and hitscan classes.

Now, let's talk about what interp actually is. Interpolation is an actual word, not just a Source Engine term. You may have also seen lerp in the net graph. This simply is short for linear interpolation, which is something you probably did in school when you calculated a line equation from the rise over run of two points. This is a way of determining a linear, continuous path from one discrete point to the next.

Now, in the real data that you recorded those points from, the actual continuous path might have been a zig zag, might have curved down, anything really. There's a large amount of realistic possibilities, but how large that amount is depends on the distance between the two points on some difference on an axis, let's call this delta x. For smaller and smaller delta x's, you can imagine approaching the point where the distance between the two points along that path is so small, where the delta x between the two points is practically zero and so the path could only really be a straight line (what we call dx).

For any delta x larger than that, there is a possible path error that could occur, and that possible error gets larger and larger as the delta x increases. So, when we do linear interpolation, we don't want to do it at a large delta x that would result in this kind of error. That will get us the best result.

Now, how does this stupid math stuff relate to Team Fortress 2? Well, the server runs its game logic every 0.015 seconds, and the results of the game running logic at those discrete steps get sent to your PC through the Internet at an interval of cl_updaterate times a second. So you're (theoretically) getting discrete points of data at a delta x of 0.0151515151 seconds if you have cl_updaterate set to 66.

The result would be players teleporting around from point to point at a refresh rate above 66Hz. So, interpolation needs to be done by the game so that these players smoothly travel along a linear path from point to point. But, people with even 60Hz monitors need interpolation at this amount, because the Internet isn't perfect. Sometimes packets are sent out of order, delayed, or dropped completely and the server can even slow down its own tick interval from 0.015 seconds to something higher that results in maybe even 40 packets a second instead of the commonly requested 66 due to high CPU load. In addition to interpolation being needed for rendering updates, interpolation also smooths out these irregularities in update intervals.

Let's expand on this imperfection in the Internet further. Interpolation requires two points to estimate the linear equation between two points, obviously. So, these delays where the effective update rate drops below 66 will change when you'll get these two points of data to do your interpolation. If you have your client interp set to 0.0151515151, and the next packet doesn't arrive in that time, then your game has no second data point to interpolate between the last one and this one. So instead, it has to entirely guess the second data point through a process known as extrapolation. Source uses linear extrapolation, where it takes the current velocity of the player and just assumes that the player continues with that velocity for the next required seconds. Since this can have a huge error, it's limited to 0.25 seconds of extrapolation, after which it just freezes movement.

Interpolation is obviously better than extrapolation, because of what we discussed previously about delta x's. These update intervals within TF2 are small enough, with velocities slow enough, for the linear approximation between two real data points to not have a large error. However, extrapolation is not going off of any real data of where the player is in the future for its prediction, so it will have a much larger error.

In order to avoid this issue, you need enough packets in your buffer queued up for interpolation so that the game can use a spare packet instead of guessing very inaccurately. This is why it's generally recommended nowadays to have your interp above 0.01515151, so that there is that extra packet if you need it at least some of the time. To guarantee a spare packet in the interpolation buffer all the time, you'll need your interpolation at 0.0303030303.

Now, a lot of people argue that interpolation adds a visual delay on where players are and that you need the lowest delay possible, ignoring any extrapolation risks. This is true for projectiles, but the visual delay is fully lag compensated for hitscan. This is why they recommend 0.01515151 interp for projectiles and the far safer 0.03030303 interp value for bullets.

However, I'd argue that the accuracy in current position that you get from a lower interp is far less valuable for projections than accuracy in trajectory, because predicting where people are GOING is going to be much more important than seeing a time accurate representation of where they exactly are right now. In addition to this, interpolation will always result in an accurate position history because its following what's happening on the server, albeit delayed, whereas extrapolation will be wrong in both trajectory and position.

So, I recommend a cl_interp of 0.030303 and a cl_interp_ratio of 2, if possible. However, I've also tuned a value based on what I've measured on normal packet jitter + drops on servers + human jitter tolerances. This is cl_interp 0.021 and cl_interp_ratio 1. Use whatever works for you. I would recommend the former for bullets only/when precision is needed for hitscan (sniper).

Now there are other network settings as well. I recommend cl_updaterate 66 and cl_cmdrate 65. Why? This is because of client prediction. For your own player, the client will just simulate your actions locally using its own server code because that's probably what the result is going to be from the server anyway. However, there is a bug in this where if the two value are equal, client data is preferred over server data. So, I set the server update rate to the highest, and the client update rate to one lower to avoid this issue. Use cl_pred_optimize 1 to prevent this issue instead, keeping both at 66.

I also recommend different packet size/compression settings.

net_compresspackets 1;net_compresspackets_minsize 128;net_maxroutable 1200;net_maxfragments 1200

The net_maxroutable and net_maxfragments is based on Valve's updated metrics on good packet sizes in CS:GO and Dota 2. The compression settings are to revert a change by Valve made in TF2 many years ago which bumped up the compression threshold to reduce load on servers. For clients however, this value should be much lower since you're compressing much smaller client update packets and generally have less load than a server.

posted about 5 years ago
#1695 mastercomfig - fps/customization config in Customization

Hey guys, today I would like to officially announce that mastercomfig specifically is cancelled. I have some exciting plans in the future to provide a much more useful service that encompasses all that mastercomfig provides, and more. I'm currently in the planning stages for this idea, but it will allow me to be less reliant on TF2 specifically and also give much more benefits than just some value tweaking. It will also make updates less dependent on me and use the power of the community.

Jynxiihow to make it not change my interp when i install it

Put your preferred net settings in custom.cfg.

posted about 5 years ago
#68 Sketchek is back? in TF2 General Discussion

To think I admired Sketchek at one point. Gosh, I thought you were brave, trying to make a bold statement about video games and the sanctity of life. But no, you're just a coward. You lied to all of us just so you could lay low for a little while, reaping the rewards of our misguided kindness and love towards you. And now you have the audacity to come back like this. I won't hate on you for admitting to it, but you should have never done this in the first place and that's what I'm angry about. However, in revealing your lie, you showed no empathy or even a slight bit of consideration to our pain, so I don't even know what to think about your announcement. Did you really think you could laugh it off with all of us? Do you have no shame or dignity?

EDIT: I appreciate your genuine and heartfelt apology. I understand you made a bad choice and although I can't fully accept your apology at this moment because of how extreme and horrible your lie was, I'm glad you're making steps to improve yourself and get yourself back on track.

posted about 5 years ago
#1693 mastercomfig - fps/customization config in Customization
CollaideI recently cleared my user settings with the installer, and now footsteps don't make any noise wether or not the setting is put to on or off [yes i applied]. mp_foosteps is on 1 and I have the "high" audio setting. Any way to fix this ?

Fun story: I just realized I have played the game without surround for like 1.5 years without noticing.

EDIT: 1 week later, still need advice

Try resetting your mastercomfig settings within the settings page.

posted about 5 years ago
#13 Mastercomfig help! mat_analias in TF2 General Discussion
JacK_TsanGTry to add mat_antialias 0 to your custom.cfg?

Although mastercoms proved that 1 is the minimum value for the command, but 0 works better on my PC

0 gets rounded up to 1.

HorseI'll try

Try opening regedit, HKEY_CURRENT_USER\Software\Valve\Source\tf\Settings, then remove mat_antialias.

posted about 5 years ago
#4 Does TF2 act differently on 32-bit OSes? in Off Topic

Not noticeably.

https://docs.microsoft.com/en-us/windows/desktop/WinProg64/performance-and-memory-consumption

posted about 5 years ago
#41 TF2 update for 12/19/18 (Smissmas 2018) in TF2 General Discussion

I took their language to mean that they reserve the right to release a Heavy update in the future, and that just because Heavy lost doesn't mean they will never ever update Heavy again. But other people took it to mean that they were confirmed the Heavy update coming after the Pyro update, which I don't think is valid.

posted about 5 years ago
#1680 mastercomfig - fps/customization config in Customization
_KermitInside the VPKs you can find the actual .cfg files, use GCFscape to extract them.ivan_make your own .cfg file with the commands u want to use and once ingame, do exec [ file name ]ProSkeezis there a text file for this cfg or are vpks the only way

You can review what's in the file on GitHub, but I would recommend using tf/cfg/custom.cfg for your own stuff. This way, your config doesn't break every time mastercomfig updates, and you can be sure that your stuff runs last and gets set to what you want. It also is more efficient, especially if you use modules.

yighthttps://www.thewindowsclub.com/disable-visual-effects-windows

does this still affect fps? im using the adjust for best performance

In exclusive fullscreen mode, it won't really affect performance (maybe a frame or two), but it will make Windows snappier.

Cache11031992if 66 Tick Rate Server what rates it is better to register? cl_cmdrate 66 cl_updaterate 66 or 66.67 or 67 ?

66.

66.67 is useless because update rate clamps down to an integer (no decimal places). 67 is doubly useless because sv_maxupdaterate is 66 on pretty much any server. However, on servers where this is not the case, update rate is limited by the tick rate of the server (1/0.015). You might thinking you should use it then, but no, because since client side, it is still at 67, which messes up network timings when it being considered to be at (1/0.015) on the server, but 67 on the client.

posted about 5 years ago
1 ⋅⋅ 36 37 38 39 40 41 42 ⋅⋅ 103