Jump to content

Diff

Vintarian
  • Posts

    303
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. Diff's post in Temporal Stability Meter Circular Draining was marked as the answer   
    Published to ModDB: https://mods.vintagestory.at/radialhotgear
  2. Diff's post in Charcoal issues was marked as the answer   
    Far as I can tell there's nothing wrong with the shape of your pit, so it's either that there's a stack that's not quite a full 32 logs, or that it's not being lit correctly. I recreated your pit and was able to get it to bake down to crispy charcoal bits. Things to watch for, once I complete the fire pit on top of the logs, the info HUD at the top actually changes to "Charcoal Pit" instead of "Fire Pit", and after lighting it, it displays a warning that you have 30 in game minutes to cover the pit. If you don't see any of those things, abandon ship and double check everything.
    https://www.youtube.com/watch?v=vLHjLE9Y-Oc
     
  3. Diff's post in Boat Speed was marked as the answer   
    Looks like a complex answer, this is the code responsible, but it varies based on a lot of things and I'm not finding a single max speed written in stone. You'd have to trace out how high the math goes to figure out the max speed.
    I also can't find any multipliers for boat type. I believe this code handles both sailboats and rafts, but the only modifiers I see for speed are the status of the sail and how many people are rowing.
  4. Diff's post in Opened the server exe "to see what it does" and now I can't host any ad-hoc multiplayer games. was marked as the answer   
    The server is running, so you need to stop it. Either restart your computer, or open Mint's equivalent of the task manager to kill the server. Or "killall Vintage" in a terminal would probably do the trick.
  5. Diff's post in Linux Dedicated Server Help was marked as the answer   
    Sounds like your Linux experimentation is going pretty well so far, that's great to see!
    Now to be a killjoy, I really wouldn't recommend starting it with sudo. If a hacker discovers a vulnerability in the VS server, you could be hosing your entire system. Instead, since the server's telling you which directory it wants, I'd recommend doing something like
    sudo mkdir /var/vintagestory/ sudo chown vintagestoryuseryoucreated /var/vintagestory Which will create the directory and give it wholly over to the vintage story user you created so it can do whatever it needs to with it.
    On Linux, if you haven't already run into this info yet, files and folders can be owned by a user and assigned to a user group, and permissions are split into groups of three. There are read, write, and execute permissions, and those can be given to the owner of the file, given to the group associated with the file, and blanket permissions for everyone else. The chown command changes the owner of a file or folder, and if you needed to edit permissions, you can use chmod like this:
    sudo chmod u+rwx /path/to/file sudo chmod g-wx /path/to/file sudo chmod o-rwx /path/to/file Which gives the user (owner) of the file all permissions, removes write and execute permissions from the associated user group, and removes all permissions from all others.
    In general on Linux, you'll typically want to avoid running things with sudo, particularly software that will stay running for a long time. It often works, but it takes absolutely all the safeties off. Many services will outright shut themselves down and refuse to run if they notice they're running as the root user.
  6. Diff's post in Playing on Linux on friends Windows-server? was marked as the answer   
    Crossplay works great! With the magic of Microsoft you don't even need to cross compile (nearly all) mods. I develop mods on my MacBook that I then run on my Steam Deck, playing multiplayer on (probably) Linux based servers with other players who are running Windows clients.

    I've seen only one mod that isn't cross platform, and it was a mod that overrides the font the game uses by using a Windows-specific system call.
  7. Diff's post in How to update on Steam Deck was marked as the answer   
    After doing way too much to work around this myself, I discovered this:
    https://wiki.vintagestory.at/Installing_the_game_on_Linux#Easy_installation_options
  8. Diff's post in Whats with the .net requirement now was marked as the answer   
    It was always a requirement, but in 1.21 it did change from .net 7 to .net 8.
  9. Diff's post in How do I update to 1.21 on the Steam Deck? was marked as the answer   
    Flathub hasn't been updated with 1.21 yet. It's not fully automatic, it needs manual approval from the maintainer, so you can't do it through Discover until it flushes through. It's on its way:
    https://github.com/flathub/at.vintagestory.VintageStory/pull/101
    But when testing it, it crashed for me. It looks like it needs .NET 8.0 installed, but the Flatpak is only set up to ask for 7.0. I think it's probably best to wait for the moment.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.