Show Your Support

If you like the things I make and want to help, do it through social media by hitting the like, subscribe, share, or follow buttons. This will help you stay up to date with the latest releases, and you might even get some sneaky previews of upcoming systems.

You can also show your support on Patreon to gain early access to unreleased plugins, an example project showing how to set things up, and a commercial license for all free plugins!!

Games & Mods

Websites

Software

RPG Maker Collections

Tweeter Food

About Me

My name is David, I'm a self taught software engineer from Glasgow, Scotland.

I have always been technically creative and extremely interested in learning how things work. For a number of years I have created custom systems for the popular RPG Maker game engines. I have also created windows dll files, ruby extensions, custom game launchers, http & api frameworks for use by indie game devs, custom applications for windows and android, and a small number of arduino projects/libraries. Recently, I have decided to share more of the processes involved in the work I create. So, with that being said, I hope you enjoy what I do!

Link Alt

Information

This system rewrites the default RPG Maker Input system to allow full usage of your keyboard and mouse.

Many other input scripts were tested (benchmark && ips performance tests) against this system to ensure that this system was just as/more efficient than any others.

Due to all other input scripts using a loop (x256 - one for each key, that then performs a call to the user32 dll) they are insanely inefficient. Coupled with the fact that most of them iterate over some hash as well, they are mostly* extremely poorly written in terms of efficiency

This system does not use any of those techniques and is still able to obtain all keys press information from one simple dll call per update. Additionally, you can now efficiently test for changes within any key state using simple script calls such as 'Input.any_change?' and 'Input.changed_keys'.

Furthermore, this system allows you to have 'cheat codes' that run any piece of code you want (calls code as a proc). The code is activated when all required keys have been entered in their correct order. I have set up many possible 'default cheats' such as; gain 9999 gold, gain all items, gain all weapons, gain all armors, max all party members stats, instant win battle, instant run from battle, walk through walls, resist death status, resist any other status, resist all status effects, 'open notepad file', 'load naughty webpage cheat', and of course, the all important 'bonus cheat' that can be used as a game completion code. Of course, you (the script user) can add onto this list of cheats as you wish.

All the cheat codes supplied within this script either perform script calls that are already within the RPG Maker VX Ace Engine or create a new method to efficiently perform the task with the script calls already supplied within the maker. Very few methods are aliased and none that should cause any kind of severe incompatibilities.

Show Your Support

If you like the things I make and want to help, do it through social media by hitting the like, subscribe, share, or follow buttons. This will help you stay up to date with the latest releases, and you might even get some sneaky previews of upcoming systems.

You can also show your support on Patreon to gain early access to unreleased plugins, an example project showing how to set things up, and a commercial license for all free plugins!!

Games & Mods

Websites

Software

RPG Maker Collections

Tweeter Food

About Me

My name is David, I'm a self taught software engineer from Glasgow, Scotland.

I have always been technically creative and extremely interested in learning how things work. For a number of years I have created custom systems for the popular RPG Maker game engines. I have also created windows dll files, ruby extensions, custom game launchers, http & api frameworks for use by indie game devs, custom applications for windows and android, and a small number of arduino projects/libraries. Recently, I have decided to share more of the processes involved in the work I create. So, with that being said, I hope you enjoy what I do!

© DekitaRPG 2013..