R3vo/Sandbox2 – User

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 5: Line 5:
{| class="wikitable"
{| class="wikitable"
|-
|-
! Path Definition !! Explaination
! Path Definition !! Explanation
|-
|-
| <tt>-profiles=c:\games\myProfiles</tt> || -
| <tt>-profiles=c:\games\myProfiles</tt> || -
Line 11: Line 11:
| <tt>"-profiles=c:\My Profiles\profiles"</tt> || If the profile path contains spaces, the whole parameter should be enclosed by quotation marks.
| <tt>"-profiles=c:\My Profiles\profiles"</tt> || If the profile path contains spaces, the whole parameter should be enclosed by quotation marks.
|-
|-
| <tt>-profiles=profiles</tt> || The path defined in the argument can also be interpreted ''relative'' to the <GAME'S> path. Resulting path would be <tt>c:\<gamefolder>\profiles\Users\<playername></tt>.
| <tt>-profiles=profiles</tt> || The path defined in the argument can also be interpreted ''relative'' to the game's path. Resulting path would be <tt>c:\<gamefolder>\profiles\Users\<playername></tt>.
|-
|-
| <tt>-profiles=.</tt> || Would put the user profiles ''directly'' into the game folder: <tt>c:\<gamefolder>\Users\<playername></tt>.
| <tt>-profiles=.</tt> || Would put the user profiles ''directly'' into the game folder: <tt>c:\<gamefolder>\Users\<playername></tt>.
|-
| Example || Example
|-
| Example || Example
|}
|}
The syntax would be, for example,
'''Note:''' If the profile path contains spaces, the whole parameter should be enclosed by quotation marks:
<tt>c:\armed assault\ArmA.exe "-profiles=c:\armed assault\profiles"</tt>
The path defined in the argument can also be interpreted ''relative'' to the ArmA path:
<tt>c:\arma\ArmA.exe -profiles=profiles</tt>
would use the folder <tt>c:\arma\profiles\Users\[playername]</tt>, and
<tt>c:\arma\ArmA.exe -profiles=.</tt>
would put the user profiles ''directly'' into the game folder (<tt>c:\arma\Users\[playername]</tt>).
The way this path is interpreted depends on the game version:
# '''V1.04''' and before: reads the folder <tt>c:\games\armaprofiles\PlayerName</tt>
# '''V1.05''' and later: reads the folder <tt>c:\games\armaprofiles\'''Users'''\PlayerName</tt>
{{GameCategory|ofp| Startup Parameters}}

Revision as of 17:53, 24 May 2021

Description:

Is an Operation Flashpoint launch option -profiles allows you to specify a specific location for player's profile files.

Path Definition Explanation
-profiles=c:\games\myProfiles -
"-profiles=c:\My Profiles\profiles" If the profile path contains spaces, the whole parameter should be enclosed by quotation marks.
-profiles=profiles The path defined in the argument can also be interpreted relative to the game's path. Resulting path would be c:\<gamefolder>\profiles\Users\<playername>.
-profiles=. Would put the user profiles directly into the game folder: c:\<gamefolder>\Users\<playername>.