Init enter game

This commit is contained in:
Naruse
2025-06-14 11:15:32 +08:00
commit 6a03b39f07
568 changed files with 92872 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace KianaBH.Enums.Player;
public enum BanTypeEnum
{
None = 0,
UseThirdPartySoftware = 1,
ThirdPartySoftware = 2,
AbnormalLogin = 4,
AbnormalAccount = 5,
ViolationTermsService = 6,
AccountRisk = 7,
Unknown = 8
}

View File

@@ -0,0 +1,7 @@
namespace KianaBH.Enums.Player;
public enum ServerEnum
{
Console = 0,
Chat = 1
}

View File

@@ -0,0 +1,9 @@
namespace KianaBH.Enums.Player;
public enum OperationEnum
{
And = 0,
Or = 1,
Not = 2,
Unknow = 3
}

View File

@@ -0,0 +1,9 @@
namespace KianaBH.Enums.Player;
public enum PermEnum
{
Trial = 0,
Support = 1,
Admin = 2,
Other = 10
}

View File

@@ -0,0 +1,13 @@
namespace KianaBH.Enums.Player;
public enum PlayerStatusEnum
{
Offline = 0,
Explore = 1,
}
public enum PlayerSubStatusEnum
{
None = 0,
Battle = 1
}

View File

@@ -0,0 +1,29 @@
namespace KianaBH.Enums.Player;
public enum BaseRegionEnum
{
None = 0,
CN = 11,
OS = 2
}
public enum RegionEnum
{
PRODCN = 0,
SANDBOXCN = 1,
PRODOVERSEA = 2,
SANDBOXOVERSEA = 3,
PRODCNPRE = 4,
PRODOVERSEAPRE = 5,
TESTCN = 6,
TESTOVERSEA = 7,
PETCN = 8,
BETACN = 9,
BETACNPRE = 10,
BETAOVERSEA = 11,
PETOS = 12,
HOTFIXCN = 19,
HOTFIXOVERSEA = 20,
UNKNOWN = 21,
UNKNOWN2 = 22,
}