ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
RPG Maker MZ Script Reference
2
Ver.1.0.0
3
This document is a reference to the data structures and core scripting of RPG Maker MZ.
4
Below is a description of each file.
5
6
FileDescription
7
DatabaseHere is a list of scripts for referencing the values in the database. Most databases are stored as an array of global variables with IDs as indices. Note that the zero-th element will be null.
8
Game DataThis is a list of scripts for referencing and modifying the contents of saved data and temporary data. We have not included in the list what does not need to be run from the script and what should not be run from the script.
9
Event CodeThis is a list of codes and parameters specified in the event command.
10
Feature/Effect CodeA list of feature and effect codes and parameters to be specified in the database.
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100