Page 1 of 4 123 ... LastLast
Results 1 to 10 of 39

Thread: game maker 8.1 WINE

  1. #1
    Join Date
    Mar 2012
    Location
    the Shire
    Beans
    225
    Distro
    Ubuntu 12.04 Precise Pangolin

    game maker 8.1 WINE

    I'm new to Linux, (Ubuntu 11.10) and was attempting to install game maker 8.1 with wine (i couldn't find any earlier versions with working download links) unfortunately, when i try to open the game maker EXE with wine, nothing happens.
    i have tried lateralgm, but the lack of ability to run the gmk file is a major problem..
    is there anyway to run the executables with lateralgm? or get gamemaker working? (assuming you can run the .gmk using gamemaker through wine)
    any help appreciated..

  2. #2
    Join Date
    Feb 2010
    Location
    In My Food Forest
    Beans
    9,318

    Re: game maker 8.1 WINE

    Moved to Wine
    Cheers & Beers, uRock
    [SIGPIC][/SIGPIC]

  3. #3
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: game maker 8.1 WINE

    Have you tried following the HOWTO at this page? http://appdb.winehq.org/objectManage...sion&iId=23252

  4. #4
    Join Date
    Mar 2012
    Location
    the Shire
    Beans
    225
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: game maker 8.1 WINE

    yes.. it works okay until i try to run the game.. then there's an error dialog box "there is something seriously wrong with the program helloworldgame.exe or a problem with wine the program will shut down now." then wine is stuck open, because gamemaker keeps trying to save before wine closes, but it doesn't work..
    Last edited by gandalf3; March 31st, 2012 at 09:52 PM. Reason: smilies didn't display..

  5. #5
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: game maker 8.1 WINE

    Yes. According to that same link, running your created games doesn't work. You might want to create a bug report over at wineappdb and see if the wine devs will consider fixing it.

    As an alternative, you could consider using virtualbox to create a Window VM and running the program in there.

  6. #6
    Join Date
    Mar 2012
    Location
    the Shire
    Beans
    225
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: game maker 8.1 WINE

    to do that, i would have to mess with windows..
    hmm.. i thought there might be some "add on" or something to run games created with lateralgm, but i never actually found anything..
    oh well..
    i guess i'll have to learn a real programming language. (i was planing to do that anyway, but..)

  7. #7
    Join Date
    Mar 2012
    Location
    the Shire
    Beans
    225
    Distro
    Ubuntu 12.04 Precise Pangolin

    Lateralgm - ENIGMA

    well.. i found this page sort of by accident the other day..
    http://enigma-dev.org/docs/Wiki/Install:Git

    and it looks like it will run the exe (i hope)
    but i can't make much sense out of the "git client" and everything else..
    could somebody explain how i go about installing this?
    Thanks.
    (sorry to be such a noob..)
    Intel Pentium 4 Asus P5N32-SLI DELUXE Nvidia nx7900GT 3GB Ram Western Digital WD2500AAKX 250GB Seagate Barracuda 80GB, 160GB Ubuntu 12.04 Arch

  8. #8
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Lateralgm - ENIGMA

    To get the linux dev port installed, do the following:

    1. Install git:
    Code:
    sudo apt-get install git
    2. Pull the git code:
    Code:
    mkdir ~/enigma_git
    cd ~/enigma_git
    git clone git://github.com/enigma-dev/enigma-dev.git
    3. Obtain additional dependencies:
    Code:
    cd enigma-dev
    python install.py
    4. Run enigma:
    Code:
    cd ~/enigma_git/enigma-dev
    java -jar lgm16b4.jar
    ...Note: on the first run, it will compile the necessary library code (took a couple of minutes on my system).

    5. Try to load a project and see if it works. I'm sorry but I don't have any projects to test.

    ----------------------------------

    Other notes: To update the git source code (to get the latest source updates):
    Code:
    cd ~/enigma_git/enigma-dev
    git pull

  9. #9
    Join Date
    Mar 2012
    Location
    the Shire
    Beans
    225
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Lateralgm - ENIGMA

    when i did
    Code:
    python install.py
    i got

    Code:
    ~/enigma_git/enigma-dev$ python install.py
    Enigma package manager
    Traceback (most recent call last):
      File "install.py", line 5, in <module>
        webFile = urllib.urlopen(url)
      File "/usr/local/lib/python2.7/urllib.py", line 86, in urlopen
        return opener.open(url)
      File "/usr/local/lib/python2.7/urllib.py", line 204, in open
        return self.open_unknown(fullurl, data)
      File "/usr/local/lib/python2.7/urllib.py", line 216, in open_unknown
        raise IOError, ('url error', 'unknown url type', type)
    IOError: [Errno url error] unknown url type: 'https'
    was that supposed to happen? (something tells me it wasn't..)
    Intel Pentium 4 Asus P5N32-SLI DELUXE Nvidia nx7900GT 3GB Ram Western Digital WD2500AAKX 250GB Seagate Barracuda 80GB, 160GB Ubuntu 12.04 Arch

  10. #10
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: Lateralgm - ENIGMA

    How have you installed python 2.7? It seems to be located in your /usr/local tree. The default python 2.7 install just goes in the /usr tree.

    What does the following return:
    Code:
    apt-cache policy python2.7
    I think you may need to have python-httplib2 installed or python compiled with ssl support.

Page 1 of 4 123 ... LastLast

Tags for this Thread

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
  •