Implement quests

This commit is contained in:
Melledy
2022-05-11 03:56:40 -07:00
parent ef9d63f1dd
commit 285405cee4
47 changed files with 1379 additions and 6 deletions

9
proto/QuestVarOp.proto Normal file
View File

@@ -0,0 +1,9 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message QuestVarOp {
uint32 index = 1;
int32 value = 2;
bool is_add = 3;
}