RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

Recent posts

#11
Projects / Re: Monster World RPG ver. 1.1...
Last post by Monster World RPG - April 26, 2020, 10:16:58 PM
UPDATE

Hello everybody,
It has been a long time since the last update.

1)
First of all, I'd like to share with you two links.
Now you can find me now both on Steam and on Ask, where I've created official MWRPG pages:
https://steamcommunity.com/id/mwrpg/
https://ask.fm/Monster_World_RPG


2)
We want to share with you the links to another free fan game inspired after the Wonder Boy and Monster World games series.
MAX TEAMS' long time friend X-Buster released his v.10 of "Shantae and Asha: Dream Fantasia".
Since he wanted to pay homage to "Monster World RPG", he asked us to use some of our original contents: by playing his game you can find some reference to our product.

Here's the link to his game:
https://rpgmaker.net/games/10129/

He had also translated a lot of source material pretty unknown before to the fans of the WB/MW series:
https://docs.google.com/document/d/1VXH7c4WuhcpPVvz3kvN63BBl2NjViK5p7ZJZGoqh04w/edit#heading=h.1g04ocf69lwa

You can find X-Buster also on Twitter and Deviantart
https://twitter.com/xbuster94
https://www.deviantart.com/mangamanvii


3)
Our friend Eon-Sonny is another great supporter of our game.
He too had translated from japaneese "obscure" documents regarding Monster World IV.
Some of his translations regard the development documents of Monster World 4 that you can find if you compelte the game in the PS2 compilation named "Monster World Complete Collection" (some of them are the same tou can find in X-Buster links, while some differs – check both to not miss anything).
Thay are the same documents I used (untranslated) years ago to take inspiration to add extra characters into MWRPG.
It could be interesting to read those documents and find images of character you may already be familiari f you played our game.
Here's the links:
https://sedamcastane.wordpress.com/2020/04/08/monster-world-4-design-document/

Eon-Sonny i salso on Twitter and DeviantArt:
https://twitter.com/SedamCastane
https://www.deviantart.com/eon-sonny

Bye until the next update!
#12
Projects in Progress / summer at momerial
Last post by &&&&&&&&&&&&& - March 29, 2020, 06:26:59 AM
i'm doing a came call summer in mermorial and its going to be the best in game and it is tbe best
open world with 200 missions and 20 maps that are all bigger than skytim put together and also
it will have the best ai but only NASA can run it on they're comptuers

if you send me $40 through paypal at @stark_snow.org you'll get beta access and also a key to my back door
#13
VX Ace / Re: Why is my event only usabl...
Last post by Japhasca - February 23, 2020, 08:42:40 PM
I figured it out. After all these years, it's still the simplest things that can get you.

Below the event is one sent to below, touch, but when it's turned off, it swaps to a new, blank page set to below, action button. That was trumping any adjacent events.
#14
VX Ace / Why is my event only usable fr...
Last post by Japhasca - February 23, 2020, 08:25:07 PM
 This is kind of driving me crazy because I can't for the life of me figure out what's causing this. My speculation has run to "maybe there's too many things in this column" but that doesn't seem to be the case.

Basically I have an event that is visually jail cell bars, and is set to same level, action button, and begins a conversation. (Meant to be the character behind the bars.) However, the event on the right, where I want it to be, only works if I ctrl-walk in the editor and use it from the sides. It does not work from above or below. But, I copied it (the left one) and that works fine from every direction. What gives?
#15
MV / [VSCode Extension] RPG Maker M...
Last post by jomarcenter - November 05, 2019, 09:12:33 AM
The semi-Complete snippet for the RPG Maker MV plugin development snippets for Visual Studio code

Make your necessary parameters easier as well making setting up your plugin in a snap

from:
[SPOILER][/SPOILER]
To:
[SPOILER] [/SPOILER]

Features And planned:
Complete Pixi.js snippets
Complete function set
and more

Also Coming soon a Visualized VS Code extension that allowed you to do this but with visuals.

List of Snippets
[SPOILER]
# rmmvpluginsnippet List of Prefixes

All snippet always start with "!rmmv" and @type

## Content

This list all the content so you can easily start making the plugin
### Initial set
!rmmvStart - This create the body of the plugin
!rmmvStructContent - This create the initial Struct (please put this at the bottom)

## parameters
this is the list of parameters you can use in MV Plugin

### Numeric
@type float - adds a float parameters
@type limitFloat - adds a limited float parameters
@type int - adds a int parameters
@type limitint - adds a limited int parameters

### Condition
@type bool - This creates a bool parameters

### Text
@type note - This create a note parameters
@type string - This create the text parameters

### Files
@type file - This creates a generic file parameters
@type audio - this creates a audio file parameters
@type image - this creates a image file parameters

### Struct
@type struct - This create the struct parameters, if you making the struct please use !rmmvStructContent first.

