C2lhu |
Samedi 3 Avril 2010 à 19:32
|
C2lhu
|
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 |
Dimanche 4 Avril 2010 à 10:28
|
DirtyNerd
|
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. Edité par DirtyNerd
|
Dr Phil |
Dimanche 4 Avril 2010 à 19:29
|
Dr Phil
|
(Free as in free beer, but nor free as in free speech!)
|
C2lhu |
Vendredi 9 Avril 2010 à 0:06
|
C2lhu
|
thx man I'll give it a try :)
|
razcasar |
Dimanche 15 Aoüt 2010 à 14:15
|
razcasar
|
Since HoN began to cost money the people need league of legends, besides, lol is more entertaining
|
Auth3ntic0 |
Lundi 16 Aoüt 2010 à 9:30
|
Auth3ntic0
|
Since HoN began to cost money the people need league of legends, besides, lol is more entertaining
And much easier to play and more user friendly than Heroes of Newerth. Will keep an eye on this topic. ;-)
|
Oculus |
Lundi 20 September 2010 à 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. :) Edité par Oculus
|
caligoanimus |
Dimanche 26 Décembre 2010 à 21:34
|
caligoanimus
|
Bump
I too would love for LoL to be a part of Play On Linux.
|
rodvil |
Dimanche 2 Janvier 2011 à 5:34
|
rodvil
|
Same here... I would love to play this one!
|
PNO3000 |
Jeudi 17 Février 2011 à 18:05
|
PNO3000
|
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 |
Mardi 22 Février 2011 à 21:23
|
lechatsauvage
|
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. Edité par lechatsauvage
|
naab |
Mercredi 13 Juin 2012 à 19:38
|
naab
|
Just to add something to the previous post.
now wait, this could take up to 20 minutes on older machines. once installed 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). Edité par naab
|
petch |
Mercredi 13 Juin 2012 à 20:44
|
petch
|
Or even faster, use the install script in Testing category. This thread is 4 months old.
|