- Joined
- Jul 4, 2014
- Messages
- 2,162
- Reaction score
- 822
- First Language
- Hungarian
- Primarily Uses
- RMVXA
You can manually change the stats with this script call:
change_xstat(id, stat, value)id = actor ID from the database
stat = symbol of the stat you want to change
value = the value which you want to add to the stat (use negative numbers to subtract from a stat)
For example:
change_xstat(1, :str, 15)Would add 15 Strength for the first actor in the database.
Or you can use items with the provided note-tags, and when the actor uses a stat changer item, it will raise his/her stats by the value specified in your note-tag.
change_xstat(id, stat, value)id = actor ID from the database
stat = symbol of the stat you want to change
value = the value which you want to add to the stat (use negative numbers to subtract from a stat)
For example:
change_xstat(1, :str, 15)Would add 15 Strength for the first actor in the database.
Or you can use items with the provided note-tags, and when the actor uses a stat changer item, it will raise his/her stats by the value specified in your note-tag.

