This repository has been archived on 2026-05-30. You can view files and clone it, but cannot push or open issues or pull requests.
Files
undead-universal-patch-il2cpp/SERVERS.md
2025-08-12 22:54:54 -04:00

756 B

Server Developers

<-- Back to README.md

Requests are sent after the game client authenticates with the server.

Endpoints

API: GET "/api/undead/v1/emotes"

Expects: List<EmoteConfigDTO>

EmoteConfigDTO

Replace existing emotes in the game with these, keyed by UniqueName. See the source for more information.

DTOs

EmoteConfigDTO

public class EmoteConfigDTO
{
    public string UniqueName { get; set; }
    public string NewText { get; set; }
    public string RoomChatText { get; set; }
    public string FacialExpression { get; set; }
    public bool ForceEmoteBubble { get; set; }
    public bool OnlyBroadcastToTeam { get; set; }
}