Is it possible for a script to be made into an .exe file?
So what I'm trying to do is make a portable version of my script in one single .exe file. So when I click that file it starts simba and the script starts.
Just wondering.
Printable View
Is it possible for a script to be made into an .exe file?
So what I'm trying to do is make a portable version of my script in one single .exe file. So when I click that file it starts simba and the script starts.
Just wondering.
I just want to do this for one of my scripts that I made though, one I wouldn't release.
I think you can start simba with a batch file and give it the script to run as a parameter.
Yes it can be done..
Download Winrar, put the script in your scripts folder. Create a C++ file with something similar to:
system("Simba.exe -o scriptname.simba -r");
or
CreateProcess("Simba.exe", "-o scriptname.simba -r", ..........);
Place it in the Simba folder and zip it with Winrar. Enable Auto-exec on the rar file.
When you double click it, your script will run.