Skip to content

Commit

Permalink
ClientVersion: 67, AppVersion: 1.33.3, Build: 111295
Browse files Browse the repository at this point in the history
  • Loading branch information
Vazyriqx committed Nov 19, 2024
1 parent cf2200a commit 74637bc
Show file tree
Hide file tree
Showing 16 changed files with 9,412 additions and 5,305 deletions.
22 changes: 22 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
- [GiftPlayerCoopRequest](#ei-GiftPlayerCoopRequest)
- [IAPSaleEntry](#ei-IAPSaleEntry)
- [IdleSessionSummary](#ei-IdleSessionSummary)
- [IdleSessionSummary.Stat](#ei-IdleSessionSummary-Stat)
- [InGameMail](#ei-InGameMail)
- [InventorySlot](#ei-InventorySlot)
- [JoinCoopRequest](#ei-JoinCoopRequest)
Expand Down Expand Up @@ -2700,13 +2701,34 @@
| average_msr | [double](#double) | optional | |
| average_egg_delivery_rate | [double](#double) | optional | |
| last_egg_delivery_rate | [double](#double) | optional | |
| eggs_delivered | [double](#double) | optional | |
| stats | [IdleSessionSummary.Stat](#ei-IdleSessionSummary-Stat) | repeated | |
| farm_index | [uint32](#uint32) | optional | |






<a name="ei-IdleSessionSummary-Stat"></a>

### IdleSessionSummary.Stat



| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| name | [string](#string) | optional | |
| min | [double](#double) | optional | |
| max | [double](#double) | optional | |
| avg | [double](#double) | optional | |
| total_time | [double](#double) | optional | |






<a name="ei-InGameMail"></a>

### InGameMail
Expand Down
70 changes: 70 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,10 @@ <h2>Table of Contents</h2>
<a href="#ei.IdleSessionSummary"><span class="badge">M</span>IdleSessionSummary</a>
</li>

<li>
<a href="#ei.IdleSessionSummary.Stat"><span class="badge">M</span>IdleSessionSummary.Stat</a>
</li>

<li>
<a href="#ei.InGameMail"><span class="badge">M</span>InGameMail</a>
</li>
Expand Down Expand Up @@ -8971,6 +8975,20 @@ <h3 id="ei.IdleSessionSummary">IdleSessionSummary</h3>
<td><p> </p></td>
</tr>

<tr>
<td>eggs_delivered</td>
<td><a href="#double">double</a></td>
<td>optional</td>
<td><p> </p></td>
</tr>

<tr>
<td>stats</td>
<td><a href="#ei.IdleSessionSummary.Stat">IdleSessionSummary.Stat</a></td>
<td>repeated</td>
<td><p> </p></td>
</tr>

<tr>
<td>farm_index</td>
<td><a href="#uint32">uint32</a></td>
Expand All @@ -8985,6 +9003,58 @@ <h3 id="ei.IdleSessionSummary">IdleSessionSummary</h3>



<h3 id="ei.IdleSessionSummary.Stat">IdleSessionSummary.Stat</h3>
<p></p>


<table class="field-table">
<thead>
<tr><td>Field</td><td>Type</td><td>Label</td><td>Description</td></tr>
</thead>
<tbody>

<tr>
<td>name</td>
<td><a href="#string">string</a></td>
<td>optional</td>
<td><p> </p></td>
</tr>

<tr>
<td>min</td>
<td><a href="#double">double</a></td>
<td>optional</td>
<td><p> </p></td>
</tr>

<tr>
<td>max</td>
<td><a href="#double">double</a></td>
<td>optional</td>
<td><p> </p></td>
</tr>

<tr>
<td>avg</td>
<td><a href="#double">double</a></td>
<td>optional</td>
<td><p> </p></td>
</tr>

<tr>
<td>total_time</td>
<td><a href="#double">double</a></td>
<td>optional</td>
<td><p> </p></td>
</tr>

</tbody>
</table>





<h3 id="ei.InGameMail">InGameMail</h3>
<p></p>

Expand Down
11 changes: 11 additions & 0 deletions ei.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,17 @@ message IdleSessionSummary {
optional double average_msr = 5;
optional double average_egg_delivery_rate = 6;
optional double last_egg_delivery_rate = 8;
optional double eggs_delivered = 9;

repeated Stat stats = 10;
message Stat {
optional string name = 1;
optional double min = 2;
optional double max = 3;
optional double avg = 4;
optional double total_time = 5;
}

optional uint32 farm_index = 7;
}

Expand Down
Loading

0 comments on commit 74637bc

Please sign in to comment.