Vihaan_Sachdev23
Member
bump saars
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Should we tell cs2 pros not to use 4:3 since it's not the 90's anymore? xddshould devs really waste their time making games work in 4:3 in 2024
Now would play 800 600, and so yes the game is not normally optimized for such extensions xdPlaying 800x600 and i don't have a healthbar, everything else on the UI works except spectator UI... Its the only way i can play the game so please fix it.
deadlock is a game that has been played since the 90s competitively when most monitors were 4:3 yes? Reason pros in cs play 4:3 is because they copied pros settings when they were starting, 4:3 gives u a fov disadvantage and is a bad res objectively to play at in 2024, and majority of pros are dumb like youShould we tell cs2 pros not to use 4:3 since it's not the 90's anymore? xdd
Sir, I am using 4:3 because my monitor is the aspect ratio. OK?deadlock is a game that has been played since the 90s competitively when most monitors were 4:3 yes? Reason pros in cs play 4:3 is because they copied pros settings when they were starting, 4:3 gives u a fov disadvantage and is a bad res objectively to play at in 2024, and majority of pros are dumb like you
Don't use insults on this forum.are dumb like you
I agree with this man. Even you can scroll up and see my monitor is a 4:3 aspect.Don't use insults on this forum.
4:3 monitors exist and this needs to be accepted. The game should be scaled to fit any device, even if you play it on the clock.
These issues aren't exclusive to low resolutions. My CRT runs at 1600x1200 and I also have these issues.
View attachment 11856
View attachment 11857
There's no option for 4:3 in the aspect ratio selection, even though all the major resolutions seem to be supported. If you select another aspect ratio and you want to go back, you need to select Use Native Resolution, then you can go back to Use Custom and select which specific resolution you want.
View attachment 11858
I sure hope the devs don't go the same way with this game that they did with Dota, where 4:3 is being dropped and more problems keep showing up.
EDIT: Also confirming Vihaan's fix works.
View attachment 11864
How does this fix work? I'm playing on a 4:3 monitor and would love to know how you did this.
#health_and_abilities_container
{
width: 250px;
height: 380px;
vertical-align: bottom;
horizontal-align: left;
margin-left: 280px;
margin-bottom: 0px;
margin-right: 0px;
flow-children: none;
transition-property: margin-left, ui-scale;
transition-duration: 0.1s;
}
Can we get a tutorial or something, im no expert. I just wanna play the game on 4:3 really badI did that fix on the panorama debugger, so it was only temporary. In order to permanently fix it, you need to decompile hud.vccs_c into a regular css, edit some code, then repack it into a mod.
You can find hud.vcss_c in pak01.vpk under panorama/styles. In there is an entry for #health_and_abilities_container. Replace the code there with the following:
That'll put the health bar somewhere on your character's back. Not entirely where it's supposed to be but it wont clash with other HUD elements.
Then you need to pack it into a new vpk file and make a mod out of it. I don't really know all the finer details of it (I had a friend recompile hud.css into a vcss_c, and he's not even sure how he did it) so I can't really give you a good tutorial. At some point I'm gonna take a crack at making a mod that fixes this and all the other interface issues with 4:3.
And if a dev is reading this, the fix is really simple. Set the horizontal-align for #health_and_abilities_container to left, remove the right margin, and adjust the left margin accordingly.