mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-07-08 13:14:21 -05:00
- 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
18 lines
451 B
Protocol Buffer
Vendored
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;
|
|
}
|
|
}
|