Hello, Your script is wonderful! But I'm having some trouble figuring it out. I'm having a problem with the carry weight. I want to make it equal too the sum of all party member's level multiplied by 5 plus 50. But I can't figure out how to do it.
I have:"
Carry_Limit = :all_lvl
# Now you need to configure the formula of the weight limit,
# Exemple, if I want to the limit be 2 times all the party members strength
# def self.weight_formula(at)
# at * 2
# end
# at is the value of the atribute, and the multiply by 2 to get the total limit.
# In case its a variable or a constant number, just put the
# variable number, or the constant number.
# Exemple:
# def self.weight_formula(at)
# 20
# end
# The limit will be variable 20, ou if chosen a constant, will be 20.
def self.weight_formula(at)
at * 5 + 50
end
"
Is this not right? My carry limit for my party keeps showing up as 0 and I'm not sure why.
Can anyone help me out? I'm not very good at scripting things but I'm trying to get better for my game's sake.