Socrates Member 0 Aug 24, 2006 #2 Code: skill.current = skill.max ? You're question is a bit vague though...you're missing stuff like 'when'. Upvote 0 Downvote
Code: skill.current = skill.max ? You're question is a bit vague though...you're missing stuff like 'when'.
Vash Member 240 Aug 24, 2006 #3 I mean in game where the character use the skill all up. I want to know how to resotre the skill points. Upvote 0 Downvote
I mean in game where the character use the skill all up. I want to know how to resotre the skill points.
Socrates Member 0 Aug 25, 2006 #4 Suppose you have an NPC walking around on some map, add a "call script" event with the following: Code: skill.id = <which skill you want> $data_skills[skill.id].current = $data_skills[skill.id].max This restores the skill uses to the maximum. Upvote 0 Downvote
Suppose you have an NPC walking around on some map, add a "call script" event with the following: Code: skill.id = <which skill you want> $data_skills[skill.id].current = $data_skills[skill.id].max This restores the skill uses to the maximum.