I made 1:1 copies of the breath of winter addons using alcohol and blindwrite. I use daemon tools for RMPS emulation, but it gets deactivated at the end of installation of BoW and when I try to run it, and it asks for the original cd.
Then I found a script on these forums to keep activating rmps.
//SCRIPT
RunBoW();
function RunBoW()
{
var WSHShell = WScript.CreateObject("WScript.Shell");
var i;
WSHShell.Run("C:\\Program Files\\D-Tools\\daemon.exe -rmps on",1,1)
WSHShell.Run("C:\\games\\SpellForce\\SpellForce.ex e",1,0)
for (i=0; i<25; i++)
{
WScript.Sleep(2000)
WSHShell.Run("c:\\program files\\D-Tools\\daemon.exe -rmps on")
}
}
//END SCRIPT
When I run this i get an error:
Script: C:\games\SpellForce\spellforce.js
Line: 8
Char:1
Error: The system cannot find the file specified.
Code: 80070002
Source: (null)
The paths in the script are correct though.
Then I found a script on these forums to keep activating rmps.
//SCRIPT
RunBoW();
function RunBoW()
{
var WSHShell = WScript.CreateObject("WScript.Shell");
var i;
WSHShell.Run("C:\\Program Files\\D-Tools\\daemon.exe -rmps on",1,1)
WSHShell.Run("C:\\games\\SpellForce\\SpellForce.ex e",1,0)
for (i=0; i<25; i++)
{
WScript.Sleep(2000)
WSHShell.Run("c:\\program files\\D-Tools\\daemon.exe -rmps on")
}
}
//END SCRIPT
When I run this i get an error:
Script: C:\games\SpellForce\spellforce.js
Line: 8
Char:1
Error: The system cannot find the file specified.
Code: 80070002
Source: (null)
The paths in the script are correct though.
Comment