mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-13 06:54:51 +01:00
💀 strictly necessary login nitifies
This commit is contained in:
24
BLHX.Server.Game/Handlers/P15.cs
Normal file
24
BLHX.Server.Game/Handlers/P15.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using BLHX.Server.Common.Proto.p15;
|
||||
|
||||
namespace BLHX.Server.Game.Handlers
|
||||
{
|
||||
internal static class P15
|
||||
{
|
||||
}
|
||||
|
||||
static class P15ConnectionNotifyExtensions
|
||||
{
|
||||
public static void NotifyBagData(this Connection connection)
|
||||
{
|
||||
connection.Send(new Sc15001()
|
||||
{
|
||||
ItemLists = [
|
||||
new Iteminfo() { Id = 20001, Count = 5 },
|
||||
new Iteminfo() { Id = 15003, Count = 10 },
|
||||
new Iteminfo() { Id = 50002, Count = 10 },
|
||||
new Iteminfo() { Id = 50001, Count = 10 }
|
||||
]
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user