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
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
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!
2017-12-30 19:48:10 +0000 UTC
View Post
I've created a Character Romance System for MV. Details are in the video!
https://www.youtube.com/watch?v=W9VSXa-dDkU
2017-12-29 04:10:11 +0000 UTC
View Post
I'm almost done with the plugin, hypppe?
2017-12-28 18:57:49 +0000 UTC
View Post
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...
2017-12-28 12:41:57 +0000 UTC
View Post
I can't decide in which order to produce the next few videos.
2017-12-27 19:36:42 +0000 UTC
View Post
This is of course my opinion, but in this video I explain how to make what I consider to be a 'good' cutscene!
2017-12-27 19:02:31 +0000 UTC
View Post
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.
2017-12-27 18:57:09 +0000 UTC
View Post