I think they will fix it as soon as possible...
Announcement
Collapse
No announcement yet.
SACRED newest patch1.55beta9 prevents emulation
Collapse
X
-
i used to play sacred with an rmps copy and, since 1.6 in conjunction with daemonscript, as described in some other thread.
today i read a lot about blacklists of daemonscript. though i cannot conform this, i wrote a small script for the windows scriptting host. perhaps you'll need to adjust the folder to correctly locate the d-tools.
place in in your game folder and execute it. needs windows scripting host to run. wonder if they'll blacklist that, too!
save the following as sacred.js in your game folder
//SCRIPT
RunSacred();
function RunSacred()
{
var WSHShell = WScript.CreateObject("WScript.Shell");
var i;
WSHShell.Run("c:\\Programme\\D-Tools\\daemon.exe -rmps on",1,1)
WSHShell.Run("sacred.exe",1,0)
for (i=0; i<50; i++)
{
WScript.Sleep(500)
WSHShell.Run("c:\\Programme\\D-Tools\\daemon.exe -rmps on")
}
}
//END SCRIPT
works fine!Mounty Bob strikes back
Comment
-
Originally Posted by CongoMani used to play sacred with an rmps copy and, since 1.6 in conjunction with daemonscript, as described in some other thread.
today i read a lot about blacklists of daemonscript. though i cannot conform this, i wrote a small script for the windows scriptting host. perhaps you'll need to adjust the folder to correctly locate the d-tools.
place in in your game folder and execute it. needs windows scripting host to run. wonder if they'll blacklist that, too!
save the following as sacred.js in your game folder
//SCRIPT
RunSacred();
function RunSacred()
{
var WSHShell = WScript.CreateObject("WScript.Shell");
var i;
WSHShell.Run("c:\\Programme\\D-Tools\\daemon.exe -rmps on",1,1)
WSHShell.Run("sacred.exe",1,0)
for (i=0; i<50; i++)
{
WScript.Sleep(500)
WSHShell.Run("c:\\Programme\\D-Tools\\daemon.exe -rmps on")
}
}
//END SCRIPT
works fine!
Windows Script Host
Script: E:\Program Files\Ascaron Entertainment\Sacred\sacred.js
Line: 8
Char: 1
Error: The system cannot find the file specified
Code: 80070002
Source (null)
I made sure that it was pointed to Daemon tools, and I put the .js file in the folder where sacred.exe is, but other than that, I'm not sure what I could have done wrong. Any ideas?
Comment
-
the .js script works perfectly for me. maybe (i dunno) itґs because of the blanks in the path. i do not have blanks in either path (daemon and sacred). havenґt verified this ґcos iґm at work now, but ...
well, you might want to give it a try.Mounty Bob strikes back
Comment
-
hey ho!
i have forgotten to tell you to to install the scripting host. download http://www.microsoft.com/downloads/d...7-3cffcb0c2524
script will work then!Mounty Bob strikes back
Comment
-
yes, thatґs what i thought, too. but when i tried to reproduce the reported errors on my office computer i was successful (in creating the errors, donґt misunderstand me). so i just gave it a try, installed the wsh and ka-boom, the script worked.Mounty Bob strikes back
Comment
-
The reason its not working is because Xp has a bug and I believe its going to be updated in service pack 2. It can't handle long filenames. Change the script to this:
Yours:
Script: E:\Program Files\Ascaron Entertainment\Sacred\sacred.js
Line: 8
Char: 1
Error: The system cannot find the file specified
Code: 80070002
Source (null)
Correct:
Script: E:\Progra~1\Ascaro~1\Sacred\sacred.js
Change all types to the old dos style filenames.
Btw, this will NOT work with the US copy or ENU copy. D-tools is blacklisted.
Comment
-
Originally Posted by DodgerI tried your script but got the following error message:
Windows Script Host
Script: E:\Program Files\Ascaron Entertainment\Sacred\sacred.js
Line: 8
Char: 1
Error: The system cannot find the file specified
Code: 80070002
Source (null)
I made sure that it was pointed to Daemon tools, and I put the .js file in the folder where sacred.exe is, but other than that, I'm not sure what I could have done wrong. Any ideas?Lumpi
Comment
-
Originally Posted by Twisted EndZThe reason its not working is because Xp has a bug and I believe its going to be updated in service pack 2. It can't handle long filenames. Change the script to this:
Yours:
Script: E:\Program Files\Ascaron Entertainment\Sacred\sacred.js
Line: 8
Char: 1
Error: The system cannot find the file specified
Code: 80070002
Source (null)
Correct:
Script: E:\Progra~1\Ascaro~1\Sacred\sacred.js
Change all types to the old dos style filenames.
Btw, this will NOT work with the US copy or ENU copy. D-tools is blacklisted.
Comment
Comment