Waiting for RPG Maker MZ

Well, here’s another post that’ll be gibberish to most (non RPG Maker) people:

I started making my customize-as-much-as-possible project a while ago intending to use RPG Maker MV as the engine. I learned beginner JavaScript, created custom art assets, and began experimenting with JS to make custom plugins for MV. After months of this, however, I learned about the impending release of RPG Maker MZ: the next iteration in the RPG Maker series.

MZ will presumably have features that make it superior to MV. Though people are understandably skeptical of early release bugs, I’m going to jump right into it. Some features they’ve announced seem worthwhile (e.g., manual map layering, event lists), but the most appealing features are the built-in auto-save function and supposedly improved mouse and touchscreen UI (features more for the end-user of the games we produce). I probably could have created a plugin to jury rig my own auto-save system in MV, but if they’re going to include it in MZ along with their other new features, I’ll take it.

So while I’m waiting for MZ’s release on 8/20/2020, I’ll be setting my “fully” customized game aside and, instead, working on a game utilizing almost entirely RTP on RPG Maker MV (RTP = the default assets provided by RPG Maker). I’ll try to create a “complete” game using RTP before MZ comes out.

The point of this RTP project is to get used to certain tools in RPG Maker MV which will likely be similar to the tools available in MZ; to get some experience in level design and utilizing “complex” events. Hopefully, it’ll also result in an entertaining little game.

A little screenshot from the RTP work-in-progress.

Thankfully, RPG Maker MZ’s art asset dimensions seem like they will be unchanged from MV’s, so all of the art assets I’ve created for my MV project can easily be repurposed for use in MZ.

Now the biggest question is if I can actually complete my RTP project before the 20th. I intended it to be a short and simple game, but I might have gotten over ambitious with allowing player choices (played a lot of Witcher 3 during the start of quarantine).

Game Dev Update #5

Hello World,

Since my last update, I’ve added more features to my first JavaScript game project and started working on custom menus in my RPG Maker MV project.

Supergirl VS Fireballs

I gave the JavaScript game a super-creative name (pun wasn’t intended, but I’m leaving it here) and added some features. First, with some help from the W3school tutorials, I added a border at the bottom of the screen. Then I tweaked the same code to add borders to the sides and the top as well.

After looking through the other tutorial material, I decided not to implement most of it (bouncing, gravity, and some other things didn’t really seem useful in this particular game).

So instead of using the tutorials, I started making some features on my own.

The first feature I added was to make it so Supergirl would intermittently enter a “charged” state where she would glow. While charged, if she touched a fireball all the fireballs on the screen would disappear and she would lose the charge.

This feature made her a lot more like Captain Marvel than Supergirl, but I was just experimenting with coding so I didn’t care so much. Of course, in my mind, I justified it this way: Supergirl getting “charged” meant she was absorbing more yellow sunlight which builds up her psionic forcefield (or however Kryptonian powers work) and allows her to take a hit from the fireballs (and also miraculously cause the other fireballs to vanish). The glow is just to help the player visually see the charged state. I also made the text “charged!!!” appear underneath the score so the player had a second visual cue.

So, giving Supergirl the charged feature made the game a lot easier. So, of course, I had to tweak the difficulty in the other direction. I changed my code so that, over time (technically, as your score went up), the fireballs would spawn in higher quantities and also start to move faster.

I also re-did the Supergirl image so her leg isn’t chopped off and got rid of the contrasting bright edges.

After all of that, the game turned out to be mildly fun. As a gamer, I probably wouldn’t pay for it, though. 😮

RPG Maker MV Custom Menu

Yesterday, I finally got back to what was supposed to be the primary purpose of learning JavaScript: customizing menus in RPG Maker MV.

My goal was to replace the default menu altogether. So that when you hit “escape” you would ignore the standard RPG menu (which includes commands to access your items, skills, magic, party formation, and all that good stuff) because my game wouldn’t be utilizing magic or other default RMMV features.

In the afternoon, I tried to look through RMMV’s javascript files to figure out how things worked and went to Google and YouTube to look for potentially useful tutorials. After a few hours, all I managed to do was replicate Porgy the RPG Maker’s code in one of his video tutorials: I made a window with some images/text appear in the top left corner. Then, I tweaked some of his code (which opened a custom menu with the press of the “p” button) so that the “escape” button(s) in the game would open the custom menu instead of the default menu.

That was one small thing done, but I couldn’t get the other types of menus/windows to work (e.g., windows which you could actually interact with instead of simply a window that displayed info). Unfortunately, Porgy’s tutorial didn’t really explain the basics of what he was doing (if you copied him, you could get things done, but it didn’t give enough fundamentals of what he was doing or why–not enough for me, anyway).

