RPG Maker MV

RPG Maker MV

Skill Trees System Demo
Viser 1-10 af 16 forekomster
< 1  2 >
Opdatering: 28. feb. 2021 kl. 1:50

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.

Opdatering: 6. juli 2020 kl. 14:33

CD color bugfix.

Opdatering: 6. juli 2020 kl. 10:27

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

Opdatering: 12. juni 2020 kl. 8:24

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)]]);
```

Opdatering: 3. aug. 2019 kl. 6:14

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.

Opdatering: 26. maj 2019 kl. 3:56

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

Opdatering: 18. maj 2019 kl. 2:23

Item Changed

Opdatering: 16. maj 2019 kl. 22:19

Item Changed

Opdatering: 16. maj 2019 kl. 15:20

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.

Opdatering: 16. dec. 2018 kl. 4:32

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