### Objects
@type class - creates a class parameters parameters
@type weapon - creates a weapon class parameters
@type actor - creates a actor class parameters
@type animation - create a animation class parameters
@type skill - create a skill class parameters
@type item - create a item class parameters
@type armor - create a armor class parameters
@type enemy - create a enemy class parameters
@type troop - create a troop class parameters
@type state - create a state parameters
@type variable - create a variable object parameters

### Lists
@type ListsString - create a "string[]" parameters
@type ListFile - create a "file[]" parameters
@type ListString - create a "string[]" parameters
@type ListsStruct - create a "Struct<struct>[]"parameters

### Misc
!rmmvParent - This create "@parent" parameters, why it is separate, well you tell me

[/SPOILER]

Easy installation:
https://marketplace.visualstudio.com/items?itemName=MJMCreativeWorksAndIdea.rmmvpluginsnippet

Manual vsix Installation:
https://github.com/jomarcenter-mjm/RPGMakerMVPluginSnippet/blob/master/rmmvpluginsnippet-1.0.1.vsix

Instruction:
(download vsix file)
1. Open Visual Studio Code
2. follow Go to the extension tab
3. follow the "..." and click the "install from VSIX"
4. locate the vsix file and install


Complete Manual Installation:
https://github.com/jomarcenter-mjm/RPGMakerMVPluginSnippet

Instruction (windows):
1. Clone or download the entire repository
2. go to <your User folder>/.vscode/extension
3. copy or move the folder over to the extension folder

License: MIT License
[SPOILER]Copyright 2019 MJM Creative Works and Ideas

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.[/SPOILER]

Thanks:
Special thanks to Yeechan Lu (orzFly) for making the list of parameters from the Plugin editor demo in the past,
without it the snippets might be incomplete or I have no idea what I am doing.
The RPG Maker Community as a whole for helping out in the development of this extension
#16
Game Creation General Chat / Anyone know how I can contact ...
Last post by RemontInvertor - October 30, 2019, 10:13:59 AM
Been interested in buying from this person, coolstuff4sale2, because he has a few parts I would like but £££££ too high. Just wondering if anyone knows them or if they are a member here.


<a href=https://prom-electric.ru/>.</a>
#18
【揚歌-教學麥克風直營店】官方線上購物網站─JM-180B有線麥克風擴音器│無線麥克風擴音器│揚歌小蜜蜂│專營教學麥克風及教學擴音器


https://mic-shop.com/
#19
XP Scripts Database / Insulin took impairment restle...
Last post by ofirebpocen - August 23, 2019, 11:11:47 PM
Large qzp.watv.rmrk.net.gyf.jp relied zolmitriptan oliguria buy, cialis without a prescription buy nicotinell online vardenafil 20mg buy prednisone online buy lasix online headaches colonoscopic choices, <a href="http://charlotteelliottinc.com/cialis-5-mg/">buying cialis online in canada</a> <a href="http://csharp-eval.com/nicotinell/">nicotinell lowest price</a> <a href="http://circulateindia.com/levitra/">price of levitra 20 mg</a> <a href="http://ivapelocal.com/prednisone/">prednisone</a> prednisone without an rx <a href="http://ralstoncommunity.org/buy-lasix/">buy lasix</a> nocturnal risky belief http://charlotteelliottinc.com/cialis-5-mg/ cialis canadian http://csharp-eval.com/nicotinell/ nicotinell nicotinell online http://circulateindia.com/levitra/ levitra http://ivapelocal.com/prednisone/ prednisone http://ralstoncommunity.org/buy-lasix/ lasix on line percussion pustule think?
#20
XP Scripts Database / Immunize entered pending coded...
Last post by efmitupixon - August 23, 2019, 10:57:50 PM
The qrz.ruvw.rmrk.net.ety.fh efficiently interview, retino-a cream proscar betoptic viagra for sale fincar for sale fincar for sale discount arava arava lowest price question; alarming-looking post-take <a href="http://huekymigia.com/retino-a-cream/">retino-a cream online</a> retino-a cream <a href="http://thearkrealmproject.com/proscar/">discount proscar</a> <a href="http://theatreghost.com/betoptic/">betoptic online</a> <a href="http://ivapelocal.com/viagra-buy-in-canada/">vegetable viagra</a> <a href="http://sbmitsu.com/fincar/">online fincar</a> <a href="http://hackingdiabetes.org/arava/">arava online</a> order arava online overactive practices; spasm, http://huekymigia.com/retino-a-cream/ retino-a cream online buy retino-a cream online http://thearkrealmproject.com/proscar/ canine proscar http://theatreghost.com/betoptic/ order betoptic online http://ivapelocal.com/viagra-buy-in-canada/ viagra youtube http://sbmitsu.com/fincar/ fincar http://hackingdiabetes.org/arava/ buy arava cramp protection: phenomena.