Comments

Log in with itch.io to leave a comment.

Hi there. This looks AMAZING! Two quick questions before I buy:

1. I assume I can modify the images of the tools to something that suits my game (maybe a lasso instead of a hookshot)Hooksett?

2. Do you know if this is compatible with ABS systems?

Hi, yes you can set the images of the tools, you can also have different tools of the same type (if you wanted a normal arrow, fire arrow, and ice arrow, you could do that all with different images for the different arrows).

For your other question, I cannot say for sure if it is compatible with non-CGMZ plugins as I only test with CGMZ plugins in my test project. In general my plugins are highly compatible even with other large plugin libraries.

So, update: Apparently, I bought this when I first started learning the game developing process a couple of months back and completely forgot until I bought it again lol. Not even mad. You do amazing work and I'm beyond grateful for all the contributions you make to the RPG Maker community. Thanks for what you do!

Thanks for the extra support, I am glad you like it 😁

Quick question - Is there anything to carry over to my project besides the image folder and the plugin files? I copied over the settings verbatim and I can pull up the window to select the tools, but the tools themselves are grayed out and the button is unresponsive. It doesn't break the game, it just doesn't do anything. I scoured the demo to see if there were any kind of initialization events or anything and didn't see anything; just the discoverable plugin command on the chests (Excellent streamlined process, btw). I switched all of the other plugins in my project off to see if it was a conflict, but it behaved the same way, which makes me think I overlooked something that needed to be brought over.

(1 edit)

Hi, if you are talking about copying settings from the demo, the demo is most likely out of date so depending on the settings you copied over you might need to load the parameters up for your tools and let any new defaults load.

If tools are not enabled, make sure you have turned tool access ON via the plugin command Change Tool Access.

Hello, so I tried everything I could with this plugin, it worked great, but one thing that has bothered me for quite some time now: Changing the buttons to use the tools, rotate and for the change window don't work. It doesn't change the buttons, it didn't work for me for gamepad buttons and after some testing I also noticed that it doesn't seem to work for keyboard.

I might just be missing something, but I feel like I have tried everything, If there isn't a quick solution I guess this is at least some kind of bug report, so you know.

Thank you for all your hard work.

Hi, I am a little confused when you say buttons and then bring up gamepad and keyboard input. Are you talking about the Touch UI buttons or keyboard or gamepad? As in, you press the (touch ui/gamepad/keyboard) button you have assigned to open the change tool window, and nothing happens? 

Have you looked at the demo and encountered the same problem there? Otherwise, make sure you have used the Plugin Command called Change Tool Access and set to True to enable the dungeon tools. Alternatively, you can set the Disable Scene With Tools parameter to false if you want the player to always be able to open the change tool scene, even if tools are not currently enabled. Also if you have the keyboard key set to "A" (uppercase), it won't register if you just hit the key "a" without also hitting the shift key.

Okay, sorry that I wrote it so confusing, what I meant by "buttons" was the gamepad keys, they don't change no matter what I set them as. Moreover, they don't only not change on my end, but they don't work, it works on the keyboard, so I know the Plugin works, but it doesn't work on gamepad. Maybe it works for others, but on my end, the gamepad keys don't do what they should on their own.

I know that RPG Maker MZ has only partial controller support, but even with plugins that offer complete controller support, they don't work. The only thing that I could work out, was using a ButtonCommonEvents Plugin, that made the Dungeontools Change Scene work via Plugin Command.

My gamepad works fine everywhere else, so I am very confused on why it doesn't work. (It doesn't work in the demo as well, just tested it again.) and I am using an official Xbox One controller. 

I am aware of the case sensitivity as well, I only set keys as lowercase. ("q" for example) The keyboard issues I had were quickly resolved and are no longer a problem! (pretty sure it was just another plugin causing problems)

Thank you for the quick response btw, aside from the gamepad issues this is a very good and well-made plugin!

