Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Ok, this is a different plugin you are commenting on than my [CGMZ] Menu Command Window, but for your JS Command for the encyclopedia put:

SceneManager.push(CGMZ_Scene_Encyclopedia);

For achievements, put:

SceneManager.push(CGMZ_Scene_Achievements);
Deleted 73 days ago

Hi, the Controls Window shows a window in each scene that tells the player what buttons to press, and can detect if the last input was a keyboard or a controller and change the instructions accordingly. You can see a gif preview of it on this page.

For adding things to the main menu, you would use [CGMZ] Menu Command Window. To add a custom command with that plugin, such as for achievements or encyclopedia, you would open that plugin in the Plugin Manager and double click on the Commands parameter. You will see a list of commands where you can enter new commands.

To get a menu entry that says "Achievements" and leads to the achievements scene: For the Command Name, put "Achievements". For the Command Symbol, put "achievements", for the JS Command parameter put

SceneManager.push(CGMZ_Scene_Achievements);

To get a menu entry that says "Encyclopedia" and leads to the encyclopedia scene: For the Command Name, put "Encyclopedia". For the Command Symbol, put "encyclopedia", for the JS Command parameter put

SceneManager.push(CGMZ_Scene_Encyclopedia);

I got it working but it always puts the Encyclopedia Button right in the middle.  Anyway to adjust it?

Do you have a screenshot of the issue?

It just had 0 actors for the actor section and I was walking around as the 1st character

Hi, can you attach an image of the issue?

For some reason itch wont let me take a pick.  We don't need one.  In the Encyclopedia there is a section for actors while I'm in game it doesn't recognize the actor I have and didn't put him in the encyclopedia.

Hi, if it is a starting member, you will need to manually discover that actor using the plugin command, starting party members are not actually added to the party as they begin in the party, and the encyclopedia is only set up to monitor when party members are added.

cool. cool. So how do I go about adding him?

To use the plugin command to add an actor manually, you will create an event, then double click in the Contents section to add an event command. On page 3, at the bottom right, there is the option "Plugin Command" which you will click. In the Plugin Name, choose CGMZ_Encyclopedia, in the Command Name, choose Discover Actor, in the id field, choose the actor you would like to discover in the encyclopedia.