Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hakuen Studio

2,050
Posts
53
Topics
1,858
Followers
1,362
Following
A member registered Sep 03, 2018 · View creator page →

Creator of

Recent community posts

Nice to know that! I would try my way out on gimp, but much faster this way! Thanks!

Its fine! The software already does a lot! I guess I can try the outline with an Image editor! Thanks ^^

Hi there!

There is a way to add the Shadow(that I believe that draws an outline) option from the Browser version to the local version?

Hi there!

Set a default window on the plugin parameters. The one you want for the whole game to have.

After that, setup a unique windowskin for the message only by creating a new settings on the Settings List plugin parameter:


If that does not work, make sure you have no other plugins messing with the window skin or maybe put my plugin on the bottom of your plugin list.

Nice! Have fun you both! ^^

(1 edit)

Hi there!

That error can mean one of those things:

1 - You don't have EliMZ_Book, which is my core plugin. If you do not have my core plugin, RPG Maker MZ Plugin manager will warn you with a message on the bottom of the plugin manager window.

2 - You have EliMZ_Book. But it is outdated. 

3 - You have EliMZ_Book, but it is below Pixel Perfect plugin. The EliMZ_Book need to be somewhere above all other Eli plugins.

4 - Some plugin parameter from EliMZ_Book is not properly configured and is triggering an error making RPG Maker kind of not recognizing the EliMZ_Book. Make sure there is no plugin parameter empty, unless the description says that it can be empty

So make sure you fix those three steps above. If the issue still happens:

5 - Send me  ascreenshot of your plugin manager, with your plugin list.

6 - When the error happens, press F12 or F8. A browser window will open. Go to the CONSOLE tab, and send me a screenshot of what is in there.

Link to EliMZ_Book → Hakuen Studio Eli Book RPG Maker MZ by Hakuen Studio

Hi there!

For now, the MP does not allow percentages value. But I will add to it! I'm visiting a lot of old plugins of mine and improving them. I will add that feature to that plugin! Will let you know from here!

(1 edit)

Hi there!

I think there is a bug on the plugin that the clearZoom plugin command is not working properly.

So when the player touches the event to enter in battle, try to use this plugin command, like below:


This will restore the zoom to the default value.

Totally fine friend! Have a nice day :)

Hi there!

I don't know what are you doing. I need to see what are you doing in order to help you.

1) First go to the main page of the plugin and download it from there.

2) Check if you are using EliMZ_Book somewhere above all other Eli Plugins

3) Are you using RPG Maker MZ right?

4) Show to me a screenshot of your plugin parameters, the character image that you are using for diagonal and the filename of that character image.

5) Are you using any other plugins that messes with diagonal or movement at all? If yes, send to me a screenshot of your plugin manager

6) When the game opens, press F8 or F12. A browser window will open. Go to the CONSOLE tab. Send me a screenshot of what is in there.

Hi there!

I fixed the problem! Thanks for the feedback and for the reminder ^^

Test the new version 2.4.0 and let me know ^^

Thanks for the reminder!!

I will take a look into this as soon as I can! Probably today or tomorrow! Sorry about that.

Understood. Take your time.

You can also try to leave only my plugins ON  in your project to really check if it is a compatibility issue. 

I do think it is, because using my Diagonal character Plugin and this Jump System Plugin, when the diagonal parameter is off, the diagonal jump is really prevented. All three work together just fine.

I could suggest you to disable the diagonal feature from visustella and try using my Diagonal Character plugin, which is free. Just install it somewhere below the visustella one. 

Hakuen Studio Diagonal Characters for RPG Maker MZ by Hakuen Studio

If that still not works, then we can return to the first alternative to fix the compatibility problem. But for that I will need a sample project.

That is probably a compatibility issue with the Visustella Plugins. Can you try put my plugin below them? Or better, send me a sample project replicating the issue? This will help me a lot to find the problem. I know that works for sure with my diagonal and character frames plugin, but I also want to make it compatible with the most plugins possible. So a link to download a sample project replicating the issue will be nice.

I think I have fixed the compatibility issue and also the diagonal distance with that new plugin parameter.

Take a look at the new version 2.6.0 and let me know!

Hi!

If Diagonal Jump is set to false on my plugin parameters, and it still is able to jump, probably is because of the Visustella plugins. I disabled it here and it works properly. Now, Visu plugins abre obfuscated, so I can't just take a look at their code to see what is going on.

What I will do is try to find a better way on my plugin to prevent the diagonal jumping when the diagonal parameter is false. I will also add a new parameter to, in case diagonal jump is allowed, to let the plugin reduce in -1 tile the distance when jumping diagonally, so the character does not jump too far when using diagonal. I will let you know when I have fixed it

