XaiJu
William TheUnproPro

William TheUnproPro

patreon


William TheUnproPro posts

RPG Maker Shoutouts

 So, a while back I had a series going on where I give peoples games a shoutout on YouTube by playing them. Well, that's all returning now! If you're interested in getting your game seen by people on YouTube, join my discord server and post in the #to-do channel in the "RPG MAKER SHOUTOUTS" section. Discord Link: 2018-01-11 17:15:21 +0000 UTC View Post

[Written Tutorial] Plugin Development Tutorial #1 - Creating Params and Windows

 Ever want to create your own plugin for RPG Maker MV? Well, this guide is for you. Firstly, go ahead and create your .js file with what ever editor you use. I prefer Visual Studio Code.

In the code, set up your Author name and Description: 

/*:
* @author William Ramsey
* @plugindesc My Plugin Description
*
*/

Next, lets go over 3 main params. (For a full list, see 2017-12-30 19:51:24 +0000 UTC View Post

[Video Tutorial] Plugin Development Tutorial #1 - Creating Params and Windows

In this video I explain how to create your first plugin! I go over a few param types and creating a window that shows up on the map!

View Post

[Plugin] Character Romance System

I've created a Character Romance System for MV. Details are in the video!

https://www.youtube.com/watch?v=W9VSXa-dDkU

View Post

Romance System is almost ready

I'm almost done with the plugin, hypppe?

View Post

[Tutorial] Appending Data to a save file

If you're in the process of making a plugin and want to find out how you can add a variable to the games save file, it's a lot simpler than you think. You might be asking "how do I alias something that returns a value?" Well, to do this you need to make an alias first, this can be done like so:

 

var dm_save = DataManager.makeSaveContents;


this will copy the function "DataManager.makeSaveContents", but you probably already knew that. Here comes the magic. We're goin...

View Post

Which video to do next?

I can't decide in which order to produce the next few videos.

View Post

How to make a 'good' cutscene!

This is of course my opinion, but in this video I explain how to make what I consider to be a 'good' cutscene!

View Post

Comparison between a 'bad' and 'good' cutscene (IMO)

This is all in my opinion of course, but here's a comparison of a cutscene that's done in the 'standard, bad' way and re-done in the 'not-so-standard, good' way.

View Post