Hi Crew!
I've looked everywhere, but couldn't find any answer on this... this is "feature" i experiencing on all goon servers.
After I log into the game, i can see my HUD, hear the sounds, I can even right-click anywhere to pop out menu, but I can't see any in-game icons/sprites. Instead of that, I see white screen.
I'm running BYOND in Virtual Machine (byond doesn't work on linux), but other servers working fine, so I think it isn't the case.
Can anyone help me here? I really wish to play with goon's
Cheers!
-----------------------------------------------------------------------
Good news!
I successfully installed BYOND through wine on Debian.
I follwed these steps from winehq:
Quote:To get everything good make sure you use these from a terminal before installing from the same terminal:
export WINEARCH=win32
export WINEPREFIX=$HOME/.wine32_ss13/
export WINEDEBUG=-all
wineboot
winetricks wsh56 wsh57 jscript mfc42 vcrun6
winetricks ie7
winetricks ie8
And then finally install byond with whatever installer:
wine byonds.exe
Bash file to start BYOND:
#!/bin/bash
export WINEARCH=win32
export WINEPREFIX=$HOME/.wine32_ss13/
export WINEDEBUG=-all
wine "C:/Program Files/Byond/bin/byond.exe"
So, that's the likely solution if somebody experience same problems as me.
Thank's guys all input on this topic! Problem solved!