I manage to solve this issue on the last update of the Dynamic Parameters plugin. Now you can use a parameter as a base value for another parameter. You also don't need to use the whole template anymore(you still can if you want), you have a simple way to do things now with a note tag:

<DynParam atk> 
return this.rawCParam(1) + 5 
</DynParam>

On this example, the Atk value will equal to the value of the Custom Parameter ID 1 + 5. For that to work, you need to use some different script calls, to get the other parameter value, without the dynamic values added to it:

Custom Parameter raw methods
When EliMZ_CustomParameters is installed, Custom Parameters also have raw methods:
rawCParamBase(nameOrId) → returns only the regular custom parameter base value.
rawCParamPlus(nameOrId) → returns the regular custom parameter plus value without Dynamic Parameters additions.
rawCParam(nameOrId) → returns the final regular custom parameter value without Dynamic Parameters additions.
- this.rawCParamBase("crm")
- this.rawCParamBase(1)
- this.rawCParamPlus("crm")
- this.rawCParamPlus(1)
- this.rawCParam("crm")
- this.rawCParam(1)

There are equivalent methods for all type of parameters.  You still need to be aware of the maximum call stack size error on cases like this, even sing the raw methods:

Circular Dependencies
This is a crash that can happen if for example you do that for ATK:
return this.rawParam("def") + this.rawParam("mhp")
And do that for DEF:
return this.rawParam("atk") + this.rawParam("mhp")
This will likely cause a maximum stack size error. You can make a parameter value be based on another one(ATK based on DEF). But then, you cannot also make DEF based on ATK. They will reference each other and end up in a loop.
Try to also avoid using the default maker formulas for that. Stick with the raw script call formulas if you want a parameter based on another.

But for now, you could do what you wanted to do before and didn't manage. Just make sure to check the new help file from the Dynamic Parameter plugin explaining everything.

Hi there!

No. But I'm working on something like that on another plugin. More like a dungeon crawler. But it may take a while to be done.


For Jump System and the Character Frames, I don't see why a plugin that changes battlers would cause any compatibility issue. Because map characters and battler characters are different things. So I don't think there is a problem here about that.

Now, battlers works different than map characters. Battlers don't jump and do not walk. If you want some customization of battler movements, I suggest you find those "Action sequence" battle plugins. I'm aware that Visustella, Akea and a japanese plugin maker have one of them, that let you customize the battler movements.

Hi there!

No, it does not work for battlers, only map characters.

That layer equipment sprites will still take some time. I still need to do a lot of upgrades on the Character Generator plugin before that :/

hahaha probably a mistake. I didn't see any tag with rog maker xp o.O

I just searched and did not found. Where did you see that?

Ok! Using the plugin command, you need to do this:

Initial Settings:

  • Columns = 3
  • Visibility = false/hidden

Choice List

- Make sure you have the same amount of entries here that you have on choices. 2 rows and two columns, are 6 choices.

- Make sure conditions switches either has a value or is just "[]"(Click on them then close, the default value will be applied)

Picture Settings

  • Choice Pictures → Creates 6 pictures there.
  • Configure all the behaviors by default or for each picture(Unselect, Select, Chosen

After the plugin command, setup with the event command, 6 choices. Since you put visibility false on the initial settings, the choices will not be shown, but it will show the pictures.

Nice! Have fun ^^

Hi there!

Sorry, but I'm not supoorting my MV plugins this way anymore. Maybe you can try using another move route plugin, like the one from Galv.

Thank you! I will let you know when I solved this!

Hi there!

I think this error is because maybe Eli Book is not updated on the sample project, Try to update Eli Book and Choice manager to the last updated versions and see if it will work.

It's kinda complicated. I'm on the processo to remake a lot of stuff, probably that sample project will be remade from scratch too. If the above did not solve, I will try to see if I can upload a new version. But it may take a while. Can you tell me what do you want to do with choice manager? Maybe I can help with that

Hi!

No, this plugin only works for MZ.

Did you confirm if that issue still happens only with Eli Book and Face Window? Because it seems to me that you are changing the position of something inside the message text. Don't know if it is the message itself or something else. But that point out to me that you are also using some plugins that messes with message, which can cause a compatibility issue.

Hi!

All my MV Plugins are now here, for free:

https://hakuenstudio.itch.io/hakuen-studio-mv-museum

Thanks for the feedback! Will take a look into this. Can you also show a screenshot of your event command?

Well on that case, it looks simple to me. Just create the moving platforms going from one side to another. Combine with my Jump System plugin to allow player to jump on platforms. If they miss the jump, they will fall under the hole region.

Well, my plugin handles platform events and holes on the map... On my way of seing things, frogger is more about get to the other side of the street while cars are running from left and right.

So I don't see how my plugin fits on that idea. Can you ellaborate a bit more?