-
Notifications
You must be signed in to change notification settings - Fork 0
Games
Lean's edited this page Mar 29, 2024
·
16 revisions
-
ankama-launcher
auracle
-
minecraft-launcher
auracle
Create a bash script
#!/bin/sh
java -jar SKlauncher.jar
- lib32-unixodbc
auracle - sudo pacman -S winetricks bash curl openssl samba mesa-utils gnutls lib32-gnutls libldap lib32-libldap openal lib32-openal libpulse lib32-libpulse alsa-lib lib32-alsa-lib mpg123 lib32-mpg123 unixodbc vkd3d lib32-vkd3d vulkan-icd-loader lib32-vulkan-icd-loader
-
Also download the graphics card drivers
- wine-lol
auracle
- leagueoflegends-git
auracle
-
leagueoflegends install
-
do not log in while installing
-
exit the window when the game installation is finished
-
leagueoflegends start
https://github.com/kyechou/leagueoflegends
Download the sdk
- sudo pacman -S dotnet-sdk-7.0
Download cake for building the mod
- dotnet tool install Cake.Tool --global
- code
Enable extensions: C# If you are geting errors consider downloading
sudo pacman -S dotnet-runtime
Enable global path for vintage story
- vim ~/.bashrc
Add
export VINTAGE_STORY="/home/user/..." <-- path to vintage story
Consider rebooting the system after that
Download mod template
- dotnet new install VintageStory.Mod.Templates
Creating a mod template
- dotnet new vsmod --AddSolutionFile -o modname
Creating a dll only template
- dotnet new vsmoddll --AddSolutionFile -o mytestmod
--IncludeVSSurvivalMod --> Include survival mod dependency
Vintagestory.API.Common not found
- The VINTAGE_STORY variable is not set, consider setting in .bashrc and rebotting the system, or you can manually change it in csproj for you mod folder
modname/modname.csproj--><Reference Include="VintageStoryAPI">...also change inCakeBuild/CakeBuild.csproj
Unable to find package Microsoft.NETCore.App.Host.arch-x64
- dotnet add package Microsoft.NETCore.App.Host.linux-x64
Add this to csproj in CakeBuild and modname csproj
<PropertyGroup>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
</PropertyGroup>

