Difference between revisions of "VN fnc revive action withstand"

From Savage Game Design Wiki
Jump to navigation Jump to search
m (Text replacement - "]]; |p1n=" to "]] |p1n=")
(Page filling)
 
Line 1: Line 1:
[[Category:TODO]]
 
 
{{Function
 
{{Function
  
Line 8: Line 7:
 
|a=
 
|a=
  
|e=
+
|e= global
  
 
|g1= advanced_revive_functions
 
|g1= advanced_revive_functions
  
|d= <pre>/*
+
|d= Main player withstand action function.
        FILE: fn_revive_action_withstand.sqf
 
        DATE: 18-05-2020
 
        AUTHOR: Ethan Johnson
 
  
        DESCRIPTION:
+
|s= [unused, type] call [[VN_fnc_revive_action_withstand]]
                Main player withstand action function
 
        PARAMETERS:
 
                (0): OBJECT - The unit that the action is being performed on
 
                (1): NUMBER - The type of action that is being performed
 
        RETURNS:
 
                BOOL
 
*/
 
</pre><small>''(Placeholder description extracted from the function header by '''LM_exportFunctionsToWiki.sqf''')''</small>
 
  
|s= [] call [[VN_fnc_revive_action_withstand]]
+
|p1n= unused
 
+
|p1t= object
|p1n=
+
|p1d= (Optional, unused - defaults to {{Biki|player}}) the unit that the action is being performed on
|p1t=
 
|p1d=
 
 
|p1v=
 
|p1v=
  
|p2n=
+
|p2n= type
|p2t=
+
|p2t= number
|p2d=
+
|p2d= the type of performed action:
 +
* 1: action started
 +
* 2: action tick (see [[VN_fnc_holdActionAdd]])
 +
* 3: action completed
 +
* 4: action interrupted
 
|p2v=
 
|p2v=
  
|r1t=
+
|r1t= boolean
|r1d=
+
|r1d= {{Biki|true}} when done
 
+
|x1= <code>[objNull, 3] call [[VN_fnc_revive_action_withstand]];</code>
|x1= <code>-</code>
 
 
}}
 
}}

Latest revision as of 17:43, 30 January 2021

← back to Functions Introduced in S.O.G. Prairie Fire v1.00
by Ethan Johnson
Argument(s): n/a
Effect(s): global

Description

Main player withstand action function.

Syntax

Syntax
[unused, type] call VN_fnc_revive_action_withstand
Parameters
unused: Object - (Optional, unused - defaults to player) the unit that the action is being performed on
type: Number - the type of performed action:
  • 1: action started
  • 2: action tick (see VN_fnc_holdActionAdd)
  • 3: action completed
  • 4: action interrupted
Return value
Boolean - true when done

Examples

Example 1
[objNull, 3] call VN_fnc_revive_action_withstand;