What's up, RMers? - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Games Development (https://www.save-point.org/forum-4.html) +--- Forum: Development Discussion (https://www.save-point.org/forum-17.html) +--- Thread: What's up, RMers? (/thread-395.html) Pages:
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
|
RE: What's up, RMers? - Kain Nobel - 06-19-2014 Currently drafting an area devastated by a massive earthquake. The road breaks off into various elevations with open sewer pipes exposed which one may be obligated to pass through to gain higher or lower ground. Some rickety buildings still partially remain and must also be navigated to get through the region. Certain plans include the player pushing a car into a gap to cross from point A to point B, finding goodies in crumbling buildings and also assisting survivors along the way. Initial development for ReGaL's Editor application starts Monday. RE: What's up, RMers? - DerVVulfman - 07-02-2014 Some may have seen finalholylight's recent notice in MicKo's Skill Tree script. While a nice system, he found a drastic flaw with the feature that lets one upgrade a skill in their tree: If you upgrade one skill, anyone else with that skill will have it upgraded too... including your enemy's. So the question is... WHAT THE HELL DO I DO? I'M USING THE SUCKER IN MY GAME TOO!!! And the answer.... diagnostic rewrite. MicKo's system used a system that altered the original $data_skills that was loaded into the game when you started it. And it is both reloaded and saved in your save games. If you increase your heal skill, it overwrites the heal skill in the entire data file and replaces it with another powerful skill. But again, anyone using that skill would also gain that benefit. Imagine increasing your powerful attack to wipe out an evenly matched opponent, only to find you just worked your self like crazy to upgrade his killer skill too! So MY trick is: Make an array of skill IDs and Levels for each actor. So if you have the generic 32 skills, you have an array of 32 Skill IDs for each actor that can be upgraded. And it references that list when used within Game_Battler's skill system (and a few other parts). By doing so, only the actor doing his skill upgrade will get that upgrade. :D Oh, and I'm adding a little 'Skill Book' feature too. Read a book, upgrade (or learn) that skill. It's MOSTLY done.... Some cleanup to take care of now. I'll prolly use a .chm help file to to describe the features. RE: What's up, RMers? - Steel Beast 6Beets - 07-02-2014 (07-02-2014, 04:03 AM)DerVVulfman Wrote:That part sounds like it would make a decent gameplay gamble, not unlikely games that level up enemies along with your characters. You could either chose to became strong at the risk making foes stronger as well or you could opt to remain weak so your enemies would remain weak too. RE: What's up, RMers? - KasperKalamity - 07-02-2014 there's an snes game called 7th saga, and it does that. it's really irritating because the enemies are op RE: What's up, RMers? - MechanicalPen - 07-02-2014 I think the intent of the script was for everyone to have unique skills. VVulf's version would be useful too, though! RE: What's up, RMers? - DerVVulfman - 07-03-2014 Well, I got it fixed up. I didn't include the 'Passive Skill Effects' that MicKo had, but it would require full board editing of every detail in a skill and could be a bit of a headache. Trust me. However, I did as I intended, add arrays to the actors so they could just track their learned skills and do a little copy/paste of skill IDs and increase of skill levels as the needs arise. At the same time, I was always annoyed that you HAD to have skill trees for every actor otherwise you would crash, so I worked out error preventing statements. So if you cycle through the tree system, you get a big blank area for actors without trees. But you can add individual picture backgrounds for them if you want. And I made sure that the 'Change Actor Skills' method works with the revised skill ranking system and added ... BOOKS ... that you can read and learn new skills with. RE: What's up, RMers? - Taylor - 07-29-2014 *appears* I... haven't really been doing much of anything with RM. In fact I don't really remember what I did last? Oh, wait no, it was turn order display and changing the behaviour of critical hits. Lately I've been toying with Ren'py instead. Toying/strangling. But that's not RM. :v RE: What's up, RMers? - DerVVulfman - 07-29-2014 Hey, Taylor. I got RenPy tags for the forum. Post away. RE: What's up, RMers? - Kain Nobel - 07-30-2014 Started a new sub-project dubbed RPGUI, which is short for Ruby Platform Graphical User Interface. It's nothing BIG yet but, for now, a prototype is being built using RGSS then it will be further ported to the RGL core. Yes, it will run on the RGL core but it will not require the actual ReGaL project itself. Instead, it is what I plan on building the Project Editor systems with, BUT... it's just a GUI utilities kind of dealio, you should (in theory) be able to build a graphical interface for any kind of multimedia application. (Of course things don't always go as planned...) A sample screenshot of an RPGUI widget... And the code used to generate it... Code: #=============================================================================== Thus far, it uses absolutely no graphics as things are code generated, but it will (optionally) allow for custom widget graphics later on. The current theme is based on VX Ace, but a custom color A and color B can be assigned as well. Code: #=============================================================================== Producing this: This is still very early development though, but... there you have it. That's what I've been up to. That and bashing my head against the wall to get various IDEs, compilers, libraries and other development tools to chain together and work, but that's a whole other post for another day :| There is much to plan out, but hopefully the end result will be worth the effort :3 RE: What's up, RMers? - DerVVulfman - 08-03-2014 It is official!!! I am now sporting a new badge!!! I now have the badge of I just got my first book on C++, so I am can learn C++ for ReGaL. As I am new to C++ coding, I cannot be anything right now than an official C++ Coding Newb! Yay!!! |