-
Notifications
You must be signed in to change notification settings - Fork 35
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
Add warnings to the Teleport Hack option #455
Conversation
you do seem really passionate about this topic |
I am very much opposed to it yes; I assumed a removal PR had no chance, and that this may be merged and mitigate some of my worries. |
Since you are a software engineer you could help to make a proper solution for temporary misdirection and spinning (b3 alzaadals legacy) so these kind of hacks are not needed |
Thanks for the merge. |
Would definitely be appreciated if something less cheaty than noclip or teleport hack could be used for this. But i believe the client structs have not reverse engineered these debuffs yet |
The author of that mod was already on it when I asked, so I waited. There's a run-down of it below, hopefully that can replace the option I was adding a warning to here. Check for misdirection here. Then read the misdirection like so: public static readonly float* ForcedMovementDirection = (float*)Service.SigScanner.GetStaticAddressFromSig("F3 0F 11 0D ?? ?? ?? ?? 48 85 DB"); And finally account for it here: var currentDir = Angle.FromDirection(new(*sumLeft, *sumForward)) + ForwardMovementDirection();
var dirDelta = currentDir - ForcedMovementDirection->Radians(); |
can you ask if it also works for the spinning debuff in alzaadals legacy? it works a little different and i am too lazy to check right now (status IDs 2973 and 3702) |
I would assume not, as it explicitly checks for |
Probably not then, but maybe you can bring those status effects to his attention. Veyn blocked me some time ago so I can't do it. |
I wonder if it just detects the misdirection or if it can actively handle it? Afaik for temporary misdirection you have to wait until the hand points into the right direction while during spinning you can influence the direction somewhat |
Would have to recommend looking at what I linked when you have the time. I'll leave it there for now, since the conversation maybe isn't suited to this PR. |
Add warnings and more verbosity to try to deter public use of this feature.
Per discussion on #451 I specifically tried to align with how other contributors explained this option should be used.