~ruther/NosSmooth

ref: e4b2b3cbab68426c8f62c8c7387499a6810f74f2 NosSmooth/Packets/NosSmooth.Packets/Server/Character/TitinfoPacket.cs -rw-r--r-- 1.0 KiB
e4b2b3cb — Rutherther feat(packets): add raid types 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
//  TitinfoPacket.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using NosSmooth.Packets.Enums.Entities;
using NosSmooth.PacketSerializer.Abstractions.Attributes;

namespace NosSmooth.Packets.Server.Character;

/// <summary>
/// Information about titles of the character.
/// </summary>
/// <param name="EntityType">The type of the entity, seems to be always a player.</param>
/// <param name="CharacterId">The id of the character.</param>
/// <param name="UnknownTitleVNum1">Unknown, seems to be vnum of title, but which one?</param>
/// <param name="UnknownTitleVnum2">Unknown, seems to be vnum of title, but which one?</param>
[PacketHeader("titinfo", PacketSource.Server)]
[GenerateSerializer(true)]
public record TitinfoPacket
(
    [PacketIndex(0)]
    EntityType EntityType,
    [PacketIndex(1)]
    long CharacterId,
    [PacketIndex(2)]
    long UnknownTitleVNum1,
    [PacketIndex(3)]
    long UnknownTitleVnum2
) : IPacket;
Do not follow this link