Unable to figure things out, I took an Animal Crossing break before getting back to work in the afternoon. I started googling other people’s attempts at creating their own windows/menus. Didn’t get much help there, either. Most searches for “custom menus” in RMMV was more about moving the pre-existing windows around (i.e., the command, status, and gold windows), or there were plugins already created by other people. There was very little information or tutorials that helped with coding your own custom menus.

After a while, with the RMMV JS files on one screen and Poryg’s code on another, I started to figure things out. Poryg was squeezing onto one .js file what the RMMV files had separated on multiple files (the rpg_scenes.js and rpg_windows.js).

Rather than copy Poryg’s code as a base, I started more or less to cobble together code with the RMMV JS defaults as a base. I also named the menus in a way that felt more natural to me.

Finally, I succeeded in making a simple command menu where the player couldchoose to “Exit Game” or “Cancel” and continue playing. It took another good chunk of time to get the window to be centered (by referencing how the RMMV programmers centered their other windows).

On the next day (aka today), I spent about half the day to add a second window which displays the in-game time and currency. The currency was easy enough; I used the code for the gold window as a base. Getting the clock to work required a little more work, but it wasn’t as hard as getting the command menu to work on the previous day.

The code for the clock uses a variable (set using RMMV) as a parameter and translates that value into a 12-hour clock display. The trickiest part was to get the clock to show 12:XX AM instead of 0:XX AM, but I got it done eventually. Coding for the clock a relatively relaxing task since it was almost entirely from scratch (instead of having to rely on the infrastructure already laid out in RMMV).

Took two days of learning and coding (with lots of breaks) to get those simple custom windows to work.

Game Dev Update #4

So on my tangential mission to learn enough JavaScript to make custom menus in RPG Maker MV, I finished the free JS materials on Codecademy and all the free prep material on Galvanize/Hack Reactor.

Now it’s time for tutorials and attempts at simple projects from scratch (or making that RPG Maker plugin, which was the whole point in learning any JS to begin with).

Yesterday, I used the tutorials on w3schools.com to make a simple game where you fly around as Supergirl while avoiding fireballs which chase you around. I used the script they provided as a base and tweaked it to figure how things work a little more.

Instead of making a side-scrolling game with obstacles constantly coming from the right per the tutorial’s instructions, I used a random number generator to make fireballs show up from random sides of the screen (and, if you survive long enough, bigger fireballs start showing up from the corners).

Since this was just a learning experiment, I didn’t bother making my own art assets. I took three images found via Google searches: (1) Melissa Benoist as Supergirl (I shrunk the image substantially and made the background transparent) to fly around as the player character; (2) a fireball from pngitem.com by a person called Angry Frog; and (3) a cropped image of Metropolis (by Kerem Gogus).

Also didn’t bother changing the Score mechanics provided by w3schools (it basically gives you points for surviving), but I moved the display to the top left.

Not going to bother making this game available to play since it’s not very good. It’s really not “finished,” either. I didn’t get through all of w3school’s tutorial material yesterday. I’ll probably finish that up soon, adding features to this so-called game. Then I’ll move onto the next project.

Take it easy, folks.

-A.D.M.

Game Dev Update #3

