-
Notifications
You must be signed in to change notification settings - Fork 739
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes A-10/A-164 Cannon Values #7118
Merged
Merged
Changes from 5 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
41c89aa
Fixes A-10 Cannon Dispersion
LorenLuke b485078
Adds Missing Close Brace
LorenLuke 09b6629
Adjusts 30mm cannon projectiles
LorenLuke 539c4a7
Adds Combat Mix Magazine
LorenLuke a41640d
Added missing semicolon
LorenLuke d5146a9
Removes Whitespace from CfgWeapons
LorenLuke 0eee72e
Removes Whitespace from CfgAmmo
LorenLuke 135643d
Adds Combat Mix Magazine to cannon Magazines
LorenLuke 113eb70
Progress commit
LorenLuke 5183d11
Merge branch 'patch-1' of github.com:LorenLuke/ACE3 into patch-1
LorenLuke 06fded2
Removes Tabs
LorenLuke 8e46e0d
Fixes accidental late-night reversion
LorenLuke cc1dff2
Merge branch 'master' of github.com:acemod/ACE3 into patch-1
LorenLuke e2c6dee
Fixes deafness issue
LorenLuke 6b67c5e
Adds stringtable entries
LorenLuke 344662e
Adds stringtable magazine values
LorenLuke 92e0d55
Add caliber and deflecting values for AP rounds
LorenLuke e6b843f
Fixes double deflecting definition
LorenLuke 7d9c7d5
Merge branch 'patch-1' of github.com:LorenLuke/ACE3 into patch-1
LorenLuke 15c65c5
Adds HEI magazine.
LorenLuke 6f96ca1
Added missing magazine and ammunition definitions.
LorenLuke 2487d6c
Removes tabs in CfgAmmo
LorenLuke 153805a
Fixes Typo
LorenLuke 602341b
Added missing magazine and ammunition definitions.
LorenLuke a3ab0a0
Fix typo
LorenLuke File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,16 @@ class CfgWeapons { | |
magazineReloadTime = 0.1; | ||
}; | ||
|
||
// bigger mag for comanche | ||
class CannonCore; | ||
// Fix attrocious A-10 Cannon Dispersion | ||
class Gatling_30mm_Plane_CAS_01_F : CannonCore { | ||
commy2 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
class LowROF : Mode_FullAuto { | ||
burst = 1; | ||
reloadtime = 0.015; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You need over 60 FPS to fire at this rate. This is impossible in multiplayer, the fire rate will vary depending on your FPS. This is not desirable. |
||
dispersion = 0.0028; //0.279508497 = 0.25 * sqrt(0.8^-1); (80%, 5mil. https://en.wikipedia.org/wiki/GAU-8_Avenger#Accuracy) - Luke | ||
commy2 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}; | ||
}; | ||
// bigger mag for comanche | ||
class gatling_20mm: CannonCore { | ||
magazines[] += {"ACE_500Rnd_20mm_shells_Comanche"}; | ||
|
||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a new classname created by ACE. Classnames are in global space, so it needs to be tagged.