6
1

JunimoServer and GOG

2mon 8d ago by no.lastname.nz/u/BlueEther in stardewvalley@piefed.social

Are there any tutorials on setting up JunimoServer with the downloaded linux .sh?

Or is there a better way to set up multiplayer for my kids on a local server?

Well, I ended up firing up doing the following:

  • a debian LXC in proxmox
  • Copy linus .sh install files and run
  • install SMAPI and Always On Server
  • install Vxfb, x11vnc, pulseaudio etc
  • copy a saved multiplayer game to the server ~/.config/StardewValley/Saves/

apt install -y xdotool wmctrl x11-utils xvfb pulseaudio alsa-utils libasound2-plugins

/etc/asound.conf

pcm.!default {
    type null
}
ctl.!default {
    type null
}
  • Start a virtual display
Xvfb :99 -screen 0 1280x720x24 &
export DISPLAY=:99
DISPLAY=:99 \
./StardewModdingAPI --save "GoldenRod_435386528"

x11vnc -display :99 -usepw -rfbport 5900

  • use a vnc to connect and start the game in co-op mode

  • Use standard client to connect

I think that was everything