I’m still learning JavaScript fundamentals. The idea was to learn enough to make simple plugins for RPG Maker MV, but I might further expand my JS skills with a few (very small) projects before choosing another language to focus on (something more commonly used for video games, like C++, Java, or C# for Unity).

Not long ago, I finished Module 3 for the Hack Reactor/Galvanize prep material, and I’ve gotten through a good portion of the final prep module: Module TAA. This last module is supposed to prepare you to take the Technical Admissions Assessment so you can get into Hack Reactor’s paid classes, but I probably won’t be going that route.

Instead, I’m going to attempt some simple projects on my own (maybe with the help of a book or tutorial first).

Browsing the internet (reddit, specifically), I found this blog entry: “Why Learning to Code is so Damn Hard.” I think it presents a fairly realistic forecast of learning to code, involving an abundance of confusion and doubt. It’s good to know what to expect.

Let’s see what happens.

Take it easy,

ADM

Game Dev Update #2

All right, I finished Module 1 of Galvanize’s free prep materials. Module 0 taught fundamental building blocks, and Module 1 was the practice of those fudnamentals.

The next step (Module 2, obviously) is supposed to teach “software engineering principles, pair programming, [and] readability of code,” according to the introduction. The lessons from this module is intended to be applicable to coding in any language, not only JavaScript. Kind of a best practices sort of deal, I suppose.

Finishing the exercises in Modules 0 and 1 have been somewhat satisfying. Kind of like figuring out math problems back in grade school (assuming you’re the type of person to find that satisfying).

So far, the exercises have been mildly challenging. A handful were more than mild (although one was made superficially challenging due to a technical issue with my browser/interface more so than the coding exercise itself).

I may or may not take a break from the Galvanize modules to try to create a simple plugin or two on RPG Maker MV. Otherwise, I may finish Module 2 and 3 completely before I give that a go.

Will have to see.

If anyone actually happens to be reading this, I hope you have a nice day.

Game Dev Update #1

Still binge-learning JavaScript.

After rushing through most of Module 0 on Galvanize, I slowed down on the optional exercises towards the end. Most of my free time was (and still is) diverted to playing Animal Crossing: New Horizons.

After kicking myself in the butt, however, I finished the optional parts on Module 0 and am now about a third of the way through Module 1.

For folks trying to figure out where to start learning JavaScript: I would recommend Galvanize. Module 0 of Galvanize teaches the fundamentals of JavaScript and does it pretty well. To compare, I think Galvanize’s Module 0 covers all of the free stuff you can learn from Cocecademy (which I finished before I started with Galvanize), and the subsequent Modules on Galvanize (1, 2, and 3) provide increasingly complex exercises which, I believe, you could only get on Codecademy if you forked over some cash (of course, after the free Prep stuff on Galvanize they offer a paid programming bootcamp that extends beyond JavaScript).

And although I know I don’t have any regular readers, my content has primarily been about writing in the past so–I should probably do some writing on the side while I’m focusing on learning to code. Need to hit up my writing buddies/acquaintances.

Animal Crossing: a worthy distraction. This is the flag of the proud island of Sandwich (not to be confused with the real Sandwich Islands). I was too lazy to take a proper screenshot, so I took a photo of my Switch using my phone.

Quarantine Project: Making a Video Game

Well, so much for being a background actor (topic from my last post). Covid-19 stopped production for filming in Los Angeles, so I haven’t been doing any of that.

I’ve been fortunate enough to have a substantial amount of remote work to do from home, however, and I did a bit of writing while quarantined. Where I’m devoting most of my free time to, at the moment, is an attempt at indie game development.

I’m using RPG Maker MV which provides an engine and design tools, but I’m going out of my way to customize as much as I can.

The first thing I started doing was open up MS Paint to create my own tilesets, i.e., art that I feed into RPG Maker and, in turn, I can use it to design the levels and maps in my game. After the tilesets, I went on to making character sprites.

After churning out a decent amount of pixel art, I started trying to learn JavaScript to customize my game beyond the RPG Maker defaults.

That’s where I am now. Sitting at my computer and learning to code.

I got through all of the free JavaScript material from Codecademy (skipping over the web browser-focused material), and I’ve moved onto the free “prep” material at Hack Reactor/Galanize. After I shore up my fundamentals, I’ll try my hand at some simple plugins for RPG Maker. See what happens. Hopefully, I can make a playable game (for the PC and Mobile) before I lose focus and go back to writing.

Some of what I have so far (no gameplay, really, just pixel art assets).

Still writing, working, and being a “background actor”

So I’m still working my day job, and I’m still writing.

At the moment, I’m putting most of my writing energy into spec scripts for the various TV writing fellowships (Disney/ABC, NBC, WB, and CBS; Fox may no longer exist since Disney ate them). Not sure if I’ll get anything good done by the time the deadlines roll around this year, but I think I’ll keep writing scripts all year round from now on. Need to keep learning and trying to improve.

Novel writing will probably take a back seat at least for a few months.

I’ve also started going out on side gigs as a non-union TV extra (or “background actor”). Although the 10+ hour days are more tiring than my normal job and pays less, it’s been fun to observe the various cast and crew handle their business on set,  After a few more experiences, I may write some anecdotes about being a living prop (need to avoid violating the various NDAs I sign, though).

So…

Working towards the day I can post about how I’m actually making money as a “creative.” Until then, I guess my posts will keep being intermittent little updates to remind the internet (and myself) that I’m still writing.

Take it easy, World.

-A.D.M.

NaNoWriMo 2019

nanowrimo banner 2019

Well, I haven’t been posting much nor have I been writing much. I’ve mostly been revising my revisions, but it’s not enough. I wasn’t intending on doing NaNo (I’ve only done it once before), but I wound up starting a project to push myself to be more productive.

It’s kind of working. I’ve been putting more time into my WIP. Though I don’t think I’ll hit the 50,000 words to “win” by the end of the month, it’s better than throwing 100% of my free time into Harry Potter: Wizards Unite.

WIP Progress Update 5/29/2019

Decided to try something new and start posting graphs to track the progress of my work-in-progress. This WIP, if you’re curious, is the first draft of a total re-write of a novel I’d previously completed.

progress05292019

Obviously, the horizontal axis shows dates (I’m not actually sure when I started on this WIP, but the estimate should be good enough) and the vertical axis shows the number of chapters completed (I’m aiming for the first draft to have 30 chapters).

The graph looks pretty lame, so I might give it a visual overhaul someday. For now, it’ll have to suffice.

So I’ll try to post an updated graph once in a while and, hopefully, I’ll get addicted to seeing a visual representation of my progress and trick myself into writing more and more. Wish me luck, random folks.