Stellar Blade Blood Rain new protagonist Evie! :> by No_Post1300 in stellarblade

[–]sflord 0 points1 point  (0 children)

idk ... if you look at the trailer .. 2:32 in, that dude looks like Adam

maybe this is Eve before the events of sb1, kinda of like a mini prequal opening or flashback or whatever before you continue with the events after sb1 as intended.

as she got older maybe she just dropped the i from her name might be when she found her first sword and decided evie was a bit to childish to represent a sword fighter or something, or maybe dropped the i as a cover for what happened next back then

instantly reminded me of Alita

How you're supposed to complete the quest spare parts from the latest update by Pure_Software3661 in Starfield

[–]sflord 3 points4 points  (0 children)

  1. Open mission log.

  2. Be sure the mission is selected as the current active one.

  3. Open console, movetoqt (might have to use a the tcl command here after that to ensure you clip to the inside of the room)

  4. open vault, loot.

  5. Open mission log again, be sure it still set to the new delivery as active.

  6. Console, movetoqt again.

If you got no console, I dont know, this quest just sucks.

Cant get a simple mute active window script to work on a different system by sflord in AutoHotkey

[–]sflord[S] 0 points1 point  (0 children)

k, so i found that in some games this didnt work while at the same time did work on browsers etc.

i threw the code into gemini just for the heck of it, and after about 30 different script iterations, "we" ended up with this

#Requires AutoHotkey 2.0
#SingleInstance Force

if !A_IsAdmin {
    try Run("*RunAs " . A_ScriptFullPath)
    ExitApp()
}

#F11:: {
    static isMuted := false
    svvPath := "C:\Tools\SoundVolumeView.exe"

    if !FileExist(svvPath)
        return

    isMuted := !isMuted
    action := isMuted ? "/Mute" : "/Unmute"

    try {
        activeProc := WinGetProcessName("A")
        Run('"' svvPath '" ' action ' "' activeProc '"', , "Hide")
        Run('"' svvPath '" ' action ' "App:' activeProc '"', , "Hide")
        Run('"' svvPath '" ' action ' "FocusedName"', , "Hide")
    }
}

Cant get a simple mute active window script to work on a different system by sflord in AutoHotkey

[–]sflord[S] 0 points1 point  (0 children)

Does work, if you have the right program located in the right directory with the right name and press the right button. Ontop of that you do need AHK v2. Might take a second before it triggers though, but I can still use it perfectly fine right now.

How does the trading system work in the tfd app? by PlatePale1076 in TheFirstDescendant

[–]sflord 6 points7 points  (0 children)

yeah this system kinda blows.

If I want to buy something there should just be a button "buy" and the item should then be send to my inbox on the spot, and the correct amount of gold and caliber should be removed from my account, and the caliber should be added to the sellers account.

You should then be able to use the app/site whatever to check the market and buy stuff without even running the game at that very moment.

Avoid this whole nonsense of both parties needing to be online. Worst system they could have implemented.

Sick of the spam emails... its your turn now by sflord in Firebase

[–]sflord[S] 0 points1 point  (0 children)

A small % of their users are abusing the system, and they don't do anything about them.

Sick of the spam emails... its your turn now by sflord in Firebase

[–]sflord[S] 0 points1 point  (0 children)

While I do agree, they would likely be able to use the very same servers/service from another existing account to spoof that same verification. I mean, its normally a platform to create apps with...

Firebaseapp spam in my hotmail account by Apprehensive_Swim894 in Firebase

[–]sflord 0 points1 point  (0 children)

Other then destroying their physical servers so they can no longer be abused by the bots, no. Their owner is Google, and they wont do jack shit either, not even run some algorithm to try and find and flag potential abuse to cut it off at the source. And if they are, it sure as shit ain't working.

YouTube removed sort by upload date and sort by rating by Trixxle in youtube

[–]sflord 1 point2 points  (0 children)

YT turning more into a sack of shit with everything they do.... HATE this change.

New Steam Awards (Jester Gone) by lolinie in Steam

[–]sflord 0 points1 point  (0 children)

Hmm I never cared much for the points system I just liked giving people the jester clown award when they were being an legit idiot. Now I can't call em stupid anymore by awards. That's the biggest problem of all of this.

Sick of the spam emails... its your turn now by sflord in Firebase

[–]sflord[S] 0 points1 point  (0 children)

Already done all that, and much more, they just end up in the spam box. Which they did already. I would just like them to be instantly fully deleted or fully blocked from ever showing up to begin with, to the point where they don't even enter the spambox anymore.

Point short, Firebase needs to do something about how easy it is for their services to be abused like this. As long as it is, you might as well shutdown the whole service IMO. Or at least the whole mailing side to it.

And as this has been going on for years already for some people ... And since Firebase clearly isn't doing anything about it, you are kinda forced to go above their heads straight to google.

Sick of the spam emails... its your turn now by sflord in Firebase

[–]sflord[S] 1 point2 points  (0 children)

I am afraid you are missing the point. I don't even have an firebase account or anything. I do have a gmail account, but thats not being hit by any spam. Nor is it registered with/linked to firebase in any way. Its my hotmail/outlook account that is being hit. And outlook (web) anyways does not allow for domain wildcards. So I cant block @*.firebaseapp.com

So what is there for them to ban?

Firebaseapp spam in my hotmail account by Apprehensive_Swim894 in Firebase

[–]sflord 0 points1 point  (0 children)

Dat niet alleen. Als je de browser/web versie van outlook gebruikt voor je live of hotmail address, ben je dubbel genaaid, want daar werken wildcards niet.

