Prerequisites
- Some basic command line knowledge
- wine
- vncserver
- screen
Setup
Create a directory for the server to live. Place Pokemon3DServer.exe in this folder.
Then enter the directory and create a start script. I use vim, you can use whatever you want.
Add this to the script and then save.
Make the script executable.
Download and install .NET 4.0 and XNA 4.0 via winetricks.
Now just use VNCviewer (if you use something different, that's fine) to view the "desktop" of your server. Open a terminal and navigate to the pokemon3d directory.
Then start the server.
You should now have a functioning Pokemon3D server running on Ubuntu!
- Some basic command line knowledge
- wine
- vncserver
- screen
Setup
Create a directory for the server to live. Place Pokemon3DServer.exe in this folder.
Code:
mkdir pokemon3d
Code:
cd pokemon3d/
vim start.sh
Code:
wine Pokemon3DServer.exe
Code:
chmod +x start.sh
Code:
winetricks dotnet40
winetricks xna40
Code:
cd pokemon3d/
Code:
screen -S "Pokemon" ./start.sh