Hey there.
It’s me, asking for help. Again. Sorry, but I’m really stuck on how to increase non-percentage stats.
I tried using something like this:
*create constitution 5
But unfortunately, I can only use create in startup.txt. Anyone have ideas?
Thanks:)
*create foo 5
creates a variable.
*set foo + 5
sets a number +5 (subtract: -
, divide: /
, multiply: *
and others all work too)
1 Like
Btw, does this give the character +1 constitution or does it set constitution to positive 1?
Gives +1, to set it to 1, use *set constitution 1
2 Likes
To try and simplify this a bit:
*set constitution 1 - sets constitution to one regardless of its current value
*set constitution +1 - adds one to the current value of constitution
1 Like
Thanks for clarifying, everyone:)