Skip to content
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

[Feature request] Random walk speed #2869

Closed
Tetranima opened this issue Aug 7, 2016 · 3 comments
Closed

[Feature request] Random walk speed #2869

Tetranima opened this issue Aug 7, 2016 · 3 comments

Comments

@Tetranima
Copy link

Tetranima commented Aug 7, 2016

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:

  • something that memorize actual walk speed : actualWalk
  • something that randomly change the actual walk speed like :

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

@Tetranima Tetranima changed the title [Improvment] Random walk speed [Feature request] Random walk speed Aug 7, 2016
@k4n30
Copy link
Contributor

k4n30 commented Aug 14, 2016

Please move your feature request/s to our feature hub - http://feathub.com/PokemonGoF/PokemonGo-Bot

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)

@k4n30
Copy link
Contributor

k4n30 commented Aug 15, 2016

#3843 (comment)

@leadboots5
Copy link
Contributor

implemented with #3943

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants