> For the complete documentation index, see [llms.txt](https://pro-hytale-mods.gitbook.io/pro-hytale-mods-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://pro-hytale-mods.gitbook.io/pro-hytale-mods-docs/patch-notes/partypro-v0.7.5-patchnotes.md).

# PartyPro v0.7.5 Patchnotes

### New Features

#### Party Stats System

* New STATS tab in Party Menu with detailed statistics
* Per-player stat tracking (Mob Kills, Player Kills, Deaths, Damage, Blocks, etc.)
* Member selector in Stats tab: Switch between "All Members" and individual players
* New stat: Distance Traveled is now tracked

#### Party Leaderboard (TOP Tab)

* New TOP tab to compare parties against each other
* 5 sort categories: Kills, Damage, Blocks, Distance, Time
* Shows top 20 parties
* Gold/Silver/Bronze highlighting for top 3
* Countdown shows remaining time until next stats reset

#### Stats Reset System

* New config options: `statsResetDays` and `statsResetMonths`
* Automatic reset of all party statistics after configurable time period

#### Player Search

* Search field in Players tab to filter players by name
* Search field in Parties tab to filter public parties

#### Invite Modes (Settings Tab)

* Normal: Invites are shown as usual
* Auto Accept: Invites are automatically accepted
* Auto Decline: Invites are automatically declined

#### Cooldown System

* Invite Cooldown: Prevents invite spam
* Teleport Cooldown: Prevents TP spam
* Ping Cooldown: Prevents ping spam
* All cooldowns configurable in config

#### Offline Timeout

* Players are automatically removed from party after configurable time
* Config option: `offlineRemovalTime` (in minutes, 0 = disabled)

#### SimpleClaims Integration

* Optional integration with SimpleClaims mod
* Party members are automatically added as allies in SimpleClaims
* Allows party members to interact with each other's claimed chunks
* Allies are removed when leaving party or party disbands
* Config option: `simpleClaimsIntegration` (default: true)
* Only active when SimpleClaims mod is loaded

### Improvements

#### Config System

* Config now auto-merges new fields into existing configs
* No manual deletion of old configs required on updates
* Max Party Size is now saved in party\_storage.json

#### Compatibility

* Fixed HUD conflict with EyeSpy Mod (Header renamed to PartyHeader)

#### Localization

* All new features fully translated in 5 languages (EN, DE, ES, BR, HU)

### Bug Fixes

#### Thread Safety

* Fixed: Server hangs during world switches
* InvitePlayer now uses thread-safe Universe.getPlayer()
* Player list now uses thread-safe online check
* Invite popup now opens in correct world thread
* Compass markers now use cached positions
* Position tracking now clones Vector3d for thread safety

#### Party Join

* Fixed: Players joining public party were not registered in cache
* Fixed: HUD was not updated after joining party via GUI

#### Cooldowns

* Fixed: Invite cooldown was not checked in GUI
* Fixed: Teleport cooldown was not checked in GUI

#### Miscellaneous

* Fixed: Invite popup never appeared (idle check was too strict)
* Reduced idle time for popup from 10 to 3 seconds

### Config Options

```json
{
  "maxPartySize": 8,
  "inviteCooldown": 5,
  "teleportCooldown": 10,
  "pingCooldown": 3,
  "offlineRemovalTime": 30,
  "statsResetDays": 0,
  "statsResetMonths": 1,
  "showInvitePopup": false,
  "simpleClaimsIntegration": true
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://pro-hytale-mods.gitbook.io/pro-hytale-mods-docs/patch-notes/partypro-v0.7.5-patchnotes.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
