Actor Classes

All Actors (Character) must have an Actor Class set and you define those classes here. You can think of classes in terms of the typical RPG definition of the word: Warrior, Wizard, Mage, Thief, etc. or in a more general purpose way of: Player, Monster, Default. plyGame does not try to force you to use a system based on classic classes but you need to at least define something here so that an Actor can be linked to Attributes via the Class.

All classes has their own plyBlox and you might want to add Events that can listen for changes in Attribute values, for example when the Health Attribute reaches zero and you want to play the death animation. Note, this is just an example and a better place to act on HP reaching zero would be in the plyBlox on a Character object.

The Edit Events button will open the plyBlox editor for the selected class. The Edit Variables button will allow you to edit the Local Variables of the class.

Definition

Leveling

As mentioned, you do not have to use the class based system and therefore Leveling, so this section is optional. Here you can indicate what the maximum experience is that the character can accumulate and what the maximum level is that it can reach. You will also notice a graph or curve, clicking on this will open the Curve editor where you can tweak how experience and level relate to each other.

Attributes

Here is where you assign the defined Attributes to a Class, which in turn will assign them to the Actor using the class. You should at least add the Experience and Health attributes here but it is not necessary if you do not make sue of these kind of attributes.

An Attribute will have a starting or base value, and a max value it can reach. You will not be allowed to push the Value of the attribute beyond its max when manipulating Attributes via Blocks in plyBlox.

Attributes has two major kinds of values. The “Value” and “Consumable Value” and you will notice the reference to these on Blocks that can access and manipulate Attributes in plyBlox. Which kind you use will depend on the kind of attribute it is. ‘Value’ typically indicates the upper limits for a ‘Cosumable Value’. Health’s “Value” indicates what the maximum health is while “Cosumable Value” would indicate the current Health a character has. So something like 20/50 HP indicates, 20 ‘consumable value’ out of 50 ‘value’ (or total).

The Grows with Level option can be enabled when you want the Attribute’s “Value” to change when the Level of the character changes. You can edit the curve to tweak how the Value changes with each level.

Enable Update Consumable if you want the consumable value to also be updated and set to the be the same as ‘Value’. This is how you would restore a character’s Health, Mana, etc to the maximum value it can be when the character levels up.


plyBlox

The Actor Class adds events like the ‘Level Change’ under plyGame > Attribute.

Blocks to modify or read the Level can be found in Character > Actor(plyGame).

--eof--