Het forum

League Of Legends

Riot Games (Dota Like)

Auteur Antwoorden
C2lhu Zaterdag 3 April 2010 om 19:32
C2lhuAnonymous

Hello, I am sure many of you would like to play League Of Legends on Linux.. This is a new game (just got out of beta some weeks ago) so wine has problems running it. There are some attempts to play it but it seems they all stuck on launching the 3d part of the game..It installs fine..

I wonder if any of you has tryied tweaking some parameters with advanced wine conf plugin and maybe has had any success in playing it...
DirtyNerd Zondag 4 April 2010 om 10:28
DirtyNerdAnonymous

Play Heroes Of Newerth, Its a stand alone DotA clone with amazing graphics and its free as its in the open beta phase, + its natively supported by linux.

Aangepast door DirtyNerd

Dr Phil Zondag 4 April 2010 om 19:29
Dr Phil

(Free as in free beer, but nor free as in free speech!)
C2lhu Vrijdag 9 April 2010 om 0:06
C2lhuAnonymous

thx man I'll give it a try :)
razcasar Zondag 15 Augustus 2010 om 14:15
razcasarAnonymous

Since HoN began to cost money the people need league of legends, besides, lol is more entertaining
Auth3ntic0 Maandag 16 Augustus 2010 om 9:30
Auth3ntic0Anonymous

Since HoN began to cost money the people need league of legends, besides, lol is more entertaining

Quote from razcasar


And much easier to play and more user friendly than Heroes of Newerth. Will keep an eye on this topic. ;-)
Oculus Maandag 20 September 2010 om 12:45
Oculus

Any news about this one? I'd really love to see this game one day on PoL. :incertain:
Since it's really a pain due to the face that to actually play this game I have to recompile wine with those few custom patches, it would be such a relief to be able to play it out of the box. :)

Aangepast door Oculus

caligoanimus Zondag 26 December 2010 om 21:34
caligoanimusAnonymous

Bump


I too would love for LoL to be a part of Play On Linux.
rodvil Zondag 2 Januari 2011 om 5:34
rodvilAnonymous

Same here... I would love to play this one!
PNO3000 Donderdag 17 Februari 2011 om 18:05
PNO3000Anonymous

I have gotten LOL to install and run, however for some reason it will not connect to the server, i have ban working on trying to get this to work for months, however I have yet to have any luck. I have read online that other people have ban able to got it to work using wine alone, but when I follow there instructions it does not end up working, it is possible for someone to ether make a batch file that does all the setup for you or some kind of custom installer? I just don't know enough about linux or wine.
lechatsauvage Dinsdag 22 Februari 2011 om 21:23
lechatsauvageAnonymous

I found this on LoL forums. It worked for me on Kubuntu 10.04. The game runs at about 30 fps with some anoying glitches, still playable but not perfectly...

Finally!! A solution!!

Tutorial for making League of Legends run under wine:
You will need:
1) Wine 1.1.44 source tarball
2) winetricks script

in terminal, cd to the folder where you downloaded wine 1.1.44.tar.bz2:
Code:

tar xvf Wine-1.1.44.tar.bz2
cd Wine-1.1.44

now we need to dl 2 patches for our wine source:
Code:

wget http://bugs2.winehq.org/attachment.cgi?id=25672 -O up1.patch
wget http://bugs2.winehq.org/attachment.cgi?id=27672 -O up2.patch

now we patch the wine source
Code:

patch -p1 < up1.patch
patch -p1 < up2.patch

both should tell you that it successfully patched your wine. now compile wine:
Code:

./configure && make depend && make && sudo make install

now wait, this could take up to 20 minutes on older machines. once installed
Code:

winecfg

this will configure your wine. click yes to install gecko and wait until this is completed.
okay, now navigate wherever you put winetricks, we will need to install several things here:
Code:

./winetricks d3dx9
./winetricks vcrun2005
./winetricks adobeair
./winetricks ie6

if all install successfully, you should be able to then navigate to the folder and run lol.launcher.exe
Code:

wine lol.launcher.exe

Create a practice game and enjoy. It is glitchy and most likely unplayable, but it is the first step at making this work. Thanks to all the people at wine and users for taking the time to do this.

NOTE: This was done under Slackware Linux 13.

Citeer

Aangepast door lechatsauvage

naab Woensdag 13 Juni\ 2012 om 19:38
naabAnonymous

Just to add something to the previous post.

now wait, this could take up to 20 minutes on older machines. once installed

Citeer





To avoid the 20 minutes.

./configure && make -j 8 depend && make -j 8 && sudo make install



-j arg allow parallelism on the make command, and then reduce the time by 8 (actually depends on the number of processors and such, but still more effective than a simple make).

Aangepast door naab

petch Woensdag 13 Juni\ 2012 om 20:44
petch


Or even faster, use the install script in Testing category.
This thread is 4 months old.