BIS fnc spawnEnemy: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> " to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments \("local" or "global"\)|Multiplayer Effects \("local" or "global"\)|Multiplayer Execution \("server" o...)
Line 1: Line 1:
{{Function|Comments=
{{Function


| arma2oa |Game name=
| arma2oa


|1.51|= Game version
|1.51|= Game version


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


| Constantly spawns enemies around a player according to array of enemy classes. The units will try to hunt down the player. |DESCRIPTION=
| 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]] |SYNTAX=
| [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''', {{Inline code|_players}}&nbsp;)
|pr= This function displays an error every time (at least in {{arma3}}) as it uses an undefined variable (typo '''line 30''', {{Inline code|_players}}&nbsp;)


|p1= aPlayer: [[Object]] - player |PARAMETER1=
|p1= aPlayer: [[Object]] - player


|p2= target: [[Object]] - refence object (enemies will be spawned on same direction in respect to the player) |PARAMETER2=
|p2= target: [[Object]] - refence object (enemies will be spawned on same direction in respect to the player)


|p3= side: [[Side]] - side of the spawned enemies |PARAMETER3=
|p3= side: [[Side]] - side of the spawned enemies


|p4= classes: [[Array]] of [[String]] - list of enemy classes (units will form a group together) |PARAMETER4=
|p4= classes: [[Array]] of [[String]] - list of enemy classes (units will form a group together)


|p5= maxEnemies: [[Number]] - (Optional, default 10) maximum number of enemies at once |PARAMETER5=
|p5= maxEnemies: [[Number]] - (Optional, default 10) maximum number of enemies at once


|p6= delay: [[Number]] - (Optional, default 30) time between spawn waves |PARAMETER6=
|p6= delay: [[Number]] - (Optional, default 30) time between spawn waves


|p7= code: [[Code]] - (Optional, default {}) - code to execute on each unit (referenced by [[_this]]) |PARAMETER7=
|p7= code: [[Code]] - (Optional, default {}) - code to execute on each unit (referenced by [[_this]])


| [[Nothing]] |RETURNVALUE=
| [[Nothing]]


|exec= spawn |Execution=
|exec= spawn |Execution=


|x1= <code>[<nowiki/>[[player]], [[player]], [[opfor]], ["O_Soldier_F"]] [[spawn]] [[BIS_fnc_spawnEnemy]];</code> |EXAMPLE1=
|x1= <code>[<nowiki/>[[player]], [[player]], [[opfor]], ["O_Soldier_F"]] [[spawn]] [[BIS_fnc_spawnEnemy]];</code>


| [[BIS_fnc_spawnGroup]], [[BIS_fnc_stalk]] |SEEALSO=
| [[BIS_fnc_spawnGroup]], [[BIS_fnc_stalk]]
}}
}}



Revision as of 00:46, 18 January 2021

Hover & click on the images for description

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 String - 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

Bottom Section