Hello, is there any way to raise stats? I found a way to make it work with VS stat system but the problem is trying to raise stats via the skill learn plugin.
I've tried this:
<JS On Learn Skill>
user.setSpeechPlus(5)
user.forgetSkill(247);
user.refresh();
</JS On Learn Skill>
Which does increase the speech stat by 5 but only for one time.
I've tried this:
<JS On Learn Skill>
user.setSpeechPlus(5)
user.forgetSkill(247);
user.refresh();
</JS On Learn Skill>
Which does increase the speech stat by 5 but only for one time.
<JS On Learn Skill>
user.addSpeechPlus(5);
user.forgetSkill(247);
user.refresh();
</JS On Learn Skill>