Page 2 of 7 FirstFirst 1234 ... LastLast
Results 11 to 20 of 65

Thread: HOWTO: Starcraft 2 in WINE

  1. #11
    Join Date
    Mar 2010
    Beans
    1

    Re: HOWTO: Starcraft 2 in WINE

    How to do these below ?
    -----------------------------------------
    navigate to where you put the starcraft installer, and

    Code:
    ls

    using that output, identify the starcraft installer file (should end in .exe)
    replace "starcraft_installer" with the starcraft installer file

    Code:
    WINEPREFIX=~/.wine_starcraft/ wine starcraft_installer

  2. #12
    Join Date
    Jul 2007
    Location
    Alsip, IL
    Beans
    2,027
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO: Starcraft 2 in WINE

    Quote Originally Posted by hugo87 View Post
    Didn't work with wine-1.1.38 (latest in fedora repos)
    Seems like A LOT of work to compile the latest wine development version.
    You need at least 1.1.40 from what I've seen... Compiling Wine from source is not hard on debian based distros, because you just run sudo apt-get build-dep wine

    Yum lacks this feature by default but maybe take a look into using yum-builddep package. Never used it personally, but looks like it might function for Wine to make your building process easy.

    ~Jeff

  3. #13
    Join Date
    Oct 2009
    Beans
    7

    Re: HOWTO: Starcraft 2 in WINE

    Maybe we can do a .pol file for playonLinux ?

    Does anyone know how to do this ?

  4. #14
    Join Date
    Oct 2009
    Beans
    7

    Re: HOWTO: Starcraft 2 in WINE

    Code:
    #!/bin/bash
    # Date: (2009-08-21 19-25)
    # Distribution used to test: Ubuntu - Karmic
    # Wine version used: 1.1.41
    # Author: Deadalnix
    
    #fetching PROGRAMFILES environmental variable
    PROGRAMFILES=`wine cmd /c echo "%ProgramFiles%"`
    PROGRAMFILES=${PROGRAMFILES:3}
    
    #Vérifier que PlayOnLinux est bien exécuté avant
    [ "$PLAYONLINUX" = "" ] && exit 0
    
    #Charger les librairies
    source "$PLAYONLINUX/lib/sources"
    
    Title="Starcraft2 : Beta"
    Prefix="Starcraft2_Beta"
    
    if [ "$POL_LANG" == "fr" ]; then
    LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du jeu sera
    terminée sous peine de devoir recommencer l'installation."
    else
    LNG_WAIT_END="Click on \"Next\" ONLY when the game installation
    is finished or you will have to redo the installation.."
    fi
    
    POL_SetupWindow_Init
    
    #Presentation
    POL_SetupWindow_presentation "$Title" "Blizzard" "http://www.starcraft2.com/" "Deadalnix" "$Prefix"
    
    #Installation de Wine
    POL_SetupWindow_install_wine "1.1.41"
    
    #selectiond e wine
    Use_WineVersion "1.1.41"
    
    #Préparation de Wine
    select_prefixe "$REPERTOIRE/wineprefix/$Prefix"
    POL_SetupWindow_prefixcreate
    
    #install some packages using winetrick
    wget http://winezeug.googlecode.com/svn/trunk/winetricks -O "$REPERTOIRE/ressources/winetricks"
    sh "$REPERTOIRE/ressources/winetricks" droid fontfix fontsmooth-rgb gdiplus gecko vcrun2008 vcrun2005 allfonts d3dx9 win7
    
    #Taille de la mémoire graphique
    POL_SetupWindow_textbox "Your Memory Graphic ?" "Memory Graphic"
    VMS="$APP_ANSWER"
    
    #Réglage DirectDrawRenderer
    cd "$WINEPREFIX/drive_c/windows/temp"
    echo "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]" > OGL.reg
    echo "\"VideoMemorySize\"=\"$VMS\"" >> OGL.reg
    regedit OGL.reg
    
    #Override dll
    echo "[HKEY_CURRENT_USER\\Software\\Wine\\DllOverrides]" > override.reg
    echo "\"mmdevapi\"=\"diabled\"" >> override.reg
    regedit override.reg
    
    #Configuration de Wine
    Set_OS win7
    Set_SoundDriver "alsa"
    
    wine "$REPERTOIRE/ressources/Installer.exe"
    
    POL_SetupWindow_message "$LNG_WAIT_END" "$Title"
    
    #Création Launcher
    POL_SetupWindow_make_shortcut "$Prefix" "$PROGRAMFILES/sc2beta/" "StarCraft II.exe" "" "$Title"
    
    Set_WineVersion_Assign "1.1.41" "$Title"
    
    POL_SetupWindow_Close
    exit
    To make it run in play on linux

    It have to be installed in Program Files/sc2beta to work, so be careful in the installation process.

  5. #15
    Join Date
    Apr 2006
    Beans
    Hidden!
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO: Starcraft 2 in WINE

    Tried the walkthrough, didn't work for me. first tried it with wine 1.1.41 from source, but missing libwine.so.1 (i hate compiling from source, there's always stuff missing), reinstalled wine from repos, used the prefix and the winetricks, got sound working on the login screen, but closes after i put my email address in, not giving any errors in the terminal or a crash report.
    thoughts? something i'm doing wrong?

  6. #16
    Join Date
    Nov 2008
    Location
    S.H.I.E.L.D. 6-1-6
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: HOWTO: Starcraft 2 in WINE

    Quote Originally Posted by carlee View Post
    thats an issue were still working on.
    see
    http://www.carleedolphinaura.co.cc/b...f-liberty-wine

    if you still want to play w/o battle.net
    Quote Originally Posted by cistym View Post
    Tried the walkthrough, didn't work for me. first tried it with wine 1.1.41 from source, but missing libwine.so.1 (i hate compiling from source, there's always stuff missing), reinstalled wine from repos, used the prefix and the winetricks, got sound working on the login screen, but closes after i put my email address in, not giving any errors in the terminal or a crash report.
    thoughts? something i'm doing wrong?
    see above.
    we seem to be having a lot of battle.net issues lately.....

    and no, you havent done anything wrong. I cant log in either.
    Don't waste your energy trying to change opinions ... Do your thing, and don't care if they like it.

  7. #17
    Join Date
    Oct 2009
    Beans
    7

    Re: HOWTO: Starcraft 2 in WINE

    Please let me know any progress you made.

    I have some issue know either with the new SC2 patch. If you find any workaround, I would be happy to integrate this into the PlayOnLinux script

  8. #18
    Join Date
    Oct 2009
    Beans
    7

    Re: HOWTO: Starcraft 2 in WINE

    Ok, I think I have something here !

    Have to make some tests and a tutorial if it work fine.

  9. #19
    Join Date
    Oct 2009
    Beans
    7

    Re: HOWTO: Starcraft 2 in WINE

    http://bit.ly/d66ffj

    And then it run Howevern plan to do it when you have free time, this is quite long.

  10. #20
    Join Date
    Mar 2010
    Beans
    5

    Re: HOWTO: Starcraft 2 in WINE

    So battlenet is finally working but i had heavy graphic problems when i was following the tuturial on winehq so now i am trying to get playonlinux to work without the git package from winehq.how do i add the battlenet script to playonlinux?

    Winehq tutorial:
    http://appdb.winehq.org/objectManage...sion&iId=19376
    Last edited by 1mrfab; April 17th, 2010 at 03:59 PM.

Page 2 of 7 FirstFirst 1234 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •