Compare commits
6 Commits
0537e9cc4c
...
5da2e7c1a4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5da2e7c1a4 | ||
|
|
4893a4e916 | ||
|
|
ba51f31096 | ||
|
|
2d4e545546 | ||
|
|
641126084f | ||
|
|
ddedd0fe25 |
13
proto/EvtDoSkillSuccNotify.proto
Normal file
13
proto/EvtDoSkillSuccNotify.proto
Normal file
@@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "ForwardType.proto";
|
||||
import "Vector.proto";
|
||||
|
||||
message EvtDoSkillSuccNotify {
|
||||
ForwardType forwardType = 1;
|
||||
uint32 casterId = 2;
|
||||
uint32 skillId = 3;
|
||||
Vector forward = 4;
|
||||
}
|
||||
9
proto/NpcTalkReq.proto
Normal file
9
proto/NpcTalkReq.proto
Normal file
@@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message NpcTalkReq {
|
||||
uint32 npc_entity_id = 1;
|
||||
uint32 talk_id = 3;
|
||||
uint32 entity_id = 4;
|
||||
}
|
||||
10
proto/NpcTalkRsp.proto
Normal file
10
proto/NpcTalkRsp.proto
Normal file
@@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message NpcTalkRsp {
|
||||
int32 retcode = 1;
|
||||
uint32 npc_entity_id = 2;
|
||||
uint32 cur_talk_id = 4;
|
||||
uint32 entity_id = 5;
|
||||
}
|
||||
17
proto/SceneTransToPointReq.proto
Normal file
17
proto/SceneTransToPointReq.proto
Normal file
@@ -0,0 +1,17 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message SceneTransToPointReq {
|
||||
enum CmdId {
|
||||
option allow_alias = true;
|
||||
NONE = 0;
|
||||
ENET_CHANNEL_ID = 0;
|
||||
ENET_IS_RELIABLE = 1;
|
||||
IS_ALLOW_CLIENT = 1;
|
||||
CMD_ID = 219;
|
||||
}
|
||||
|
||||
uint32 sceneId = 1;
|
||||
uint32 pointId = 2;
|
||||
}
|
||||
17
proto/SceneTransToPointRsp.proto
Normal file
17
proto/SceneTransToPointRsp.proto
Normal file
@@ -0,0 +1,17 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
message SceneTransToPointRsp {
|
||||
enum CmdId {
|
||||
option allow_alias = true;
|
||||
NONE = 0;
|
||||
ENET_CHANNEL_ID = 0;
|
||||
ENET_IS_RELIABLE = 1;
|
||||
CMD_ID = 220;
|
||||
}
|
||||
|
||||
int32 retcode = 1;
|
||||
uint32 sceneId = 2;
|
||||
uint32 pointId = 3;
|
||||
}
|
||||
10
proto/SetEntityClientDataNotify.proto
Normal file
10
proto/SetEntityClientDataNotify.proto
Normal file
@@ -0,0 +1,10 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "EntityClientData.proto";
|
||||
|
||||
message SetEntityClientDataNotify {
|
||||
uint32 entityId = 1;
|
||||
EntityClientData entityClientData = 2;
|
||||
}
|
||||
Reference in New Issue
Block a user