Giter VIP home page Giter VIP logo

Comments (3)

SzymonLisowiec avatar SzymonLisowiec commented on July 18, 2024
self.CatchPokemon = function (mapPokemon, normalizedHitPosition, normalizedReticleSize, spinModifier, pokeball, callback) {
        var _self$playerInfo3 = self.playerInfo;
        var apiEndpoint = _self$playerInfo3.apiEndpoint;
        var accessToken = _self$playerInfo3.accessToken;

        var catchPokemon = new RequestEnvelop.CatchPokemonMessage({
            'EncounterId': 0,
            'Pokeball': 1,
            'NormalizedReticleSize': normalizedReticleSize,
            'SpawnPointGuid': mapPokemon.SpawnPointId,
            'HitPokemon': 1,
            'SpinModifier': spinModifier,
            'NormalizedHitPosition': normalizedHitPosition
        });

        var req = new RequestEnvelop.Requests(103, catchPokemon.encode().toBuffer());

        api_req(apiEndpoint, accessToken, req, function (err, f_ret) {
            if (err) {
                return callback(err);
            } else if (!f_ret || !f_ret.payload || !f_ret.payload[0]) {
                return callback('No result');
            }

            var catchPokemonResponse = ResponseEnvelop.CatchPokemonResponse.decode(f_ret.payload[0]);
            callback(null, catchPokemonResponse);
        });
    };
message EncounterMessage {
    repeated fixed64 encounter_id = 1;
    required string spawnpoint_id = 2;
    required double player_latitude = 3;
    required double player_longitude = 4;
  }

  message CatchPokemonMessage {
    repeated fixed64 EncounterId = 1;
    repeated int32 Pokeball = 2;
    repeated fixed64 NormalizedReticleSize = 3;
    repeated string SpawnPointGuid = 4;
    repeated int32 HitPokemon = 5;
    repeated fixed64 SpinModifier = 6;
    repeated fixed64 NormalizedHitPosition = 7;
  }
PokemonGO.EncounterPokemon(wildpokemon, function(error, response){
   if(error) return console.log(error);
   PokemonGO.CatchPokemon(response, 1, 1.950, 1, 1, function(error, response){
      if(error) return console.log(error);
      console.log(response);
   });
});

Catch Result:

{ Status: null, MissPercent: null, CaptureAward: null }

😢

from pokemon-go-node-api.

Armax avatar Armax commented on July 18, 2024

we are still working on it, don't use it for now

from pokemon-go-node-api.

ALawliet avatar ALawliet commented on July 18, 2024

It works pretty well for me when used conservatively. Just returns null like that when I'm out of pokeballs though and of course the "Catch Flee" due to the GPS spoofing is trouble.

@SzymonLisowiec This seems to be fixed in the recent updates, but in your post the new RequestEnvelop.CatchPokemonMessage is not correct. The encounter id needs to be the mapPokemon.EncounterId instead of 0. Also keep your properties so they match the .proto.

from pokemon-go-node-api.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.