fire: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...) |
||
Line 1: | Line 1: | ||
{{Command | {{Command | ||
| ofp | | ofp | ||
|1.00 | |1.00 | ||
|arg= local | |arg= local | ||
|eff= global | |eff= global | ||
|gr1= Unit Control | |gr1= Unit Control | ||
|gr2= Weapons | |gr2= Weapons | ||
| Forces a unit to fire the given weapon. See also: [[BIS_fnc_fire]].<br> | | Forces a unit to fire the given weapon. See also: [[BIS_fnc_fire]].<br> | ||
{{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 [[local]] arguments, it would make sense to execute [[fire]] command where unit is also [[local]].}} | {{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 [[local]] arguments, it would make sense to execute [[fire]] command where unit is also [[local]].}} | ||
| unit [[fire]] muzzle | | unit [[fire]] muzzle | ||
|p1= unit: [[Object]] - unit that is supposed to fire | |p1= unit: [[Object]] - unit that is supposed to fire | ||
|p2= muzzle: [[String]] - name of the muzzle to be fired | |p2= muzzle: [[String]] - name of the muzzle to be fired | ||
| [[Nothing]] | | [[Nothing]] | ||
|s2 = unit [[fire]] [muzzle, mode, magazine] | |s2 = unit [[fire]] [muzzle, mode, magazine] | ||
|p21= unit: [[Object]] | |p21= unit: [[Object]] | ||
|p22= [muzzle, mode, magazine]: [[Array]] | |p22= [muzzle, mode, magazine]: [[Array]] | ||
Line 30: | Line 30: | ||
|p24= mode: [[String]] | |p24= mode: [[String]] | ||
|p25= magazine: [[String]] (Optional) | |p25= magazine: [[String]] (Optional) | ||
|r2= [[Nothing]] | |r2= [[Nothing]] | ||
|x1= <code>_soldier [[fire]] "M16";</code> | |x1= <code>_soldier [[fire]] "M16";</code> | ||
|x2= <code>_soldier [[fire]] "SmokeShellMuzzle";</code> | |x2= <code>_soldier [[fire]] "SmokeShellMuzzle";</code> | ||
|x3= <code>_soldier [[fire]] ["SmokeShellMuzzle", "SmokeShellMuzzle", "SmokeShellRed"];</code> | |x3= <code>_soldier [[fire]] ["SmokeShellMuzzle", "SmokeShellMuzzle", "SmokeShellRed"];</code> | ||
|x4= <code>[[player]] [[playActionNow]] "PutDown"; | |x4= <code>[[player]] [[playActionNow]] "PutDown"; | ||
[[player]] [[selectWeapon]] "DemoChargeMuzzle"; | [[player]] [[selectWeapon]] "DemoChargeMuzzle"; | ||
[[player]] [[fire]] ["DemoChargeMuzzle", "DemoChargeMuzzle", "DemoCharge_Remote_Mag"]; | [[player]] [[fire]] ["DemoChargeMuzzle", "DemoChargeMuzzle", "DemoCharge_Remote_Mag"]; | ||
[[player]] [[setWeaponReloadingTime]] [<nowiki/>[[player]], "DemoChargeMuzzle", 0];</code> | [[player]] [[setWeaponReloadingTime]] [<nowiki/>[[player]], "DemoChargeMuzzle", 0];</code> | ||
| [[doFire]], [[commandFire]], [[canFire]], [[fireAtTarget]], [[forceWeaponFire]], [[commandArtilleryFire]], [[commandSuppressiveFire]], [[doArtilleryFire]], [[doSuppressiveFire]], [[isManualFire]], [[selectWeapon]], [[ArmA:_Actions#USEWEAPON|action ["UseWeapon"]]], [[BIS_fnc_fire]], [[:Category:Weapons]] | | [[doFire]], [[commandFire]], [[canFire]], [[fireAtTarget]], [[forceWeaponFire]], [[commandArtilleryFire]], [[commandSuppressiveFire]], [[doArtilleryFire]], [[doSuppressiveFire]], [[isManualFire]], [[selectWeapon]], [[ArmA:_Actions#USEWEAPON|action ["UseWeapon"]]], [[BIS_fnc_fire]], [[:Category:Weapons]] | ||
}} | }} | ||
Revision as of 00:37, 18 January 2021
Description
- Description:
- Forces a unit to fire the given weapon. See also: BIS_fnc_fire.
- 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, mode, magazine]: Array
- 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:
- doFirecommandFirecanFirefireAtTargetforceWeaponFirecommandArtilleryFirecommandSuppressiveFiredoArtilleryFiredoSuppressiveFireisManualFireselectWeaponaction ["UseWeapon"]BIS_fnc_fireCategory: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
Notes
- Posted on August 17, 2006
- Str
- Sometimes AI won't shoot when you use this command. It can be fixed by placing selectWeapon command before it.
- Posted on February 2, 2007
- 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 January 20, 2007
- Bdfy
- In ArmA v1.02, this command is not working with weapons in the secondary turrets (like "DSHKM" in T-72)
- Posted on Jan 15, 2008
- 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 March 18, 2010
- Mr.g-c
- In Arma 2, AI will automatically shoot straight up. Command seems to be broken.
- Posted on November 24, 2010
- 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 Feburary 25, 2011
- kju
- Command works just fine in A2/OA. Make sure to execute it on local AI.
- Posted on April 06, 2012
- 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 Feburary 16, 2013
- hcpookie
- Command did not work with ACR 1.62. Use fireAtTarget instead.
Bottom Section
- Posted on June 4, 2014 - 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 November 25th, 2017
- 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;
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: Unit Control
- Command Group: Weapons
- Scripting Commands: Global Effect
- Scripting Commands OFP 1.46
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.99
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 3: Scripting Commands
- Take On Helicopters: Scripting Commands