Vintage Story Mod DB · Vintage Story mod
C&N Party
C&N PARTY Party system & MMO-style party HUD for Vintage Story C&N Party is a standalone party system for Vintage Story. Players group up through an ImGui window or chat commands and get an always-on, MMO-style party HUD showing every member’s health and onl
Quick answer
Which C&N Party release should I use?
C&N Party 1.1.1 targets 1.22.3. It must be installed on the client. Installation on the dedicated server is optional. No extra mods listed for this file.
Where it goes
Is C&N Party required on the client, server, or both?
It must be installed on the client. Installation on the dedicated server is optional.
This release supports both sides, but the source does not require it on the server.
What else does C&N Party 1.1.1 need?
1.1.1. Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional mods.
Before you install it
Add C&N Party without breaking your instance.
Built for C&N Party 1.1.1. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use 1.1.1. It targets 1.22.3; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
This file does not list any required mods. Do not add a library just because a different file uses it.
- 03
Put it on the correct side
It must be installed on the client. Installation on the dedicated server is optional.
- 04
Pick the file you checked
Use the “Get this file” button beside 1.1.1. It opens that exact file at the source.
About this project
What does C&N Party add?
C&N PARTY
Party system & MMO-style party HUD for Vintage Story
C&N Party is a standalone party system for Vintage Story. Players group up through an ImGui window or chat commands and get an always-on, MMO-style party HUD showing every member’s health and online status.
Core Features
Party Management
Groups of up to 5 players (configurable). The leader invites by name; the rest accept or decline.
- Invite / accept / decline, with invites expiring after a configurable timeout
- Leave, leader-only kick and disband
- Promote any member to leader, plus automatic handover when the leader leaves
- Managed from a GUI window or chat commands
Party Frames HUD
An always-on overlay listing every member, MMO style.
- Live health bars & online/offline status
- Server-synced: works even when teammates are far away or in another arena
- Leader marker on the party head
- Movable: drag it anywhere, position is remembered
Library & API
A small public API.
- Ally / membership queries (server & client)
- Party events to react to roster changes
- Extensible HUD: mods add their own per-member bars (e.g. class mana/energy) without C&N Party knowing about them
Core Mechanics
- Authoritative on the server: party membership and leadership live server-side; the client is a mirror used by the GUI and HUD.
- Health sync: the server pushes each member’s health fraction to the party so bars stay live regardless of distance or loaded chunks. Refresh rate is configurable.
- Disconnect-safe: logging out doesn’t remove you — you show as offline to the rest and rejoin your party automatically on reconnect. If the leader logs out, leadership hands off to an online member.
GUI
Open the party window with U (default; rebind it in Settings → Controls). From there you can create a party, invite by name, accept/decline invites, promote, kick, leave or disband.
- The party-frames HUD appears automatically while you’re in a party.
- To reposition it: tick Move HUD in the party window, drag the frames where you want, then untick it or press Esc.
Commands Overview
- /canparty create (alias new): start a new party
- /canparty invite <name>: invite a player (leader only)
- /canparty accept <name> / decline <name>: answer a pending invite
- /canparty leave: leave your current party
- /canparty kick <name>: remove a member (leader only)
- /canparty remove (alias delete): disband the party (leader only)
- /canparty list: show members and pending invites
The whole command is also reachable via the alias /cy. Promoting a leader is done from the party window.
Configuration
Server config at ModConfig/canparty.json (created on first launch):
{
"MaxPartySize": 5,
"InviteTtlSeconds": 60,
"PartyUpdateIntervalMs": 1000
}
MaxPartySize- maximum players in a party, including the leader (minimum 1).InviteTtlSeconds- how long a pending invite stays valid before it expires.PartyUpdateIntervalMs- how often (in milliseconds) the server refreshes member health on the party HUD. Lower is smoother but uses more bandwidth; clamped to a minimum of 100 ms.
For Modders
C&N Party exposes a shared party backend so other mods don’t reinvent grouping. Add canparty to your dependencies and use the mod system:
var party = api.ModLoader.GetModSystem<canpartyModSystem>();
// Server: ally checks & party management
bool allied = party.Manager.AreAllied(uidA, uidB);
party.Manager.GetPlayerParty(serverPlayer, out var p);
// Client: is this uid in my party? (markers, friendly-fire UX, ...)
bool mine = party.Client.IsInMyParty(uid);
// Client: add your own bars to each HUD row (e.g. class resources).
// You sync and own the data; C&N Party stays class-agnostic.
canparty.Gui.PartyHudExtensions.DrawMemberRow += memberUid =>
{
// issue your own inline ImGui draw calls for memberUid here
};
- Server -
Manager: create/invite/accept/decline/leave/kick/promote/disband, lookups,SamePartPlayers,AreAllied(uidA, uidB), and party events (changed / invited / disbanded). - Client -
Client:InParty,Members(with live HP fraction),PendingInvites,IsInMyParty(uid), and aChangedevent. - HUD -
PartyHudExtensions.DrawMemberRowlets your mod draw extra per-member bars on top of the base name + health row.
Requirements
- VSImGui (required dependency — powers the party window and HUD)
Project description from Vintage Story Mod DB.
Pick your setup
C&N Party releases for each Vintage Story version.
Choose the version and loader you play, then open the matching release.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
C&N Party versions and loaders
1.1.1
canparty_1.1.1.zip
29 Jul 2026
1.0.0
canparty_1.0.0.zip
28 Jun 2026
Looking for an older file? The official Vintage Story Mod DB project page is in Resources.