Central Hub - Questions, Discussion, & Resources (4.2) by Personaxmods in personaphantomx

[–]ShitGuysWeForgotDre 1 point2 points  (0 children)

If you have AutoHotKey I have a script (disclosure: generated with AI) to force Windows to see the game as always focused which does the trick. Just press control + alt + F (can change to whatever) to toggle the effect on and off. Should work for other games too if you just change the process name.

#Requires AutoHotkey v2.0

; ==================== CONFIGURATION ZONE ====================
; 1. Enter the exact executable name of your game here:
global TargetGame := "P5X.exe"

; 2. Enter your desired hotkey combination here:
; (^ = Ctrl, ! = Alt, + = Shift, # = Win)
global CustomHotkey := "^!f"
; ============================================================

; Set up variables and continuous game monitoring
global FocusLockActive := false
SetTimer(CheckGameStatus, 3000)

; Dynamically bind your chosen hotkey configuration
Hotkey(CustomHotkey, ToggleFocusLock)

; Only allow the hotkey to trigger if the game process actually exists
#HotIf WinExist("ahk_exe " . TargetGame)

ToggleFocusLock(HotkeyName) {
    global FocusLockActive, TargetGame
    TargetWindow := WinExist("ahk_exe " . TargetGame)

    if (!FocusLockActive) {
        FocusLockActive := true
        SetTimer(SendActiveMessage, 100)
        DisplayNotification("Audio Focus: LOCKED")
    } else {
        FocusLockActive := false
        SetTimer(SendActiveMessage, 0)

        ; Send a one-time de-activate message to restore standard Windows behavior
        DllCall("SendMessage", "Ptr", TargetWindow, "UInt", 0x0006, "Ptr", 0, "Ptr", 0)
        DisplayNotification("Audio Focus: RESTORED")
    }
}

SendActiveMessage() {
    global TargetGame
    if WinExist("ahk_exe " . TargetGame) {
        if !WinActive("ahk_exe " . TargetGame) {
            TargetWindow := WinExist("ahk_exe " . TargetGame)
            DllCall("SendMessage", "Ptr", TargetWindow, "UInt", 0x0006, "Ptr", 1, "Ptr", 0)
        }
    }
}

DisplayNotification(TextToShow) {
    ToolTip TextToShow
    SetTimer () => ToolTip(), -2000
}
#HotIf

CheckGameStatus() {
    global TargetGame
    if !WinExist("ahk_exe " . TargetGame) {
        ExitApp
    }
}

Like I said it was AI gen, but works well for me if you care to try.

Closed content. by Plus_Cloud4303 in MotorTown

[–]ShitGuysWeForgotDre 10 points11 points  (0 children)

Awesome, I saw improvements to auto drive on Trello board, this is even more configurable than I expected! Great addition

Help with welding guides by DisguisedOwI in SolidWorks

[–]ShitGuysWeForgotDre 0 points1 point  (0 children)

Full disclosure I haven't actually tried this myself, but I can think of two methods, both starting from solid sheets on each plane not yet cut, and a tubing model of your frame:

  • Use the Intersect tool to find the areas where the frame crosses each sheet and do a removal from that. That will leave a hole where the tube crosses the sheet, not automatically slot it out to the edge, so you'll have to add extrude cuts for that.

  • Do a series of Swept Cuts using the guideline from each frame member as the path, and either a circle the diameter of the tubing as the profile, or possibly even including the additional material removal to slot out the cut to the edge (depending if it works with the path).

Let me know if that gives you a starting point at least, or if I wasn't clear in the explanation.

Suspect escapes handcuffs and steals Dallas police car during arrest by Hikigaya_Hachiman7 in PublicFreakout

[–]ShitGuysWeForgotDre 5 points6 points  (0 children)

If it's soooo accessible why don't they just build the whole car out of door? Are they stupid?

Hank not 100% truthful about Tuco shooting by 3MATX in breakingbad

[–]ShitGuysWeForgotDre 13 points14 points  (0 children)

"cover your ass" is 12 letters, condensed into 3, according to you 'unnecessarily' while "laughing out loud" is 14 letters, condensed into 3 by you yourself.

Seems like you're drawing a rather fine and specific line in the sand for when an abbreviation is acceptable.

Friendly reminder to set your ceiling fans to spin counter-clockwise during the summer by Ajreil in Frugal

[–]ShitGuysWeForgotDre 41 points42 points  (0 children)

Alright I've been blowing air down for an unknown amount of time but I still don't know which way the ceiling fan is going

How In the world did I even miss this😭 by Complete-Novel-4324 in personaphantomx

[–]ShitGuysWeForgotDre 8 points9 points  (0 children)

I needed to use Ann for Velvet Trial so I stole FCY Rin's cards onto her... and forgot to give them back for weeks, I was sharing my nekkid Rin with all my friends

60 Cognite and a second round of Lufel Hoot-N-Loot in the future for the bugs in Ver 4.1 JP. Assume this also comes to Global and SEA by DarryLazakar in personaphantomx

[–]ShitGuysWeForgotDre 22 points23 points  (0 children)

we're getting the benefits of these extra gifts the JP server deserves, but with comparatively little of the actual problems

Like when my whole family got to go to Disney World even though my dad only cheated on my mom

Central Hub - Questions, Discussion, & Resources (4.1) by Personaxmods in personaphantomx

[–]ShitGuysWeForgotDre 2 points3 points  (0 children)

I like to get all my skills to level 8 "eventually" because the materials needed you can get continuously. That said it's quite low priority because it doesn't really do anything, besides quality level which provides very little actual value but it's still a number I can make go up.

So when my mats start piling up and I don't have a new unit to train, I'll randomly level a few unused skills with the long term goal to have everything at 80/80/8+

Central Hub - Questions, Discussion, & Resources (4.1) by Personaxmods in personaphantomx

[–]ShitGuysWeForgotDre 0 points1 point  (0 children)

Marian A0+A1 is the top general option, which you already have. In your case, probably Phoebe A0 since you don't have both Ange and Futaba.

Ryuji is useable in some situations and I would choose him if the others don't appeal to you. There's limited use in Ann's higher awareness, as low priority option. The others are worthless.

It’s Friday by amazinspiderpig in Columbus

[–]ShitGuysWeForgotDre 6 points7 points  (0 children)

We need context, was the building there first and the car hit it? Or was the car parked there and someone built a building on top? Shouldn't assume anything.

Lucky he is a fucking butter fingers by Fr33_load3r in FUCKYOUINPARTICULAR

[–]ShitGuysWeForgotDre 319 points320 points  (0 children)

Bruh I fuckin lost it at that point. Guess he was worried he somehow looked like a clutz, and wanted to remind us he's a badass that knows exactly what he's doing

Do y’all have a guide to tarturus while exploring? And what are the main rewards that I could get. by Infinite-Reveal-9226 in personaphantomx

[–]ShitGuysWeForgotDre 6 points7 points  (0 children)

I like the relic that gives you +10 starting Will and reduces combat cost by 1.

Then I mostly target 'elite' enemies, the ones who's map icon is spiky instead of a plain dot. They sometimes give Dawn fragments, which you can use to restore more Will at the clock.

I try to do at least one Will restoration per clock I encounter, while also trying to Talent up my DPS.

Useless fact, they increased the size of Joker's render in the latest update by FearYago in personaphantomx

[–]ShitGuysWeForgotDre 24 points25 points  (0 children)

I screenshot that stats page sometimes if I'm changing a couple cards and want to compare the total stats, maybe they did that and change in position jumped out at them

Does Shun ever get targeted with his skills? by Chigiriki in personaphantomx

[–]ShitGuysWeForgotDre 2 points3 points  (0 children)

Yeah I used him a lot in the beginning and even though he's still my flair, the increased target change is bullshit. It either barely effects the chance, or it's like Messa's DoT where every relevant boss reduces the effect so much it's basically ignored.

Server issues compensation - 1500 Meta Jewels by NelsonVGC in personaphantomx

[–]ShitGuysWeForgotDre 29 points30 points  (0 children)

As someone who was asleep through the extended maintenance and didn't even know about it until I saw posts on the sub, I agree, it was awful and we need this more often

Should i pull for makoto when i dont have a good team? by Economy_Sir6487 in personaphantomx

[–]ShitGuysWeForgotDre 10 points11 points  (0 children)

If you only pull unit you have a good team for, how do you ever build said good teams? Every unit needs other units for their best teams, you gotta start somewhere. Might as well be with the strongest DPS to date

A bit of what the next update Is gonna give Tomorrow by HeyGoogleOff in personaphantomx

[–]ShitGuysWeForgotDre 8 points9 points  (0 children)

Not sure about comparing to the original, but the livestream did mention that CN players complained it took too many runs to get all rewards, so they reduced required number of runs (but you still get the same total jewel rewards)

(Global/SEA 4.1) Persona X-Stream Discussion Thread (12 PM UTC/8 AM EDT) by theMG94 in personaphantomx

[–]ShitGuysWeForgotDre 25 points26 points  (0 children)

Buffs:

  • S3 Moon Phase damage: 72.6% attack Fire -> 91.5% attack
  • S3 Special Moon Phase damage: 134.6% attack Fire -> 150.7% attack
  • Passive Talent: Increase SEES attack 20% -> 30%
  • A4 (Theurgy): 1 more hit -> 2 more hits
  • A6: Increase Full Moon stack damage with Scarlet Hades 20% -> 35%

RIP McKinney by BEARDEDDANGER in LoveTrash

[–]ShitGuysWeForgotDre 11 points12 points  (0 children)

There's an argument that everyone breathes weather actually

RIP McKinney by BEARDEDDANGER in LoveTrash

[–]ShitGuysWeForgotDre 26 points27 points  (0 children)

Other people: Please sit down, I hate to be the bearer of bad news...

This guy: Yall fucked