-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRPG.zh
208 lines (145 loc) · 5.48 KB
/
RPG.zh
1
2
3
4
5
6
7
8
9
10
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
//import "std.zh"
import "string.zh"
import "ghost.zh"
import "ffcscript.zh"
import "stdCombos.zh" //The library RPG_Experimental.zh imports this.
//////////////////////////////////////////
/// ZORIA RPG SYSTEM FRAMEWORK ///
/// Alpha v.0.97.1 2nd June, 2015 ///
//////////////////////////////////////////
/////////////////
/// CONSTANTS ///
/////////////////
const int ERROR_SFX = 61;
//Counters
//Variables
///////////////////
/// Libraries ///
///////////////////
import "RPG_zh/RPG_Functions.zlib"
import "RPG_zh/RPG_Engine.zlib"
import "RPG_zh/RPG_Dice.zlib"
import "RPG_zh/RPG_Levels.zlib"
import "RPG_zh/RPG_Stats.zlib"
import "RPG_zh/RPG_Money.zlib"
import "RPG_zh/RPG_Weapons.zlib"
import "RPG_zh/RPG_Menus.zlib"
import "RPG_zh/RPG_Skills.zlib"
import "RPG_zh/RPG_Dialogue.zlib"
import "RPG_zh/RPG_Spells.zlib"
import "RPG_zh/RPG_Overworld.zlib"
import "RPG_zh/RPG_Items.zlib"
import "RPG_zh/RPG_Status.zlib"
import "RPG_zh/RPG_NPCs.zlib"
import "RPG_zh/RPG_FFCs.zlib"
import "RPG_zh/RPG_Timers.zlib"
import "RPG_zh/RPG_Equipment.zlib" //Added in v0.97.8
import "RPG_zh/RPG_Debug.zlib"
//Experimental General
import "RPG_zh/RPG_Experimental.zlib"
//Experimental Extended
import "RPG_zh/RPG_Experimental_Ext.zlib"
//Experimental NPCDTs
import "RPG_zh/RPG_NPCDs.zlib"
import "RPG_zh/RPG_NPCDs_Table.zlib"
//Experimental Backup and Restore
import "RPG_zh/RPG_Backup.zlib"
import "RPG_zh/RPG_Definitions.zlib"
import "RPG_zh/RPG_Utility.zlib"
//Templates
import "RPG_zh/RPG_Dialogue_Strings.zlib"
// 0.96.3
import "RPG_zh/RPG_Enemies.zlib" //v0.96.8 -> Moved functions from RPG_Experimental_Ext.zlib
import "RPG_zh/RPG_Bosses.zlib"
import "RPG_zh/RPG_Prototypes.zlib"
import "RPG_zh/RPG_Legacy.zlib"
//0.96.4
import "RPG_zh/RPG_Animation.zlib" //Screen pan, and related functions by Moosh.
//0.96.5
import "RPG_zh/RPG_Player.zlib"
import "RPG_zh/RPG_DropFunctions.zlib"
import "RPG_zh/RPG_MathRNG.zlib"
//0.96.7
//Added additional functions to RPG_Experimental_Ext.zlib
//0.96.8
//Merged functions out of RPG_Experimental_Ext.zlib
//Added RPG_Equipment.zlib
import "RPG_zh/RPG_Drawing.zlib"
//import "RPG_zh/RPG_Teleport.zlib" //Requires Tango, and other materials.
//0.96.9.1
import "RPG_zh/RPG_Screens.zlib"
//0.96.9/1
import "RPG_zh/RPG_Compat.zlib" //Compatibility functions. Requires if not using stdArguments.
//0.97.1
import "RPG_zh/RPG_Constants.zlib"
///////////////////////////
/// General Use Scripts ///
///////////////////////////
/////////////////////
/// Sound Effects ///
/////////////////////
// Ties SFX to an item, that is otherwise normally hardcoded. used for the Sonic Wand in LoE.
item script playSound{
void run(int sfx){
Game->PlaySound(sfx);
}
}
/////////////////////
/// WEAPON SYSTEM ///
////////////////////
//Uses NWS v1 protocols for an item.
item script active{
void run(int weapon){
WeaponCreated[weapon] = true;
}
}
/// ! Disable the next two functions if using stdArguments.zh ! ///
//int GetDigit(int n, int place){
// place = Clamp(place, -4, 4);
// if( place < 0 ){
// n = GetRemainderAsInt(n);
// place += 4;
// }
//
// int r = ((n / Pow(10, place)) % 10) << 0;
// return r;
//}
//
//int GetRemainderAsInt(int v) {
// int r = (v - (v << 0)) * 10000;
// return r;
//}
/// ! Disable the above two functions if using stdArguments.zh ! ///
//////////////////////////////
/// CREDITS (ALPHABETICAL) ///
//////////////////////////////
///////////////////////////
/// Programming Credits ///
///////////////////////////////////////////////////////////////////////
/// Aevin (Misc RPG-related ideas.) ///
/// Alucard (Various functions, and NWS v2 contributions.) ///
/// blackbishop89 (Forum discussions, and assistance.) ///
/// Gleeok (Assorted functions, that led to this.) ///
/// grayswandir (Assorted functions, and discussions thereof.) ///
/// jsm116 (FFCs and FFC functions.) ///
/// MasterManiac (NWS v1.) ///
/// MoscowModder (Too much to list.) ///
/// Saffith (Tango, Ghost, FFCs, and JRPG Menu basic framework.) ///
/// SUCCESSOR (Assorted functions, and discussion thereof.) ///
/// Zecora (Forum discussions, and assistance.) ///
/// ZoriaRPG (project leader, and general concept; many functions.) ///
///////////////////////////////////////////////////////////////////////
/////////////////////////
/// Testing and Ideas ///
////////////////////////////////////////////////////////////////////////
/// MabusTheDark (Discussion, and script testing) ///
/// TeamUDF (Inspirational, and conversational discussion of ideas.) ///
////////////////////////////////////////////////////////////////////////
// If you feel that you belong on this list, please PM ZoriaRPG.
//P.S. If anyone is curious about using the extension, '.zlib', here's an anecdote for you.
//The file extension used by ZQuest for scripts, '.z', is also the filetype used for some *nix archives (.z files).
//That creates a predicament, as opening .z files, when you have a datatype handler, will be problematic,
//as the datatype handler associates '.z' with archived files.
//The '.z' archive files operate on the *nix libary 'zlib', which is *not* a filetype.
//Thus, as a sort of self-amusing joke, I started naming ZScript files with a '.zlib' extension.
//I also pondered using '.squid', b ut I';ll save that for another day.