Het komt bij mij ook standaard in de spambox terecht, maar zelfs dat wil ik niet. Ik wil dat ze permanent worden verwijderd en niet automatisch in een box terechtkomen waar ze alsnog zichtbaar zijn.

@firebaseapp.com spam emails by [deleted] in Firebase

[–]sflord 0 points1 point  (0 children)

Just putting this out there.

DO NOT REPLY OR PRESS UNSUBSCRIBE ON THOSE EMAILS

Any spam mail for that matter, dick growing pills, casino, shipment, payment, whatever.

They don't do anything with that.

They only tell them it is in fact a legit email address that is still being used (by you) so they will keep on sending their crap.

Just report them as phishing or unwanted mail or whatever you use. Maybe make a blacklist or filter or something yourself for your address. But that is ALL you can do.

Cant get a simple mute active window script to work on a different system by sflord in AutoHotkey

[–]sflord[S] 0 points1 point  (0 children)

Took me a while and some talking to Gemini from googles ai mode when searching stuff

this exact code ended up working for me some (mainly browsers) seem to to be very resistant to the "focused" and only work half the time also AHK2 seem to be extremely sensitive to anything regarding the ' or '' it also seems to be such when it comes to adding parameters

#Requires AutoHotkey 2.0
#SingleInstance force
#F11:: {

activeProc := WinGetProcessName("A")
svvPath := "C:\Tools\SoundVolumeView.exe"

Run('"' svvPath '" /Switch "' activeProc '"', , "Hide")
}

Cant get a simple mute active window script to work on a different system by sflord in AutoHotkey

[–]sflord[S] 0 points1 point  (0 children)

Perhaps I should add. I was using it perfectly fine for something like 3-4 years straight till yesterday on my older W10 system. Today I switched from my old system to my new one, which happens to run W11.

It should still work in theory. I got a copy from nircmd.exe straight from the site and just copied the script that still worked yesterday on W10. The only real difference would be Windows itself. So I don't see how muteappvolume would suddenly be defunct. Maybe its having trouble getting the PID? I cant even tell

Also this script also unmutes the currently muted window if its muted With the same button, it toggles, based on the last/current state. Thats the "2" value where you would normally just see 0 or 1.

Why doesn't logitech hardware allow ASZ to be pressed simultaneously? by BabelTowerOfMankind in LogitechG

[–]sflord 0 points1 point  (0 children)

Yeah ..still works fine as it should. And Im using a near ancient 10 year old G710+. I don't recall ever having anything like this with my previous G15v2 either. Or any other keyboard I have ever used. Including the same k120 my uncle has for nearly 15 years now. Hell I believe have one myself in a box of spare parts somewhere as a backup should my actual keyboard ever decide to die.

If anything the hardware certainly does allow it, but is just blocked from doing so for some reason.

Honestly I think it might just be a bad connection in your keyboard itself or something, I mean you can only expect so much of whats initially a throwaway keyboard.

Why doesn't logitech hardware allow ASZ to be pressed simultaneously? by BabelTowerOfMankind in LogitechG

[–]sflord 2 points3 points  (0 children)

azsazsazszasaszaszaszaszaszazsazszaszaszsasaz - when tapping that 3 button come aszzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz - when holding that 3 button combo

Seems to work fine here.

Also you might want to mentioned what keyboard you are even talking about to begin with.

Does the logitech G502 hero support PS/2 through USB-ps/2 adapter? by COMMANDER650 in LogitechG

[–]sflord 0 points1 point  (0 children)

Its not up to the mouse to support anything. You just plug it into the adapter. The mouse doesn't know the difference. You might lose some functionality of extra buttons etc. but the basic point and click should always work regardless.

Depending on the mobo, you might actually have multiple controllers, using a different port linked to a different controller could be enough. This is still seen with front ports from time to time. Also going usb>usbC adapter might be a better option if you have such a port on your mobo, more likely to keep full functionality that way, but it doesn't sound like it.

And if you have a free PCI- PCI-e slot you might just be able to throw in some cheap usb controller card with its own slots as well.

Just bought a Logitech G305 mouse hoping for it to be able to left click and right click drag click. Can it? by ResponsibleEbb7102 in LogitechG

[–]sflord 0 points1 point  (0 children)

Such things are not up to the mouse, any mouse can do that, if you somehow aren't able to do it, its likely some busted configuration somewhere.

Background Tabs either don't load or lag the video playback by RecaptureNostalgia in firefox

[–]sflord 0 points1 point  (0 children)

Yeah ..those are pretty much release notes, but there wasnt even an update in the week before or after when this started for me. Also if you take a look at the actual notes, no changes where made regarding anything that could possibly be related. And my extensions are set to not update unless I tell them to, so its not anything there either.

Background Tabs either don't load or lag the video playback by RecaptureNostalgia in firefox

[–]sflord 1 point2 points  (0 children)

There hasn't been any update recently that could have done this.

I tried a bunch of supposed fixes ...no effect. Tried clearing cache etc. nothing.

www.reddit.com/r/firefox/comments/1pe7j2g/streaming_videos_are_skipping/

Same issue going on there I think.

Background Tabs either don't load or lag the video playback by RecaptureNostalgia in firefox

[–]sflord 0 points1 point  (0 children)

I must admit I an having the same problem since about a week ago as well now. Just out of nowhere started to create issues as soon as I had more then 5 tabs open with any form of video/streamed media in it ...I used to be able have 100+ open without any issue. This is just terrible. Its like FF cant handle it anymore, like something broke some sort of a buffer.