this the first time I actually dived deep into the scripting scene so bare with me.
I am making a character customization script to replace level ups and need to know exactly how I would go about this
Here is the Script
I am making a character customization script to replace level ups and need to know exactly how I would go about this
Here is the Script
Code:
#==========================================================
# Character Customization
# Version 0.01
# By Michael aka Twilight
#------------------------------------------------------------------------------
# Use experience points to customize your character
#==========================================================
#
# - In Game Directions -
#
# Press left to decrease or right to increase the stat, Press Up or Down to change what stat you are
# upgrading. Press the C key to finalize all changes, press B to leave without saving.
#
#--------------------------------------------------------------------------------------------------------------------
#
# - Script Customization Directions -
#
# - Parameter Increase -
#
# Direct Increase Per Level
# Note: This is how much the parameter increases with every level. Increases by a set amount
# Actor ID { stat => direct increase,... }
#
# Percent Increase Per Level
# Note: This increase a stat for every level by a percent
# Actor ID { stat => percent increase,... }
#
#--------------------------------------------------------------------------------------------------------------------
#
# Cost Per Level
# Note: This affects how much extra experience is needed for the next level of the skill
#
# Direct Increase
# Actor ID { Stat => Cost Increase,... }
# Skill ID
# Percent Increase
# Actor ID { Stat => Cost Increase,... }
#
#--------------------------------------------------------------------------------------------------------------------
#
# Level Max
# Set the maximum level for a stat
# Actor ID { Stat => Max }
#
#--------------------------------------------------------------------------------------------------------------------
#
# Free Customization
# Enables or Disables the ability to regain stat points after they have already been set
# This basically allows you to lower a stat and get the experience for that stat back
# Free_Customization = false
#
#==========================================================
module Character_Customization
Character_Customization:HP_Direct
Character_Customization:HP_Percent
Character_Customization:SP_Direct
Character_Customization:SP_Percent
Character_Customization:Str_Direct
Character_Customization:Str_Percent
Character_Customization:Dex_Direct
Character_Customization:Dex_Percent
Character_Customization:Agi_Direct
Character_Customization:Agi_Percent
Character_Customization:Int_Direct
Character_Customization:Int_Percent
Character_Customization:Atk_Direct
Character_Customization:Atk_Percent
Character_Customization:Def_Direct
Character_Customization:Def_Percent
Character_Customization:Mdf_Direct
Character_Customization:Mdf_Percent
Character_Customization:Eva_Direct
Character_Customization:Eva_Percent
Character_Customization:Cost_Direct
Character_Customization:Cost_Percent