part of the system I'm modeling involves a set of skills that automatically show up when you first pick a career. Later, you get more points to buy or increase skills.
I have a resource called resOSkill that tracks the number of skill points the user has to spend. When a new skill THING gets added I use the following code:
Now, the problem I'm running into is that I specifically *don't* want this to happen when I'm adding something due to the class (right now I'm bootstrapping these things within the career THING). When I bootstrap things, I end up instantly with skills over-spent. I know I could just increase the skills resource every time I bootstrap the skill, but that seems like not the right way to go about this.
So my question, is there anything I can do to determine if the skill thing is being added by a bootstrap in the career THING or by a table on the skills tab and use that to determine if I want to increase the resspent resource or not?
I have a resource called resOSkill that tracks the number of skill points the user has to spend. When a new skill THING gets added I use the following code:
Code:
#resspent[resOSkill] += 1
Now, the problem I'm running into is that I specifically *don't* want this to happen when I'm adding something due to the class (right now I'm bootstrapping these things within the career THING). When I bootstrap things, I end up instantly with skills over-spent. I know I could just increase the skills resource every time I bootstrap the skill, but that seems like not the right way to go about this.
So my question, is there anything I can do to determine if the skill thing is being added by a bootstrap in the career THING or by a table on the skills tab and use that to determine if I want to increase the resspent resource or not?
Last edited: