MsgSynpOffer

This message is sent to the game client to list and update donations currently made to a guild / syndicate.

Table of Contents

Patch 5615

Message Definition

✅ Verified (Client)

PosTypeNameDescriptionExample
0UInt16MsgSizeSize of the message84
2UInt16MsgTypeType of message1058
4UInt32SynpOfferUpdateFlagsWhich donations to update0
8Int32MoneyAmount of money donated / debted0
12Int32EMoneyAmount of CPs donated / debted0
16UInt32EducationAmount of education points0
20UInt32ExploitsAmount of PK merit0
24UInt32ArsenalPoints in the arsenal0
28UInt32RosesFlower points from roses0
32UInt32OrchidsFlower points from orchids0
36UInt32LiliesFlower points from lilies0
40UInt32TulipsFlower points from tulips0
44UInt32FactionAmount of merit from faction PK0

SynpOffer Update Flags

✅ Verified (Client)

enum SynpOfferUpdateFlags {

    NONE = 0;
    MONEY = 1U << 0;
    EMONEY = 1U << 1;
    EDUCATION = 1U << 2;
    EXPLOIT = 1U << 3;
    ARSENAL = 1U << 4;
    ROSE = 1U << 5;
    ORCHID = 1U << 6;
    LILY = 1U << 7;
    TULIP = 1U << 8;
    FACTION_PK_MERIT = 1U << 9;
}