mirror of
https://git.muiegratis.online/suikoakari/Campofinale
synced 2025-12-19 13:04:34 +01:00
33 lines
750 B
C#
33 lines
750 B
C#
using Campofinale.Network;
|
|
using Campofinale.Protocol;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Campofinale.Packets.Sc
|
|
{
|
|
public class PacketScSyncBaseData : Packet
|
|
{
|
|
|
|
public PacketScSyncBaseData(Player client) {
|
|
|
|
ScSyncBaseData proto = new ScSyncBaseData()
|
|
{
|
|
Roleid = client.roleId,
|
|
Level = client.level,
|
|
Exp=client.xp,
|
|
RoleName = client.nickname,
|
|
Gender = client.gender,
|
|
ShortId="1",
|
|
|
|
};
|
|
|
|
SetData(ScMsgId.ScSyncBaseData, proto);
|
|
}
|
|
|
|
}
|
|
}
|