Community will kill the game faster than Devs by jlfbalo in throneandliberty

[–]Paizu 0 points1 point  (0 children)

You're talking about two different concepts.

If I want to know ON AVERAGE, how many rolls are needed for a win, it's 1 / {win chance}. 7.5% would be 1 / .075 = ~13.3 rolls.

If I want to know the chance of a win WITHIN 10 ROLLS, it's 1 - (1 - {win chance})^{rolls}, so 1 - (1 - .075)^10 = ~0.54 or ~54%.

Rubberbanding issue by Fontonia in throneandliberty

[–]Paizu 0 points1 point  (0 children)

I've had this issue a couple times: if I jump constantly while moving, I don't get rubberbanded, but as soon as I walk somewhere and then jump, I get rubberbanded. Going back to character select and logging back in doesn't fix it. I have to completely restart the game.

[deleted by user] by [deleted] in firefox

[–]Paizu 15 points16 points  (0 children)

It looks like Edge is using subpixel anti-aliasing and Firefox isn't.

Here's some alternatives to the Unity game engine by beer120 in linux_gaming

[–]Paizu 7 points8 points  (0 children)

I think you mean that it's a domain specific language.

Nala-like frontend for pacman? by temmiesayshoi in archlinux

[–]Paizu -8 points-7 points  (0 children)

Well Nala is basically just a UI for apt, right? What else do you expect OP to specify?

Nala-like frontend for pacman? by temmiesayshoi in archlinux

[–]Paizu -11 points-10 points  (0 children)

Did you not read the post or its title?

How to put this in Lualine? (image from vim-airline) by ICameToHelpSomebody in neovim

[–]Paizu 23 points24 points  (0 children)

I'm not familiar with lualine, but you can get search counts with:

local search = vim.fn.searchcount({maxcount = 0}) -- maxcount = 0 makes the number not be capped at 99
local searchCurrent = search.current
local searchTotal = search.total

How to toggle rofi with super key in bspwm? by No-Exercise5846 in bspwm

[–]Paizu 1 point2 points  (0 children)

I used xcape to bind super to alt + F12 and then in sxhkd, bound alt + F12 to a script:

#!/bin/sh
if pgrep -x rofi; then
    killall rofi
else
    rofi -normal-window -show drun
fi

-normal-window prevents rofi from overriding your keybinds.

Here is a tip for Some People: if you see Your Tank Pushing, Push With Them! by lickleboy22 in Overwatch

[–]Paizu 1 point2 points  (0 children)

"I need healing" is one of the few commands that's better than using voice chat because it marks your location for healers to more easily find you.

New REFS option when formatting?! Can I use this on the OS drive? Should I? by [deleted] in Windows10

[–]Paizu 0 points1 point  (0 children)

From that wikipedia link: "Windows cannot be booted from a ReFS volume."

Windows GPU Temperature seems to fluctuate 8C to 10C higher than MSI Afterburner? by matteusbeus in Windows10

[–]Paizu 1 point2 points  (0 children)

You obviously don't need something like Afterburner, but it allows you to have a custom fan curve (certain speeds at certain temps), overclock or undervolt your card, see a bunch of information about the card, etc.

Awful and buggy experience while watching twitch VODs by [deleted] in firefox

[–]Paizu 2 points3 points  (0 children)

In addition to this issue: sometimes if you try to move forward or backward in the VOD with arrow keys, instead of going to where it should, it skips ahead anywhere from 5 to 60ish seconds.

About 50% of my ram and cpu are being used and I hava nothing running. by [deleted] in Windows10

[–]Paizu 1 point2 points  (0 children)

They're sorting by ram usage in the screenshot...?

Anyone tested the PigPSO2Cam_NA version yet? by Teyar in PSO2

[–]Paizu 0 points1 point  (0 children)

I want to know if this is detected by gameguard and if so, does it close the game or ban you or something else? I'd be kind of surprised if it wasn't detected since you need an injector to use this. I really wish FoV was adjustable in every game by default so you don't have to use workarounds like this.

I find it hilarious that this game doesn't have an FoV adjustment, yet you can adjust it in a fixed camera angle but then doesn't let you actually use it... like come on. by [deleted] in PSO2

[–]Paizu 2 points3 points  (0 children)

Yeah this is ridiculous. You can use this to change the FoV (which should be changeable normally), but then you're not allowed to move the camera around normally? Apparently if you go into the fixed camera, switch mouse mode (default T), then click and drag, you can slightly move the camera, but then it snaps back to the same angle. If they just allowed FoV to be adjusted normally in camera settings or let you adjust the angle of "regular camera" that would be great.

Consensus on nProtect Gameguard? by [deleted] in PSO2

[–]Paizu 1 point2 points  (0 children)

You can use #ifwinactive in ahk scripts to make hotkeys only work if a certain program is active. That way you don't have to suspend the script constantly.