You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Edit: Feathub may be turned off in favour of better GitHub tags, issue templates, and voting structures. Please feel free to continue using this issue (but don't delete the Feathub request just yet)
Expected Behavior
Make the bot randomly increase/decrease actual speed value between two values.
In order to make our stats less detectable as a bot player.
in config.json we could have this :
"maxWalk": 13,
"minWalk": 4,
And then in your code:
speedChange = random number between -2 and 2 (so its seems normal speed walk change) (maybe other values idk, its just an example)
newWalkSpeed = actualWalk + speedChange;
if (newWalkSpeed <= maxWalk && newWalkSpeed >= minWalk)
{
actualWalk = newWalkSpeed ;
}
Actual Behavior
Constant speed walk
The text was updated successfully, but these errors were encountered: