RPG Maker MV

RPG Maker MV

Skill Trees System Demo
Showing 1-10 of 16 entries
< 1  2 >
Update: Feb 28, 2021 @ 1:50am

Version 1.10:

- Added actor and tree to OnLearnAction.act() method.
- Added text command to show unspent skills.
- Added script calls to reset skills.
- Fixed possible bug with big skill cursor when Window_Selectable spacing was overwritten.
- Fixed bug when skill cooldown wasn't shown without MP/TP.
- Fixed game crashes when actor have no trees.
- Improved font size for long skill descriptions. Font will be lowered for long description.
- Text for maxed skill level can be changed as plugin parameter.
- Reworked example skills and demo.

Update: Jul 6, 2020 @ 2:33pm

CD color bugfix.

Update: Jul 6, 2020 @ 10:27am

Version 1.9:
- Show YEP skill cooldown and warmup.
- Add possibility to use SP and JP simultaneously.
- Add confirmation button to learn skills.

Update: Jun 12, 2020 @ 8:24am

Version 1.8:
- Fixed bug which gives skill point on resetting empty tree.
- Fixed MP and TP naming in skill description window.
- Trees are updatable now.
- Reworked separate points pool.
- Added script call to hide tree.

Migration guide:
`Skill` objects get additional parameter - symbol. Take your skills and add unique symbol to their constructors as first argument like in example:
```
guard = skill([2], [[cost(1)]]);
guard = skill('guard', [2], [[cost(1)]]);

rampage = skill(, [15], [[cost(3)]]);
rampage = skill('rmpg', [15], [[cost(3)]]);
```

Update: Aug 3, 2019 @ 6:14am

Version 1.7:
- Added script calls to learn skills in skill trees.
- Added scale factor for skill icons.
- Added stats requirement.
- Changed sound for skills unable to learn.

Update: May 26, 2019 @ 3:56am

Version 1.6
- Ensure cursor visibility for long trees.
- Fixed bug with on learn actions.

Update: May 18, 2019 @ 2:23am

Item Changed

Update: May 16, 2019 @ 10:19pm

Item Changed

Update: May 16, 2019 @ 3:20pm

Version 1.5:
- Items with ability to reset skill trees during the game.
- Working message box commands for skill descriptions.
- Draw skill cost (MP and TP).
- bugfixes.

Update: Dec 16, 2018 @ 4:32am

Version 1.4 Experimental:
- Separate Points Pools for class trees.
- YEP Job Points and class plugins integration.