fire: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(changed weapons link from OFP to category page)
m (Text replacement - "\{\{Feature *\| *Informative *\| ([^↵]+) *\}\}" to "{{Feature|informative|$1}}")
 
(125 intermediate revisions by 26 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| ofp |= Game name
|game1= ofp
|version1= 1.00


|1.00|= Game version
|game2= ofpe
|version2= 1.00


|arg= global |= Arguments in MP
|game3= arma1
|version3= 1.00


|eff= global |= Effects in MP
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| Forces a unit to fire the given weapon. |= Description
|game5= arma2oa
____________________________________________________________________________________________
|version5= 1.50


| unit '''fire''' weapon |= Syntax
|game6= tkoh
|p1= unit: [[Object]] - unit that's supposed to fire |= Parameter 1
|version6= 1.00
|p2= weapon: [[String]] - name of the weapon to be fired |= Parameter 2
| [[Nothing]] |= Return value
____________________________________________________________________________________________


|s2 = unit '''fire''' array |= Syntax
|game7= arma3
|p21 = unit: [[Object]]
|version7= 0.50
|p22 = array: [[Array]] - in format [muzzle, mode, magazine] or [muzzle, mode].
|r2 = [[Nothing]] |= Return value
____________________________________________________________________________________________
 
|x1= <code>soldier fire "M16"</code> |= Example 1
|x2= <code>soldier fire ["throw","SmokeShell","SmokeShell"]</code> |= Example 2
____________________________________________________________________________________________


| [[:Category:Weapons]]<br /> [[doFire]], [[commandFire]] |= See also
|arg= local


|eff= global
|gr1= Unit Control
|gr2= Weapons
|descr= Forces a unit to fire the given weapon.
{{Feature|informative|Just like with [[forceWeaponFire]] it is possible to pass remote unit as argument, but this could be unreliable. Considering this command might need to be used in combination with [[selectWeapon]], which takes only [[Multiplayer Scripting#Locality|local]] arguments, it would make sense to execute the [[fire]] command where the unit is [[Multiplayer Scripting#Locality|local]] as well.}}
|s1= unit [[fire]] muzzle
|p1= unit: [[Object]] - unit that is supposed to fire
|p2= muzzle: [[String]] - name of the muzzle to be fired
|r1= [[Nothing]]
|s2= unit [[fire]] [muzzle, mode, magazine]
|p21= unit: [[Object]]
|p22= muzzle: [[String]]
|p23= mode: [[String]]
|p24= magazine: [[String]] - (Optional)
|r2= [[Nothing]]
|x1= <sqf>_soldier fire "M16";</sqf>
|x2= <sqf>_soldier fire "SmokeShellMuzzle";</sqf>
|x3= <sqf>_soldier fire ["SmokeShellMuzzle", "SmokeShellMuzzle", "SmokeShellRed"];</sqf>
|x4= <sqf>player playActionNow "PutDown";
player selectWeapon "DemoChargeMuzzle";
player fire ["DemoChargeMuzzle", "DemoChargeMuzzle", "DemoCharge_Remote_Mag"];
player setWeaponReloadingTime [player, "DemoChargeMuzzle", 0];</sqf>
|seealso= [[BIS_fnc_fire]] [[doFire]] [[commandFire]] [[canFire]] [[fireAtTarget]] [[forceWeaponFire]] [[commandArtilleryFire]] [[commandSuppressiveFire]] [[doArtilleryFire]] [[doSuppressiveFire]] [[isManualFire]] [[selectWeapon]] [[ArmA:_Actions#USEWEAPON|action ["UseWeapon"]]] [[:Category:Weapons]]
}}
}}


<h3 style="display:none">Notes</h3>
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
 
<dd class="notedate">Posted on August 17, 2006 - 08:18</dd>
<dt></dt>
<dt class="note">'''[[User:Str|Str]]'''</dt><dd class="note">Sometimes AI won't shoot when you use this command. It can be fixed by placing [[selectWeapon]] command before it.</dd>
<dd class="notedate">Posted on 2006-08-17</dd>
<!-- Note Section END -->
<dt class="note">[[User:Str|Str]]</dt>
<dd class="note">Sometimes AI won't shoot when you use this command. It can be fixed by placing [[selectWeapon]] command before it.</dd>
 
<dt><dt>
<dd class="notedate">Posted on 2007-02-02</dd>
<dt class="note">[[User:Ceeeb|Ceeeb]]</dt>
<dd class="note">
In '''OFP v1.96''', when a [[Operation_Flashpoint:_CfgVehicles#Man_Class_Vehicles|man]] class unit is given this command, he will aim up in the air before firing his weapon. This makes it rather useless if you want to make him shoot a target. It does work with vehicles, when the vehicle is first given a [[doWatch]] or [[doTarget]]  command.
</dd>
 
<dt><dt>
<dd class="notedate">Posted on 2007-01-20</dd>
<dt class="note">[[User:Bdfy|Bdfy]]</dt>
<dd class="note">In '''ArmA v1.02''', this command is not working with weapons in the secondary turrets (like "DSHKM" in T-72)</dd>
 
<dt><dt>
<dd class="notedate">Posted on 2008-01-15</dd>
<dt class="note">[[User:Kronzky|Kronzky]]</dt>
<dd class="note">
To place a satchel (pipebomb) the syntax is:<br>
'''OFP''': unitname Fire ["put", "pipebomb"]<br>
'''ArmA''': unitname Fire ["pipebombmuzzle", "pipebombmuzzle", "pipebomb"];<br>
''The triggering is done via a "[[Armed_Assault:_Actions_List#TOUCHOFF|TOUCHOFF]]" action.''
</dd>
 
<dt><dt>
<dd class="notedate">Posted on 2010-03-18</dd>
<dt class="note">[[User:Mr.g-c|Mr.g-c]]</dt>
<dd class="note">In {{arma2}}, AI will automatically shoot straight up. Command seems to be broken.</dd>
 
<dt><dt>
<dd class="notedate">Posted on 2010-11-24</dd>
<dt class="note">[[User:Mikhail|Mikhail]]</dt>
<dd class="note">Command is broken - confirmed. Use action [[ArmA:_Actions#USEWEAPON|"USEWEAPON"]] instead.
Place a game logic in the editor. Name it '''MyGameLogic'''.
Use this code to make '''unit1''' fire his primaryweapon:
<sqf>MyGameLogic action ["useWeapon", primaryWeapon unit1, unit1, 0];</sqf></dd>
 
<dt><dt>
<dd class="notedate">Posted on 2011-02-25</dd>
<dt class="note">[[User:kju|kju]]</dt>
<dd class="note">Command works just fine in A2/OA. Make sure to execute it on '''local''' AI.</dd>
 
<dt><dt>
<dd class="notedate">Posted on 2012-04-06</dd>
<dt class="note">[[User:Max Power|Max Power]]</dt>
<dd class="note">If it did work at one time, it does no longer.  The AI (or player) is forced to look upwards or reacts to a massive recoil force before getting his shot off.</dd>
 
<dt><dt>
<dd class="notedate">Posted on 2013-02-16</dd>
<dt class="note">[[User:hcpookie|hcpookie]]</dt>
<dd class="note">Command did not work with {{Name|arma2acr|short}} v1.62.  Use [[fireAtTarget]] instead.</dd>
 
<dt></dt>
<dd class="notedate">Posted on 2014-06-04 - 21:14 (UTC)</dd>
<dt class="note">[[User:Killzone_Kid|Killzone_Kid]]</dt>
<dd class="note">
In {{arma3}} in order for AI to place Claymore, for example, it is necessary to execute 3 statements - an animation, weapon select and the actual [[fire]] command. Animation is most likely for forcing unit to leave rest state, weapon select and fire kinda both go together anyway:
<sqf>_unit playActionNow "PutDown";
_unit selectWeapon "DirectionalMineRemoteMuzzle";
_unit fire [
"DirectionalMineRemoteMuzzle",
"DirectionalMineRemoteMuzzle",
"ClaymoreDirectionalMine_Remote_Mag"
];</sqf>
</dd>
 
<dt><dt>
<dd class="notedate">Posted on 2017-11-25</dd>
<dt class="note">[[User:SteveStevenson|Steve]]</dt>
<dd class="note">
In {{arma3}}, as of version 1.76, examples 2 and 3 in the section above for smoke grenades are no longer working.
As a workaround (throwing green smoke grenades for example), you can use:
<sqf>[_soldier, "SmokeShellGreenMuzzle"] call BIS_fnc_fire;</sqf></dt>
</dd>
 
</dl>
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|FIRE]]
[[Category:Scripting Commands OFP 1.96|FIRE]]
[[Category:Scripting Commands OFP 1.46|FIRE]]
[[Category:Scripting Commands ArmA|FIRE ]]

Latest revision as of 19:11, 15 March 2024

Hover & click on the images for description

Description

Description:
Forces a unit to fire the given weapon.
Just like with forceWeaponFire it is possible to pass remote unit as argument, but this could be unreliable. Considering this command might need to be used in combination with selectWeapon, which takes only local arguments, it would make sense to execute the fire command where the unit is local as well.
Groups:
Unit ControlWeapons

Syntax

Syntax:
unit fire muzzle
Parameters:
unit: Object - unit that is supposed to fire
muzzle: String - name of the muzzle to be fired
Return Value:
Nothing

Alternative Syntax

Syntax:
unit fire [muzzle, mode, magazine]
Parameters:
unit: Object
muzzle: String
mode: String
magazine: String - (Optional)
Return Value:
Nothing

Examples

Example 1:
_soldier fire "M16";
Example 2:
_soldier fire "SmokeShellMuzzle";
Example 3:
_soldier fire ["SmokeShellMuzzle", "SmokeShellMuzzle", "SmokeShellRed"];
Example 4:
player playActionNow "PutDown"; player selectWeapon "DemoChargeMuzzle"; player fire ["DemoChargeMuzzle", "DemoChargeMuzzle", "DemoCharge_Remote_Mag"]; player setWeaponReloadingTime [player, "DemoChargeMuzzle", 0];

Additional Information

See also:
BIS_fnc_fire doFire commandFire canFire fireAtTarget forceWeaponFire commandArtilleryFire commandSuppressiveFire doArtilleryFire doSuppressiveFire isManualFire selectWeapon action ["UseWeapon"] Category:Weapons

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
Posted on 2006-08-17
Str
Sometimes AI won't shoot when you use this command. It can be fixed by placing selectWeapon command before it.
Posted on 2007-02-02
Ceeeb
In OFP v1.96, when a man class unit is given this command, he will aim up in the air before firing his weapon. This makes it rather useless if you want to make him shoot a target. It does work with vehicles, when the vehicle is first given a doWatch or doTarget command.
Posted on 2007-01-20
Bdfy
In ArmA v1.02, this command is not working with weapons in the secondary turrets (like "DSHKM" in T-72)
Posted on 2008-01-15
Kronzky
To place a satchel (pipebomb) the syntax is:
OFP: unitname Fire ["put", "pipebomb"]
ArmA: unitname Fire ["pipebombmuzzle", "pipebombmuzzle", "pipebomb"];
The triggering is done via a "TOUCHOFF" action.
Posted on 2010-03-18
Mr.g-c
In Arma 2, AI will automatically shoot straight up. Command seems to be broken.
Posted on 2010-11-24
Mikhail
Command is broken - confirmed. Use action "USEWEAPON" instead. Place a game logic in the editor. Name it MyGameLogic. Use this code to make unit1 fire his primaryweapon:
MyGameLogic action ["useWeapon", primaryWeapon unit1, unit1, 0];
Posted on 2011-02-25
kju
Command works just fine in A2/OA. Make sure to execute it on local AI.
Posted on 2012-04-06
Max Power
If it did work at one time, it does no longer. The AI (or player) is forced to look upwards or reacts to a massive recoil force before getting his shot off.
Posted on 2013-02-16
hcpookie
Command did not work with Arma 2:ACR v1.62. Use fireAtTarget instead.
Posted on 2014-06-04 - 21:14 (UTC)
Killzone_Kid
In Arma 3 in order for AI to place Claymore, for example, it is necessary to execute 3 statements - an animation, weapon select and the actual fire command. Animation is most likely for forcing unit to leave rest state, weapon select and fire kinda both go together anyway:
_unit playActionNow "PutDown"; _unit selectWeapon "DirectionalMineRemoteMuzzle"; _unit fire [ "DirectionalMineRemoteMuzzle", "DirectionalMineRemoteMuzzle", "ClaymoreDirectionalMine_Remote_Mag" ];
Posted on 2017-11-25
Steve
In Arma 3, as of version 1.76, examples 2 and 3 in the section above for smoke grenades are no longer working. As a workaround (throwing green smoke grenades for example), you can use:
[_soldier, "SmokeShellGreenMuzzle"] call BIS_fnc_fire;