RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[VSCode Extension] RPG Maker MV Snippet for plugin developement

0 Members and 1 Guest are viewing this topic.

****
SOON
Rep:
Level 72
Jomarcenter - MJM
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 for:
To:
Spoiler for:

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 for:
Code: [Select]
# 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

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 for:
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.

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