Every time I try to play a game it comes up
game type not supported by this emulator (.zip)
Now I've tried using the settings for Saint 1.6 as they came but that gives the same error.
Even steem throws up the error?
Any idea's, the script files are unaltered 3.1d ones so I can't see what the issue is. I've tried adding ;ZIP into the types it can read on the emulator setup page.
Nothing seems to work..
Welcome to the Gamebase 64 forums. An attempt to document ALL Commodore 64 gameware before it's too late!
Problem getting Saint 212 to run..
Moderators: Jimbo, Cord, Paul Thompson
- Paul Irvine
- Cool Member
Post
Problem getting Saint 212 to run..
-------
Loved ones are never gone as long as you remember them....
Loved ones are never gone as long as you remember them....
- .mad.
- Honoured Member
- Location: Lancashire
Post
script
Hi Paul,
http://www.zshare.net/download/51802879734a7710/
this contains a sample script and emulator.ini for you to try.
adding ZIP to the ini will only mess it up.
the disk image will not unzip when this file type is added.
this should also work with the "emulator setup wizard".
Good Luck.
http://www.zshare.net/download/51802879734a7710/
this contains a sample script and emulator.ini for you to try.
adding ZIP to the ini will only mess it up.
the disk image will not unzip when this file type is added.
this should also work with the "emulator setup wizard".
Good Luck.
- Paul Irvine
- Cool Member
Post
Thanks .Mad..
Will have a try a little later and let you know..
Many thanks
Will have a try a little later and let you know..
Many thanks
-------
Loved ones are never gone as long as you remember them....
Loved ones are never gone as long as you remember them....
- Paul Irvine
- Cool Member
Post
Something weird is going on, I've tried reinstalling GB1.2, resetting the 3.1d setup from scratch, cleaning out all the dirs so that it's totally the basic as it was meant to be 3.1d install.
The best I can get 2.12 or 1.61 Saint to do is give an error saying a referenced script file is missing (presuming Gamebase.ini) which IS there next to where the Gemu's is pointing to the emulator exe and then saint starts to run but appears to not have a disk installed because after a few drive checks it goes to the desktop.
Now Steem IS working properly so I'm guessing it's down to Saint as opposed to the setup.
Trouble is, I can't remember if Saint ever worked on it?
Any idea's .Mad
used your scripts etc
What's odd is I feel like it's not picking up images from locations ie it might be running in it's Saint dir but it's looking for other files in other places.
The reason I say this is that I found a SaintDefault.rom residing in my D:\ root, Games is on my D:\ drive in the Gamebase folder but why it put a rom there I don't know?
The best I can get 2.12 or 1.61 Saint to do is give an error saying a referenced script file is missing (presuming Gamebase.ini) which IS there next to where the Gemu's is pointing to the emulator exe and then saint starts to run but appears to not have a disk installed because after a few drive checks it goes to the desktop.
Now Steem IS working properly so I'm guessing it's down to Saint as opposed to the setup.
Trouble is, I can't remember if Saint ever worked on it?
Any idea's .Mad
used your scripts etc
What's odd is I feel like it's not picking up images from locations ie it might be running in it's Saint dir but it's looking for other files in other places.
The reason I say this is that I found a SaintDefault.rom residing in my D:\ root, Games is on my D:\ drive in the Gamebase folder but why it put a rom there I don't know?
-------
Loved ones are never gone as long as you remember them....
Loved ones are never gone as long as you remember them....
- .mad.
- Honoured Member
- Location: Lancashire
Post
test
hi Paul,
http://www.zshare.net/download/518440171bb5129e/
this one works for me.
restored all the ini files back to default.
this is setup to be run in...
c:\program files\gamebase\GBST v3.1d\
first run "SainT.exe"
setup your config and TOS.ROM and save it.
at least you got it working with one emulator, so there's no panic.
http://www.zshare.net/download/518440171bb5129e/
this one works for me.
restored all the ini files back to default.
this is setup to be run in...
c:\program files\gamebase\GBST v3.1d\
first run "SainT.exe"
setup your config and TOS.ROM and save it.
at least you got it working with one emulator, so there's no panic.
- Paul Irvine
- Cool Member
Post
Phew...What a long day..
Nothing was working...
Decided to go and get the entire 3.1d setup again (was missing a few games anyway). After hours of unpacking and setting up it only went and worked!
2.12 is now (fingers crossed working nicely thank you..
Ta for all your time and work .Mad...
Put a few more coals on the old fire up there
Nothing was working...
Decided to go and get the entire 3.1d setup again (was missing a few games anyway). After hours of unpacking and setting up it only went and worked!
2.12 is now (fingers crossed working nicely thank you..
Ta for all your time and work .Mad...
Put a few more coals on the old fire up there
-------
Loved ones are never gone as long as you remember them....
Loved ones are never gone as long as you remember them....
- Emulation Freak
- New Member
Post
A Saint Script File
Hi,
Here below a copy the saint script I use with gamebasest.
I presently using v2.13.
;********************************************
;* *
;* Script file for running SainT Emulator. *
;* *
;********************************************
; PLEASE SET YOUR EMULATOR PROPERTIES AS FOLLOWS:
;
; Emulator File: SAINT.EXE
; Associated File: saint.ini (use the one in SainT folder
; due to bug with saint not accepting ini files from other folders).
; Use Short Filenames: NO
; File Types: ST;MSA;STX
;*************************************************************
;*
;* To play STX file please download 'pasti.dll' from saint
;* home page.
;* Then put pasti.dll into saint directory.
;*
;**************************************************************
If GameType CONTAINS(st||msa||stx)
; Use default ini file in saint directory due to bug with saint emulator.
Add_CLP(-autorun saint.ini)
;Set Drive A to selected game image
Set_INI_Value(%emupath%\saint.ini||DISKS||DriveA||"%gamepathfile%")
;Check for Disk B if exists set Drive B
If NumGameFiles > 1
Set_CFG_Value(%emupath%\saint.ini||DriveB||"%gamepathfile(1)%")
End If
; Check for Hard Disk Image. Quit if found as Saint does not support Hard disk images. ;
If Key_Harddisk CONTAINS(Yes)
Show_Message(Saint Emulator can not play Hard Games)
Else
;Run the Emulator
Run_Emulator()
End If
Else
;invalid game file type
Show_Message(GAME_NOT_SUPPORTED%crlfx2%Supported types: ST, MSA, STX with pasti.dll)
End If
Here below a copy the saint script I use with gamebasest.
I presently using v2.13.
;********************************************
;* *
;* Script file for running SainT Emulator. *
;* *
;********************************************
; PLEASE SET YOUR EMULATOR PROPERTIES AS FOLLOWS:
;
; Emulator File: SAINT.EXE
; Associated File: saint.ini (use the one in SainT folder
; due to bug with saint not accepting ini files from other folders).
; Use Short Filenames: NO
; File Types: ST;MSA;STX
;*************************************************************
;*
;* To play STX file please download 'pasti.dll' from saint
;* home page.
;* Then put pasti.dll into saint directory.
;*
;**************************************************************
If GameType CONTAINS(st||msa||stx)
; Use default ini file in saint directory due to bug with saint emulator.
Add_CLP(-autorun saint.ini)
;Set Drive A to selected game image
Set_INI_Value(%emupath%\saint.ini||DISKS||DriveA||"%gamepathfile%")
;Check for Disk B if exists set Drive B
If NumGameFiles > 1
Set_CFG_Value(%emupath%\saint.ini||DriveB||"%gamepathfile(1)%")
End If
; Check for Hard Disk Image. Quit if found as Saint does not support Hard disk images. ;
If Key_Harddisk CONTAINS(Yes)
Show_Message(Saint Emulator can not play Hard Games)
Else
;Run the Emulator
Run_Emulator()
End If
Else
;invalid game file type
Show_Message(GAME_NOT_SUPPORTED%crlfx2%Supported types: ST, MSA, STX with pasti.dll)
End If
Return to “Atari ST - GameBaseST”
Who is online
Users browsing this forum: No registered users and 1 guest