POGOserver/POGOProtos/Networking/Responses/AddFortModifierResponse.proto
Felix bf4e26e338 Big update
- Added asset session downloader
- Added on off option logging request types
- Updated proto files
- Updated readme.md
- Smoother setup process
- Added various console commands
- Added claim codename packet
- Added encounter packet
- Added *fixed* download url packet
- Various changes, cant remember at all
2016-08-15 13:09:42 +02:00

18 lines
451 B
Protocol Buffer
Vendored

syntax = "proto3";
package POGOProtos.Networking.Responses;
import "POGOProtos/Networking/Responses/FortDetailsResponse.proto";
message AddFortModifierResponse {
.POGOProtos.Networking.Responses.AddFortModifierResponse.Result result = 1;
.POGOProtos.Networking.Responses.FortDetailsResponse fort_details = 2;
enum Result {
NO_RESULT_SET = 0;
SUCCESS = 1;
FORT_ALREADY_HAS_MODIFIER = 2;
TOO_FAR_AWAY = 3;
NO_ITEM_IN_INVENTORY = 4;
}
}