Difference between revisions of "Linux"

From Anarchy Online Wiki [AOWiki]
Line 9: Line 9:
 
* Installation (For Debian based distributions)
 
* Installation (For Debian based distributions)
  
<code>
+
<syntaxhighlight lang="bash">
 
apt install wine winetricks zenity cabextract
 
apt install wine winetricks zenity cabextract
</code>
+
</syntaxhighlight>
  
 
* Download MS packages using Winetricks
 
* Download MS packages using Winetricks
<code>
+
 
 +
<syntaxhighlight lang="bash">
 
export WINEARCH=win32
 
export WINEARCH=win32
 
winetricks dotnet20 corefonts fontfix vcrun2005 vcrun6
 
winetricks dotnet20 corefonts fontfix vcrun2005 vcrun6
</code>
+
</syntaxhighlight>
  
 
* Download and install the Old Engine
 
* Download and install the Old Engine
<code>
+
 
 +
<syntaxhighlight lang="bash">
 
cd /tmp
 
cd /tmp
 
wget http://update.anarchy-online.com/download/AO/AnarchyOnline_EP1.exe
 
wget http://update.anarchy-online.com/download/AO/AnarchyOnline_EP1.exe
 
wine AnarchyOnline_EP1.exe
 
wine AnarchyOnline_EP1.exe
</code>
+
</syntaxhighlight>
  
 
* Run the game from the command line (or you if you ticked Add Desktop shortcut, you shoud have a shortcut in your OS)
 
* Run the game from the command line (or you if you ticked Add Desktop shortcut, you shoud have a shortcut in your OS)
  
<code>
+
<syntaxhighlight lang="bash">
 
cd ~/.wine/drive_c/Funcom/Anarchy\ Online
 
cd ~/.wine/drive_c/Funcom/Anarchy\ Online
 
wine Anarchy.exe
 
wine Anarchy.exe
</code>
+
</syntaxhighlight>
  
 
== TODO ==
 
== TODO ==
 
* Fix mouse problem
 
* Fix mouse problem

Revision as of 16:14, 25 July 2018


Oudated-clock.png Warning! Work in progress

Install Wine and Dependencies

  • Installation (For Debian based distributions)

<syntaxhighlight lang="bash"> apt install wine winetricks zenity cabextract </syntaxhighlight>

  • Download MS packages using Winetricks

<syntaxhighlight lang="bash"> export WINEARCH=win32 winetricks dotnet20 corefonts fontfix vcrun2005 vcrun6 </syntaxhighlight>

  • Download and install the Old Engine

<syntaxhighlight lang="bash"> cd /tmp wget http://update.anarchy-online.com/download/AO/AnarchyOnline_EP1.exe wine AnarchyOnline_EP1.exe </syntaxhighlight>

  • Run the game from the command line (or you if you ticked Add Desktop shortcut, you shoud have a shortcut in your OS)

<syntaxhighlight lang="bash"> cd ~/.wine/drive_c/Funcom/Anarchy\ Online wine Anarchy.exe </syntaxhighlight>

TODO

  • Fix mouse problem