Project64 2.2

Get answers to questions about using mGalaxy.
Post Reply
Spyke
Newbie
Newbie
Posts: 26
Joined: Wed Mar 25, 2015 7:11 pm

Hi,

is somebody running Project64 2.2 with mGALAXY?
I tried it with several scripts:
http://www.mgalaxy.com/forum/index.php?topic=435.0
and

Code: Select all

HotKeySet("{ESC}", "Terminate")
    $path = "C:\Programme\Project64 2.2\"
    $app = "Project64.exe"

    If $CmdLine[0] == 1 Then
        $PID = Run( $path & $app & ' "' & $CmdLine[1] & '"', $path)
        While 1
              Sleep(100)
        WEnd
    EndIf
    Func Terminate()
        While ProcessExists ( $PID )
            ProcessClose ( $PID )
        WEnd
        Exit 0
    EndFunc
Thanks for your help.

Marc
Spyke
Newbie
Newbie
Posts: 26
Joined: Wed Mar 25, 2015 7:11 pm

Solved!
User avatar
mgalaxy
Administrator
Administrator
Posts: 1189
Joined: Tue Dec 05, 2006 7:46 pm

Can you explain what was your problem and how you did solve it? Is there something we should know to adapt our script?
Thanks!!
Spyke
Newbie
Newbie
Posts: 26
Joined: Wed Mar 25, 2015 7:11 pm

The problem was cused by me >:(
I point mGALAXY to the wrong exe file.....
This script works with project64 2.2
http://www.mgalaxy.com/forum/index.php?topic=435.0

But I have an other problem with my favorit gfx plugin glide64.
By finishing p64 from mGALAXY, the display stays brighter when using glide64. With Jabo's plugin it works.
Not a major problem, but maybe there is a solution for this. The plugins I use are the latest ones hat came with p64.
Post Reply