Skip to content
This repository has been archived by the owner on Jul 30, 2020. It is now read-only.

Config auto sniper

Truong Nguyen edited this page Jan 2, 2017 · 6 revisions

Search for "DataSharingConfig" in the config.json file or DataSharingConfig in excel tab if you run bot with excel config

EnableSyncData = true AutoSnipe = true

like this

"DataSharingConfig": {
    "EnableSyncData": true,
    "AutoSnipe": true,
    "DataRecieverURL": "ws://necrosocket.herokuapp.com/socket.io/?EIO=3&transport=websocket"
  },

you can set autosnipe IV filter at snipeconfig session

 "SnipeConfig": {
    "UseSnipeLocationServer": false,
    "SnipeLocationServer": "localhost",
    "SnipeLocationServerPort": 16969,
    "GetSniperInfoFromPokezz": false,
    "GetOnlyVerifiedSniperInfoFromPokezz": false,
    "GetSniperInfoFromPokeSnipers": false,
    "GetSniperInfoFromPokeWatchers": false,
    "GetSniperInfoFromSkiplagged": false,
    "MinPokeballsToSnipe": 20,
    "MinPokeballsWhileSnipe": 0,
    "MinDelayBetweenSnipes": 60000,
    "SnipingScanOffset": 0.005,
    "SnipeAtPokestops": true,
    "SnipeIgnoreUnknownIv": false,
    "UseTransferIvForSnipe": false,
    "SnipePokemonNotInPokedex": false,
    "UseSnipeLimit": true,
    "SnipeRestSeconds": 600,
    "SnipeCountLimit": 39,
    "ActivateMSniper": false,
    "MinIVForAutoSnipe": 97 ===> new config here. don't make it too low because bot will snipe all the time and ball run out fast

  },

"MinIVForAutoSnipe": 97

You also able to overwrite this minIV by select per pokemon filter

in excel this will be in SnipePokemonFilter sheet. you can easily navigate from home sheet or from sheet navigator

 "SnipePokemonFilter": {
    "Lapras": {
      "EnableSnipe": false,
      "SnipeIV": 0,
      "Moves": []
    },
    "Dragonite": {
      "EnableSnipe": false, dont mind about this flag , added to support excel config
      "SnipeIV": 0,
      "Moves": []
    },
    "Dratini": {
      "EnableSnipe": false,
      "SnipeIV": 0,
      "Moves": []
    },
    "Snorlax": {
      "EnableSnipe": false,
      "SnipeIV": 0,
      "Moves": []
    }
  }

By default bot will snipe all pokemon IV>=97% and snolax, dragonite, lapras, dratini. However, auto snipe set to off by default to use it you have to turn it on as above.

My BOT sniper too much?

After you turn on autosnipe, bot likely to catch lot of high snipe pokemon by IV, to avoid and configure bot to autosnipe the pokemon you want, please see the config below for you reference

Method 1. Set AutoSnipeMinIV to 101 - Then bot won't autosnipe any pokemon, you need to overwrite pokemon individual snipe filter . For example, Only want to snipe any Lapras and 100%IV Dragonite and exclude all others pokemon, below is my config

"MinIVForAutoSnipe": 101,

Then in the individual pokemon setting

 "Lapras": {
      "SnipeIV": 0,
      "Moves": [],
      "Operator": "or",
      "VerifiedOnly": false
    },
    "Dragonite": {
      "SnipeIV": 100,
      "Moves": [],
      "Operator": "or",
      "VerifiedOnly": true
    },

Method 2 : Autosnipe all pokemon then exclude those pokemon you don't want snipe, see config below . In this case I want to snipe all 100% pokemon and except some crabby pokemon like zubat, pidgey.

Please note that this config only work from 1.0.0.47

"MinIVForAutoSnipe": 100,

Then in snipe individual filter

"Pidgey": {
      "SnipeIV": 101,
      "Moves": [],
      "Operator": "or",
      "VerifiedOnly": false
    },
    "Zubat": {
      "SnipeIV": 101,
      "Moves": [],
      "Operator": "or",
      "VerifiedOnly": true
    },

Note: mypogosnipers.com recently update with crowndedsource then some data are fake, but in most case they are work.

Cheers. Happy hunting.