Ah ok, yes if it is gamepad only then I believe the demo version of the plugin was before gamepad support was added, so it wouldn't work there.

I test using a 360, xbox one, and gamesir pc controller, and all of them work for me in my test project. Do you have the most updated version of CGMZ Core and Dungeon Tools?

Another thing to check would be other plugins that change how controllers work. I use my own gamepad input functions so those plugins most likely would not change how the button works in dungeon tools. Could you try a project with no other plugins besides CGMZ Core and Dungeon Tools and let me know if it works there? It could be some kind of conflict.

For additional troubleshooting, could you copy and paste this into the bottom of CGMZ Dungeon Tools on its own new line (don't overwrite any existing code), and then let me know what is printed to the console when you press a button on your gamepad?

CGMZ_Temp.prototype.updateLastGamepad = function(gamepad) {
   alias_CGMZ_DungeonTools_Temp_updateLastGamepad.call(this, gamepad);
   console.log(gamepad);
   this.updateDungeonToolsForGamepad(gamepad);
};

It should look something like this after clicking on the arrow to expand what was logged:

The dungeon tools plugin will read that and look for the button that has "pressed: true" so the buttons array is what I am most interested in seeing.

Okay, so it doesn't work in the Demo, even with the updated Plugin, (and no other plugin around to obstruct it) nothing happens when pressing the Buttons assigned, which leads me to believe that it is incompatibility with the controller. (if anything)

I also added the code that you posted, I pasted it at the very end of the Dungeontools Plugin file, and I must be doing something wrong, if I type in nothing, the console doesn't give out information, (which I assume is normal) but if I type in "Gamepad" like in the second picture, it just says "native code" unfortunately nothing more than that, but I used the command that was added with the string that you posted, and it just says this:


I guess I must have done something wrong or misunderstood, not sure. I tried clicking the arrow and nothing happens in every case.

(3 edits)

The plugin will automatically log the gamepad object with that code at the bottom of the dungeon tools plugin file, you don't need to type anything into the console. It will only log something when a gamepad button is being pressed, so to get the object into the console you just need to start the game up and use the controller while the console is open in the background.

Edit: If you want to test with the demo, you would also need to update the CGMZ Core plugin that comes with the demo.

Hey  Casper, I purchased it, and it's great! Just was curious. I want to make a sword tool, and is it possible to play a slash animation? Or if not then run a common event to? Thanks for your time!

(1 edit)

Hi, yes you could make a sword tool as an "Interact Tool" type, and then it will play an animation when you interact with an event that the sword can interact with.

I went through today and added gifs of the various tool types in action to this page. Could you let me know if the gif for "Interact Tool" is what you want? And if not, how it differs.

(2 edits)

Hi Casper! Yeah I see the gif. I actually don't see the interact tool within the demo itself though unless I have an older file.

The way differs is if it's possible to always show the pick axe swinging - even if not next to event. Is that possible? That's okay if thats hard to do. the way above is close.

And also. Is there a way to use a button to quickly cycle through tools without going to menu? Just was checking on that too.

Thanks again Casper.

Hi, you need to use the plugin JS file from the zip file, not the one from the demo. My demos will usually have outdated versions of my plugins since the demos take a lot of effort/time to update and I generally only do it if I feel the update would be 1) difficult to figure out how to use or 2) a major change has been implemented to where the original demo would no longer provide a sufficient understanding of the basic usage of the plugin. Since the interact tool is set up just like the other tools and is quite simple, I figured it didn't warrant an update to the demo. Sorry for any confusion.

You can have it always show the animation regardless of whether it interacts with an event, it's a toggle in the interact tool settings.

There is no button to quickly cycle tools, I can add it to my to-do list for a future update though.

(1 edit)

Ahh I see. Yeah that sounds good! Thanks again for your time and help. I will keep supporting your work! Thanks Casper.

Thanks for the support :) Feel free to comment back here if you do have any problems getting your Interact tool set up.