how to reset stat and skill POINTS

kerbiii

New member
Messages
342
Points
0
how to reset skill POINTS and status POINTS?

not the way like the reset npc do, but instead make the player skill point 0 and status points for lvl 1

 
You can set these player variables within your script, like so:

Code:
SkillPoint = 0;StatusPoint = 42;
 
This?

Code:
SkillPoint = 0;StatusPoint = 0;
 
Back
Top