BIS fnc spawnEnemy: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\| *arma2oa * +\| *1.([0-9]{2}) * *\|([^g]|g[^a])" to "| arma2oa |1.$1 |game2= tkoh |version2= 1.00 |game3= arma3 |version3= 0.50 |$2") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 1: | Line 1: | ||
{{RV|type=function | {{RV|type=function | ||
| arma2oa | |game1= arma2oa | ||
|1.51 | |version1= 1.51 | ||
|game2= tkoh | |game2= tkoh | ||
Line 12: | Line 12: | ||
|gr1= Object Manipulation | |gr1= Object Manipulation | ||
| Constantly spawns enemies around a player according to array of enemy classes. The units will try to hunt down the player. | |descr= Constantly spawns enemies around a player according to array of enemy classes. The units will try to hunt down the player. | ||
| [aPlayer, target, side, classes, maxEnemies, delay, code] spawn [[BIS_fnc_spawnEnemy]] | |exec= spawn | ||
|s1= [aPlayer, target, side, classes, maxEnemies, delay, code] spawn [[BIS_fnc_spawnEnemy]] | |||
|pr= This function displays an error every time (at least in {{arma3}}) as it uses an undefined variable (typo '''line 30''', {{ic|_players}} ) | |pr= This function displays an error every time (at least in {{arma3}}) as it uses an undefined variable (typo '''line 30''', {{ic|_players}} ) | ||
Line 24: | Line 26: | ||
|p3= side: [[Side]] - side of the spawned enemies | |p3= side: [[Side]] - side of the spawned enemies | ||
|p4= classes: [[Array]] of [[String]] - list of enemy classes (units will form a group together) | |p4= classes: [[Array]] of [[String]]s - list of enemy classes (units will form a group together) | ||
|p5= maxEnemies: [[Number]] - (Optional, default 10) maximum number of enemies at once | |p5= maxEnemies: [[Number]] - (Optional, default 10) maximum number of enemies at once | ||
Line 34: | Line 36: | ||
|r1= [[Nothing]] | |r1= [[Nothing]] | ||
|x1= <code>[<nowiki/>[[player]], [[player]], [[opfor]], ["O_Soldier_F"]] [[spawn]] [[BIS_fnc_spawnEnemy]];</code> | |||
|seealso= [[BIS_fnc_spawnGroup]], [[BIS_fnc_stalk]] | |seealso= [[BIS_fnc_spawnGroup]], [[BIS_fnc_stalk]] | ||
}} | }} | ||
Revision as of 17:38, 13 June 2021
Description
- Description:
- Constantly spawns enemies around a player according to array of enemy classes. The units will try to hunt down the player.
- Execution:
- spawn
- Problems:
- This function displays an error every time (at least in Arma 3) as it uses an undefined variable (typo line 30,
_players
) - Groups:
- Object Manipulation
Syntax
- Syntax:
- [aPlayer, target, side, classes, maxEnemies, delay, code] spawn BIS_fnc_spawnEnemy
- Parameters:
- aPlayer: Object - player
- target: Object - refence object (enemies will be spawned on same direction in respect to the player)
- side: Side - side of the spawned enemies
- classes: Array of Strings - list of enemy classes (units will form a group together)
- maxEnemies: Number - (Optional, default 10) maximum number of enemies at once
- delay: Number - (Optional, default 30) time between spawn waves
- code: Code - (Optional, default {}) - code to execute on each unit (referenced by _this)
- Return Value:
- Nothing
Examples
- Example 1:
[player, player, opfor, ["O_Soldier_F"]] spawn BIS_fnc_spawnEnemy;
Additional Information
- See also:
- BIS_fnc_spawnGroupBIS_fnc_stalk
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