WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

Question tips for making a resolver

lope

Newbie
Newbie

lope

Newbie
Newbie
Status
Offline
Joined
Aug 1, 2019
Messages
2
Reaction score
3
I'm looking at making a resolver ;)

Do you have any tips for me? :unsure:
 

d3nisop3r

Newbie
Newbie

d3nisop3r

Newbie
Newbie
Status
Offline
Joined
Aug 10, 2019
Messages
9
Reaction score
6
First of all, you need an animfix, cause calculations of player's animation are different on client and server: client updates player's animation every frame, but server updates it every tick ( frame != tick ), so you need to sync server and client behavior.
Secondly, you need to find find out is player desyncing atm or not, recommend you take a look at server side and figure out how desync actually works, you will have a lot of useful information.
And the last ( the most difficult part ), you should spot player's desync direction. At this moment you can just bruteforce angles, but also you can calculate more correct bruteforce angles ( look at the server side again and again )

Rest is up to you
 
  • Like
Reactions: rev

rev

Legend
Member

rev

Legend
Member
Status
Offline
Joined
Sep 17, 2019
Messages
113
Reaction score
91
First of all, you need an animfix, cause calculations of player's animation are different on client and server: client updates player's animation every frame, but server updates it every tick ( frame != tick ), so you need to sync server and client behavior.
Secondly, you need to find find out is player desyncing atm or not, recommend you take a look at server side and figure out how desync actually works, you will have a lot of useful information.
And the last ( the most difficult part ), you should spot player's desync direction. At this moment you can just bruteforce angles, but also you can calculate more correct bruteforce angles ( look at the server side again and again )

Rest is up to you
thank you, this helped.
 
Top