setSkill: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<h3 style="display:none">Bottom Section</h3> " to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame( +[0-9])?|Game [Vv]ersion( +[0-9])?|Game Version \(number surrounded by NO SPACES\)|Arguments in MP|MP[Aa]rg|Multiplayer Arguments( \("local" or "global"\))?|Effects|Execution|Effects...)
Line 1: Line 1:
{{Command|Comments=
{{Command


| ofpr |Game name=
| ofpr


| 1.75 |Game version=
| 1.75


|gr1= Object Manipulation |GROUP1=
|gr1= Object Manipulation


| Sets ability level of person (commander unit). Value of skill may vary from 0 to 1.<br>
| Sets ability level of person (commander unit). Value of skill may vary from 0 to 1.<br>
Line 21: Line 21:
* general
* general
The value of a [[AI Sub-skills|sub-skill]] is interpolated into a range defined in [[CfgAISkill]].
The value of a [[AI Sub-skills|sub-skill]] is interpolated into a range defined in [[CfgAISkill]].
|DESCRIPTION=


| unit [[setSkill]] skill |SYNTAX=


|p1= unit: [[Object]] |PARAMETER1=
| unit [[setSkill]] skill


|p2= skill: [[Number]] in 0..1 range |PARAMETER2=
|p1= unit: [[Object]]


| [[Nothing]] |RETURNVALUE=
|p2= skill: [[Number]] in 0..1 range


|s2= unit [[setSkill]] [skillName, value] |Alternative Syntax=
| [[Nothing]]
 
|s2= unit [[setSkill]] [skillName, value]


|p21= unit: [[Object]] |Alternative Parameter 21=
|p21= unit: [[Object]] |Alternative Parameter 21=
Line 39: Line 39:
|p23= value: [[Number]] in 0..1 range |Alternative Parameter 23=
|p23= value: [[Number]] in 0..1 range |Alternative Parameter 23=


|r2= [[Nothing]] |Alternative Return value=
|r2= [[Nothing]]
   
   
|x1= <code>_hero [[setSkill]] 1;</code> |EXAMPLE1=
|x1= <code>_hero [[setSkill]] 1;</code>


|x2= <code>_finalBoss [[setSkill]] ["reloadSpeed", 0.8]; _finalBoss [[setSkill]] ["aimingSpeed", 0.33];</code> |EXAMPLE2=
|x2= <code>_finalBoss [[setSkill]] ["reloadSpeed", 0.8]; _finalBoss [[setSkill]] ["aimingSpeed", 0.33];</code>


| [[skill]], [[setUnitAbility]], [[Arma 3 AI Skill]], [[ArmA: AI Combat Modes|AI Combat Modes]], [[skillFinal]] |SEEALSO=
| [[skill]], [[setUnitAbility]], [[Arma 3 AI Skill]], [[ArmA: AI Combat Modes|AI Combat Modes]], [[skillFinal]]


}}
}}

Revision as of 12:12, 18 January 2021

Hover & click on the images for description

Description

Description:
Sets ability level of person (commander unit). Value of skill may vary from 0 to 1.
Logo A1 black.png1.00 The alternative syntax allows fine-tuning AI Sub-skills.
Available sub-skills are:
  • aimingAccuracy
  • aimingShake
  • aimingSpeed
  • endurance
  • spotDistance
  • spotTime
  • courage
  • reloadSpeed
  • commanding
  • general
The value of a sub-skill is interpolated into a range defined in CfgAISkill.
Groups:
Object Manipulation

Syntax

Syntax:
unit setSkill skill
Parameters:
unit: Object
skill: Number in 0..1 range
Return Value:
Nothing

Alternative Syntax

Syntax:
unit setSkill [skillName, value]
Parameters:
unit: Object
skillName: String
value: Number in 0..1 range
Return Value:
Nothing

Examples

Example 1:
_hero setSkill 1;
Example 2:
_finalBoss setSkill ["reloadSpeed", 0.8]; _finalBoss setSkill ["aimingSpeed", 0.33];

Additional Information

See also:
skillsetUnitAbilityArma 3 AI SkillAI Combat ModesskillFinal

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Posted on August 4, 2006 - 12:01
hardrock
Approximate ranges are:
  • Novice < 0.25
  • Rookie >= 0.25 and <= 0.45
  • Recruit > 0.45 and <= 0.65
  • Veteran > 0.65 and <= 0.85
  • Expert > 0.85
Posted on June 30, 2007 - 21:16
Kronzky
If "SuperAI" is turned on in the Difficulty Menu, the skill level is always 1, no matter what was defined in the editor or via this command.