• 0 Posts
  • 180 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle

  • Yup. I put in a ticket with Rockstar and here is their official reply. TLDR: Fuck off.

    M____. (Rockstar Support)

    Sep 17, 2024, 12:51 EDT

    Hello,

    Thank you for contacting Rockstar Support.

    We certainly understand that you are unable to login to GTA online through Steam Deck after the update.

    We would like to inform you that the primary goal of incorporating BattlEye into GTA Online is to enhance the overall gaming experience by actively scanning for cheats and exploits, and preventing players with cheats and mods from entering online. The Steam Deck players will not be able to join GTA Online but should be able to launch single-player without any issues. we appreciate your understanding in this matter.

    If you have any further questions or concerns, please feel free to let us know. We are here to assist you.

    Best regards,

    M______. Rockstar Support



  • Yeah, that is bedrock edition, and it’s crazy how poorly it runs on the Switch natively. It has just gotten progressively worse as we go along. Each update comes with a new batch of shit that doesn’t work. For instance, you used to be able to drop out of the game and go to your screenshots on the Switch, then pop back into the game. If you do that now, it immediately disconnects you from the realm or any network connected instance when you pop out of the game. I have disconnected from a lot of games by accidentally hitting the wrong button when I meant to just take a screenshot. It didn’t do that in the past, but they fucked it up one update and have just never bothered to fix it. And they obviously aren’t doing any kind of thorough testing as that would have come up. They just ignore their Jira ticketing system.

    The version I prefer isn’t available anymore, and the only way you can play it is if you had it originally as it has been removed from the store. If your account doesn’t have the Switch edition, you are out of luck because they insisted that bedrock had to be the only one available, so Switch Edition had development halted and then eventually wiped from the store. Sucks, because that version was so much better as far as performance and gameplay goes.





  • Secondly, I’d attempt to write a bash script to walk a directory tree, cat out files, pipe it through grep and get every instance where VirtualBox is mentioned in a file. Trying the name of proccess, or of the executable too.

    Move to the top of the tree you want to search and do something like this:

    find . -type f -exec grep -iH “virtualboxexecutable” {} ;

    That will give you what you want without the need for a script. -type f makes the find command only search files, and -exec has it run the grep command on any files it returns with -iH giving you case insensitive results showing you the file it’s found in. Substitute ‘virtualboxexecutable’ with whatever the process name is that is being run. If you want to ignore binary files, the add in "| grep -iv “binary file matches” to the command. That will strip out any results where it has searched a binary file.



  • For how much money they rake in these updates should be far more robust if anything.

    They don’t even seem to test. There has been a known issue connecting two Switches to the same game instance, and they have just kept moving the ticket along in Jira, extending out or asking each update if the issue still exist, and someone replies yes, on and on ad infinitum. They obviously aren’t testing on anything other than a pristine godzillabit speed network, otherwise they would have found this issue a long time ago. And I have been playing long enough to remember when exactly that issue was introduced in an update. They make enough money on this franchise that bugs like this should be unacceptable, but hey we have armadillos… And those fucking phantoms. Yeah…





  • Sounds great in theory, but when you are trying to use awk to print out commands that might have something like printf and have to start escaping quotes, it gets really messy really quick. I have run into situations like this more than I care to as I like writing commands that will write out other commands. Spaces in filenames also mess with things like sed or sort where you want a specific column. Sorry, but in my opinion using the same character that was previously determined to be a delimiter is just a bad idea.



  • Christ you guys are making me feel old. I remember back in the day when a serial connection was made through an actual serial port. I know I have some serial cards around here somewhere. I have also used the tar command on an actual tape… Here’s a fun fact, if your tape drive (big reel to reel looking thing, not a cassette or other kind of ‘tape’) has an issue with rewinding, do not use your finger to manually spin the reel. Use a pencil. I finished reeling my tape back up once and realized I now had a blister on the end of my finger.



  • Mine falls along with the people who were distracted. Was doing two deployments for work on night and on one I need to clear a cache. As I was typing the cd command, I happened to glance at the instructions for the other deployment and for some reason my mind switched to the deployment folder. I then typed out rm -rf *, and as I hit return realized I wasn’t in the cache subdir. Blew away our prod environment and it took hours to get it all restored. The restore kept asking the guy to go pull tape #xxx. It was nerve wracking because depending on the tape, there was a chance it was moved offsite. Got it all restored and turned it back on, and then had to start back from the beginning since the backup was from the night before. The other people doing deployments weren’t too happy, but I owned up immediately and we ended up changing the procedure. First, the cache clearing was done via a script after that, and I won my argument about not having to do two deployments simultaneously!