Skip to main content

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

GBRO Games

164
Posts
2
Topics
359
Followers
A member registered Sep 15, 2022 · View creator page →

Creator of

Recent community posts

https://itch.io/docs/buying/already-bought

Pushed an update just now to reflect real time changes. Just redownload the plugin.

Gold is below the list. Works just fine on my end. Is that the demo folder out of the box, or have you already added it to your project folder? You may have conflicting plugin issues.  

(1 edit)

Use custom for bgType if you are gonna use a custom png for your message background. Ignore the animated option there as it is a deprecated parameter. 


For layerType, choose static if you want a non-animated background. 

SceneManager._scene.openMapInventory(); //To open

SceneManager._scene.closeMapInventory(); //To close

Yes. You can play any battler motion, play any sound effects, play any animation, or even run a snippet of js code, at any point of the action sequence. 

Fixed.

Sorry, Stripe doesn't support my country atm.    

No. Use my variable gauge plugin for that.

Yes.

Both actors and enemies share the same sheet type (Compact or Separate). As for differing num frames & motion speed, the answer is yes, those can vary per battler (actor/enemy).

Sure. I'll add it in the next version once I'm free.

Just double checked and project demo opens fine. Might be your copy of the engine. 

Unlikely. 

Nope.

No idea.

You can change the background with the following script call:

ThreeManager.changeTexture("filename.ext");

Run the above code every x frame in a parallel event and now you have an animated background. Something like so:

ThreeManager.changeTexture("Port_1.png");
Wait: 5 frames
ThreeManager.changeTexture("Port_2.png");
Wait: 5 frames
ThreeManager.changeTexture("Port_3.png");
Wait: 5 frames
(2 edits)

I initially did not add the new map to the MV version, but I was sure it still had the updated version of the plugin. Either way I wasn't getting the error you were having. Was it a consistent error upon map load or does it only happen at times? 

Anyways, I have just pushed an update to the MV demo with the new Volley Pal map and ladder event.  See if the error persists and If I did just forget to update the demo. If you have MZ, I recommend you using that one instead. MV has limited lines for script calls so I had to one line all of them, and it's not gonna be user friendly to look at and study. 

Fixed.

The gauges don't persist across scenes. When you create a gauge and move to another scene and back to the map, you have to recreate that gauge again. See implementation in common event #1 where it continuously checks if the hp & mp gauges are present in the map scene, if not, then it creates them. These are done automatically with event-tied gauges because it checks for the necessary comment to reconstruct the gauges once the event loads.


I have pushed an update for the position fix (v.1.0.1).

Looks interesting. I'll consider integrating their API in the future.

Fixed on v.1.2.

Fixed.

I have pushed v.1.1 update. Should be compatible with the FVAA now.

I have added your request just now (v.1.0.71).

Possible, if you know your way around coding. You can use the canvas' texture for a sprite. I won't be adding it as a built in feature though as it is too game specific.

I have added fps movement on v.1.0.3.


For teleportation, you can use the script call:

ThreeManager.player().setPosition(x,y,z); //Replace x,y,z accordingly. 

I have pushed v.1.0.2 update. When navigating to another scene from the map while a 360 scene is on going, call the below script call before  calling the save command or SceneManager.push(Scene__Save) :


ThreeManager.saveTemp();

I removed them because they're ugly. I'll readd as an optional parameter in the next version.

I'll add your suggestion along with the release of the next version of the battle core.

I have uploaded a project demo for your reference. 

It can, but might be too overkill if it's just actor repositioning you're looking for. 

(1 edit)

Sounds like you're using visustella plugins.  The plugin by itself doesn't cause the bug you're describing. 

(1 edit)

Fixed on v.1.4.1.

You can play any animation / motions during an action sequence.

Injury Level and inj should be wrapped in quotation marks like so:

GBRO.VariableGauge.addGauge("Injury Level", "inj", 1, 10, 0, 0)


Must have forgotten to specify that. My bad.

(1 edit)

GBRO_FirstPersonBattle there is just a mis text. Place the GBRO_LoLegaiaBattle plugin below the GBRO_BattleCore plugin. Make sure you copy the battle core plugin to the js/plugin/ folder as well. The demo project doesn't include the battle core plugin.

Looks like you're still using the old version of the plugin. Make sure you check the Use Side View Battle from the system settings.

Yes.

I can add it if demand picks up.