add girl skin command

This commit is contained in:
Naruse
2026-05-11 19:29:32 +08:00
parent f053359c41
commit a7a68418db
6 changed files with 55 additions and 1 deletions

View File

@@ -68,6 +68,21 @@ public class PacketNtfCallScript : BasePacket
SetData(proto);
}
public PacketNtfCallScript(List<GameSkinInfo> skins) : base(CmdIds.NtfScript)
{
var proto = new NtfCallScript
{
Api = "",
Arg = "{}",
ExtraSync = new NtfSyncPlayer
{
Items = { skins.Select(x => x.ToProto()) }
}
};
SetData(proto);
}
public PacketNtfCallScript(InventoryData inventory) : base(CmdIds.NtfScript)
{
var proto = new NtfCallScript