Few more notes:
If your installation path has a space in it, such as:
- Code: Select all
C:\Program Files (x86)\Innerspace\Innerspace.exe
Then it will be quoted (and has to be quoted because of the space). If it is in quotes, then you can only allow 1 "option" after the quotes.
No space in pathFor people who do NOT have a space in their path, they can have more than 1 "option".
The following will work fine for someone with no path:
- Code: Select all
C:\Games\Innerspace\Innerspace.exe -32bit
- Would load Innerspace as 32bit if not already loaded.
- Code: Select all
C:\Games\Innerspace\Innerspace.exe -32bit runscript eq2ogrecommon/ogreconnect
- Would load Innerspace as 32bit if not already loaded AND run OgreConnect (for connecting uplinks).
- Code: Select all
C:\Games\Innerspace\Innerspace.exe -32bit runscript eq2ogrecommon/OgreAutoLogin/AutoLogin MyBadAssGroup
- Would load Innerspace as 32bit if not already loaded AND launch OgreAutoLogin with the profile "MyBadAssGroup".
Space in pathFor people WITH a space in their path, the following will work.
- Code: Select all
"C:\Program Files (x86)\Innerspace\Innerspace.exe" -32bit
- Would load Innerspace as 32bit if not already loaded.
- Code: Select all
"C:\Program Files (x86)\Innerspace\Innerspace.exe" runscript eq2ogrecommon/ogreconnect
- Would load Innerspace as 64bit if not already loaded AND run OgreConnect (for connecting uplinks).
- Code: Select all
"C:\Program Files (x86)\Innerspace\Innerspace.exe" runscript eq2ogrecommon/OgreAutoLogin/AutoLogin MyBadAssGroup
- Would load Innerspace as 64bit if not already loaded AND launch OgreAutoLogin with the profile "MyBadAssGroup".
You should take special note that there is no -32bit on the last 2 examples. This means you HAVE to load Innerspace as a 32 bit BEFORE using either of these links.