# Conflicts:
#	Config/NetworkProtocol/Outer/data/MapProtoData.proto
#	Entity/Generate/NetworkProtocol/MapProtoData.cs
#	Entity/Generate/NetworkProtocol/OuterOpcode.cs
This commit is contained in:
2025-09-25 23:23:18 +08:00
22 changed files with 521 additions and 229 deletions

View File

@@ -28,13 +28,13 @@ message RoleInfo
RoleBaseInfo BaseInfo = 1;
int64 RoleId = 2; //账号id
repeated ItemInfo Items = 3; //身上物品
repeated FishInfo Fishs = 4; //鱼护
repeated ActivityInfo Activities = 5; //活动信息
repeated KeyValueInt64 Currency = 6; //货币信息
repeated KeyValueInt64 Slots = 7; //插槽使用情况
repeated SkillInfo Skills = 8; //技能信息
repeated GearInfo Gears = 9; //钓组信息
int32 MapId = 9; //当前所在地图
repeated ItemBindInfo ItemBinds = 4; //物品绑定信息
repeated FishInfo Fishs = 5; //鱼护
repeated ActivityInfo Activities = 6; //活动信息
repeated KeyValueInt64 Currency = 7; //货币信息
repeated KeyValueInt64 Slots = 8; //插槽使用情况
repeated SkillInfo Skills = 9; //技能信息
int32 MapId = 10; //当前所在地图
}
/// 角色信息
@@ -64,6 +64,12 @@ message AwardInfo
int32 Count = 2; //数量
}
///玩家当前使用钓组信息
message ItemBindInfo
{
int64 Item = 1; //主物品
repeated int64 BindItems = 2; //绑定物品
}
///物品信息
message ItemInfo
{