Javelin - Allow dumb firing certain missiles - #11476
Open
DartRuffian wants to merge 2 commits into
Open
Conversation
DartRuffian
marked this pull request as draft
August 22, 2026 22:04
Contributor
|
I think you can dumb fire the "AP" missile already |
Contributor
Author
|
You can with the vanilla one because ACE doesn't touch it (I think?) I couldn't figure out a way to make it both by just tweaking the existing config. I'd love to be wrong though. PR needs more than this though to work, just got fed up with arma for one day :P |
DartRuffian
marked this pull request as ready for review
August 23, 2026 03:03
Contributor
Author
|
Works as it is now but I've lost the energy to finish the thing I needed it for |
PabstMirror
approved these changes
Aug 23, 2026
PabstMirror
reviewed
Aug 26, 2026
| {(getNumber _weaponEnabledConfig) != 1} || // Not enabled for weapon | ||
| {_ammoConfig isEqualTo []} || {(getNumber ((_ammoConfig select 0) >> "enabled")) != 1} // Not enabled for ammo | ||
| {_ammoConfig isEqualTo []} || {(getNumber ((_ammoConfig select 0) >> "enabled")) != 1} || // Not enabled for ammo | ||
| { getNumber (configFile >> "CfgAmmo" >> _ammoType >> QEGVAR(missileguidance,allowDumbFire)) == 1 } // Allows firing without lock |
Contributor
There was a problem hiding this comment.
Suggested change
| { getNumber (configFile >> "CfgAmmo" >> _ammoType >> QEGVAR(missileguidance,allowDumbFire)) == 1 } // Allows firing without lock | |
| {(getNumber ((_ammoConfig select 0) >> "allowDumbFire")) == 1} // Allows firing without lock |
this would be on the mg class instead of the ammo?
CfgAmmo -> ammo -> ace_missileguidance -> allowDumbfire
instead of
CfgAmmo -> ammo -> ace_missileguidance_allowDumbfire
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When merged this pull request will:
IMPORTANT
Component - Add|Fix|Improve|Change|Make|Remove {changes}.