User Tools

Site Tools


ofp:missions:savestatus

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
ofp:missions:savestatus [2007-07-12 14:35]
ofp:missions:savestatus [2007-07-12 14:35]
snakeman added loadstatus to the same thing
Line 1: Line 1:
 +====== saveStatus ======
  
 +Syntax: object **saveStatus** name
 +
 +Example:
 +
 +<​code>​
 +player saveStatus "​playerstate";​
 +</​code>​
 +
 +This command saves the units status, weapons and equipment he carries, his health status and identity (setIdentity:​ face type and name set previously in description.ext).
 +
 +More examples:
 +
 +<​code>​
 +x = PMC_sf1 saveStatus "​sf1_02";​
 +x = PMC_sf2 saveStatus "​sf2_02";​
 +x = PMC_sf3 saveStatus "​sf3_02";​
 +x = PMC_sf4 saveStatus "​sf4_02";​
 +</​code>​
 +
 +====== loadStatus ======
 +
 +Syntax: object **loadStatus** name
 +
 +Example:
 +
 +<​code>​
 +player loadStatus "​playerstate";​
 +</​code>​
 +
 +This command loads the units status, weapons and equipment he carries, his health status and identity (setIdentity:​ face type and name set previously in description.ext). However these must have been first saved with the above //​saveStatus//​ command.
 +
 +More examples:
 +
 +<​code>​
 +PMC_sf1 loadStatus "​sf1_02";​ PMC_sf1 setdammage 0;
 +PMC_sf2 loadStatus "​sf2_02";​
 +PMC_sf3 loadStatus "​sf3_02";​
 +PMC_sf4 loadStatus "​sf4_02";​
 +
 +{ if (!alive _x) then { deletevehicle _x }; _x setdammage 0 } foreach [PMC_sf2,​PMC_sf3,​PMC_sf4];​
 +</​code>​
 +
 +Notice that there is certain degree of problems if units are damaged in the previous mission, as they start that way in the next one too. Unless the mission specificly is "out in the field" type and not in homebase, you should use the above script to restore the health of the units so they wont start the mission injured.
ofp/missions/savestatus.txt ยท Last modified: 2007-07-12 14:35 (external edit)