8787 build menu

User Tag List

Thread: 8787 build

Page 51 of 164 FirstFirst ... 474849505152535455101151 ... LastLast
Results 751 to 765 of 2460
  1. #751
    HexHamster's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alfahim View Post
    please help, the bot is not evolving any of my pokemon. I have lots of pidgeys and around 1600 pidgey candies but it just wont evolve them for some odd reason. It always states that i have 224 potential evolves but does nothing. Only transfers pokemons,
    }
    Change "EvolveKeptPokemonsAtStorageUsagePercentage": 0.9, to 0.5 it should work.

    8787 build
  2. #752
    TriadHS's Avatar Member
    Reputation
    3
    Join Date
    Jul 2016
    Posts
    5
    Thanks G/R
    9/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quoting from https://github.com/NECROBOTIO/NecroBot/issues/1998

    Originally Posted by 750z
    api is down apparently. The master has been fixed but you need VS to run that, otherwise you will have to wait for the new release

  3. #753
    steff.lammers's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    4
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TriadHS View Post
    Can anybody write a qucik tutorial? VS means Visual Studio?

  4. #754
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Distiny View Post
    because the api call doesn't return pokemon
    {"pokemons": [], "params": {"bounds": [40.712784, -74.005941, 40.712784, -74.005941]}}
    of course it does:
    http://skiplagged.com/api/pokemon.ph...95812508392333

    edit/
    aaand its down again

  5. #755
    Distiny's Avatar Site Donator Cheat or Die!
    Reputation
    170
    Join Date
    Nov 2006
    Posts
    314
    Thanks G/R
    28/141
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TriadHS View Post
    I looked at the code a few hours ago and nothing changed regarding the api call to skiplagged.

  6. #756
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i just tried the newest version from the git, same error while sniping. but this may also be because the api is down again^^

  7. #757
    alfahim's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by He******** View Post
    Change "EvolveKeptPokemonsAtStorageUsagePercentage": 0.9, to 0.5 it should work.
    I tried that, didnt work.

  8. #758
    steff.lammers's Avatar Member
    Reputation
    1
    Join Date
    Aug 2016
    Posts
    4
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sometimes the Bot says: "Skipped Tauros". What does that mean? He did not try to catch Tauros? Why?

  9. #759
    Distiny's Avatar Site Donator Cheat or Die!
    Reputation
    170
    Join Date
    Nov 2006
    Posts
    314
    Thanks G/R
    28/141
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by prrovoss View Post
    i just tried the newest version from the git, same error while sniping. but this may also be because the api is down again^^
    unless they use another site then skiplagged we can't do anything but wait 'till that site gets fixed.

    new version didn't change anything regarding that, still same old call.

    Code:
    private static ScanResult SnipeScanForPokemon(ISession session, Location location)
    {
    var formatter = new NumberFormatInfo {NumberDecimalSeparator = "."};
    var offset = session.LogicSettings.SnipingScanOffset;
    // 0.003 = half a mile; maximum 0.06 is 10 miles
    if (offset < 0.001) offset = 0.003;
    if (offset > 0.06) offset = 0.06;
    var boundLowerLeftLat = location.Latitude - offset;
    var boundLowerLeftLng = location.Longitude - offset;
    var boundUpperRightLat = location.Latitude + offset;
    var boundUpperRightLng = location.Longitude + offset;
    var uri =
    $"http://skiplagged.com/api/pokemon.php?bounds={boundLowerLeftLat.ToString(formatter)},{boundLowerLeftLng.ToString(formatter)},{boundUpperRightLat.ToString(formatter)},{boundUpperRightLng.ToString(formatter)}";

  10. Thanks steff.lammers (1 members gave Thanks to Distiny for this useful post)
  11. #760
    prrovoss's Avatar Contributor
    Reputation
    152
    Join Date
    Jan 2013
    Posts
    420
    Thanks G/R
    23/130
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well, the api call itself is still correct as far as i can see. only thing that could have changed is the output format which is then handled in a wrong way by the bot. but no way to test that while the api is down^^
    so yeah, nothing to do here except waiting

  12. #761
    Patchke's Avatar Sergeant
    Reputation
    7
    Join Date
    Jul 2016
    Posts
    58
    Thanks G/R
    10/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by steff.lammers View Post
    Sometimes the Bot says: "Skipped Tauros". What does that mean? He did not try to catch Tauros? Why?
    because bot doesn't like tauros

  13. #762
    Distiny's Avatar Site Donator Cheat or Die!
    Reputation
    170
    Join Date
    Nov 2006
    Posts
    314
    Thanks G/R
    28/141
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by prrovoss View Post
    well, the api call itself is still correct as far as i can see. only thing that could have changed is the output format which is then handled in a wrong way by the bot. but no way to test that while the api is down^^
    so yeah, nothing to do here except waiting
    Everything is correct if skiplagged would work lol

  14. #763
    8787's Avatar Contributor
    Reputation
    278
    Join Date
    Jul 2016
    Posts
    33
    Thanks G/R
    1/216
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    v0.3 is released, see first page.

  15. Thanks njaannnn, futurex19972, ballsdeepninja, 0x0 (4 members gave Thanks to 8787 for this useful post)
  16. #764
    ballsdeepninja's Avatar Member
    Reputation
    4
    Join Date
    Aug 2016
    Posts
    8
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 8787 View Post
    v0.3 is released, see first page.
    System out of range arguement or some stuff, won't run.

  17. #765
    jillian's Avatar Member
    Reputation
    1
    Join Date
    Jul 2016
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ballsdeepninja View Post
    System out of range arguement or some stuff, won't run.
    working fine here,

Similar Threads

  1. [Release] Cancelled's 8787 build revision for Necrobot 0.7.0+, maximum efficiency changes
    By cancelled in forum Pokemon GO Hacks|Cheats
    Replies: 74
    Last Post: 08-09-2016, 01:15 AM
  2. [How-To] 8787 build complete compiled help/fixes thread, find a fix for any problem here
    By cancelled in forum Pokemon GO Hacks|Cheats
    Replies: 178
    Last Post: 08-08-2016, 09:14 AM
  3. Home-style Skiplagged for Necro+8787's build... How to??
    By DrDuckling in forum Pokemon GO Hacks|Cheats
    Replies: 0
    Last Post: 08-01-2016, 02:26 PM
  4. Rouge: Talent Builds
    By oninuva in forum World of Warcraft Guides
    Replies: 3
    Last Post: 10-22-2006, 11:32 AM
  5. [Guide] Build Your Ultimate Pet
    By Cypher in forum World of Warcraft Guides
    Replies: 2
    Last Post: 05-13-2006, 08:22 AM
All times are GMT -5. The time now is 05:23 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search