Skip to content

Commit 41048d4

Browse files
committedApr 13, 2024
Add some custom event commands invented by Jetrotal
1 parent 801f82e commit 41048d4

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
 

‎generator/csv/enums_easyrpg.csv

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
Structure,Entry,Value,Index
2+
EventCommand,Code,EasyRpg_TriggerEventAt,2002
3+
EventCommand,Code,EasyRpg_CallMovementAction,2050
4+
EventCommand,Code,EasyRpg_WaitForSingleMovement,2051
5+
EventCommand,Code,EasyRpg_AnimateVariable,2052
26
EventCommand,Code,Maniac_GetSaveInfo,3001
37
EventCommand,Code,Maniac_Save,3002
48
EventCommand,Code,Maniac_Load,3003

‎src/generated/lcf/rpg/eventcommand.h

+8
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,10 @@ namespace rpg {
157157
Comment_2 = 22410,
158158
ElseBranch_B = 23310,
159159
EndBranch_B = 23311,
160+
EasyRpg_TriggerEventAt = 2002,
161+
EasyRpg_CallMovementAction = 2050,
162+
EasyRpg_WaitForSingleMovement = 2051,
163+
EasyRpg_AnimateVariable = 2052,
160164
Maniac_GetSaveInfo = 3001,
161165
Maniac_Save = 3002,
162166
Maniac_Load = 3003,
@@ -313,6 +317,10 @@ namespace rpg {
313317
Code::Comment_2, "Comment_2",
314318
Code::ElseBranch_B, "ElseBranch_B",
315319
Code::EndBranch_B, "EndBranch_B",
320+
Code::EasyRpg_TriggerEventAt, "EasyRpg_TriggerEventAt",
321+
Code::EasyRpg_CallMovementAction, "EasyRpg_CallMovementAction",
322+
Code::EasyRpg_WaitForSingleMovement, "EasyRpg_WaitForSingleMovement",
323+
Code::EasyRpg_AnimateVariable, "EasyRpg_AnimateVariable",
316324
Code::Maniac_GetSaveInfo, "Maniac_GetSaveInfo",
317325
Code::Maniac_Save, "Maniac_Save",
318326
Code::Maniac_Load, "Maniac_Load",

0 commit comments

Comments
 (0)
Please sign in to comment.