-
Notifications
You must be signed in to change notification settings - Fork 737
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
PSO-1 from RHS with compat_rhs_afrf3 #3171
Comments
AFAIK the PSO-1 doesn't have a vertical adjustment beyond zeroing. |
Exactly. |
Though, thank you for your report! |
Rlly? Im not sure. It was in ACE2 and now in HLC's PSO-1 from hlc_ak_pack (with ACE3). Part: Bullet Drop Compensation elevation turret (We talking about PSO-1M2. And pls add PSO-1M2-1 to the compat_rhs_afrf3.) |
I'm convinced. |
Okay, after investigating, the compat pbo takes this into account. The vanilla 100-1000m adjusting is still enabled, as there's no satisfactory way at this time to implement the PSO-style adjustment fully using the ACE scope adjust system. For the time being, this will probably not change, but you are correct that the M2-1 is missing windage adjustment. |
That's exactly how @ulteq implemented it. You're supposed to use vanilla range adjustment for the vertical axis, and ACE system for windage. |
We should add a check to the scope adjustment so it doesn't do anything for the elevation adjustment if it's not enabled. Right now it'll click but not change from 0, which I believe is what caused the confusion. |
Ups, that's certainly not good. Agreed. |
but.... look: Figure 15: PSO-1M2-1 have only one wedge: |
What are you talking about? |
I have compatibility pbo (in @ace/addons of course). But with compat_rhs_afrf3 I can not move with a vertical elevation. Vannila control of the vertical axis is locked on 300 meters. |
Currently a bug where the adjustment won't work if you have the same key bound to ACE and Vanilla range adjustment: #3238. |
Great, thank you very much. |
Alt + Page Up or Alt + Page Dn |
@ZikiCZ http://guns.allzip.org/topic/100/820647.html |
Vertical axis zeroing does not seem to work for the PSO-1 sight.
Try change this:
class rhs_acc_sniper_base;
class rhs_acc_pso1m2: rhs_acc_sniper_base {
ACE_ScopeAdjust_Vertical[] = { 0, 0 };
ACE_ScopeAdjust_Horizontal[] = { -10, 10 };
ACE_ScopeAdjust_VerticalIncrement = 0.0;
ACE_ScopeAdjust_HorizontalIncrement = 0.5;
};
on this: (like a HLC_AK)
class rhs_acc_sniper_base;
class rhs_acc_pso1m2: rhs_acc_sniper_base {
ACE_ScopeAdjust_Vertical[] = { 0, 0 };
ACE_ScopeAdjust_Horizontal[] = { -10, 10 };
ACE_ScopeAdjust_HorizontalIncrement = 0.5;
};
The text was updated successfully, but these errors were encountered: