RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Learning Skills through Use

0 Members and 1 Guest are viewing this topic.

*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
Ok, this is more a problem of efficiency than anything else, and I am not sure if this board is for technical troubleshooting or just problems of this sort, but I didn't know where else to post it. Essentially, what I want is that through repeated use of a skill, you work up towards getting another skill, say, after 50 uses and restricted by an intelligence requirement. That is simple enough: all that needs to be done is define a variable, say "Heal Exp", and have the skill Heal call a common event which does:
Code: [Select]
Control Variables: [0001: Heal Exp] += 1
Conditional Branch: [0001:Heal Exp] == 50
  Conditional Branch: [$game_actors[001].int >= 100]
    Play SE: '157-Skill01', 80, 100
    Change Skills: [Aluxes], + [Greater Heal]
    Text: Aluxes Learns Greater Heal!

    
I can even fit an entire string of skills in this common event by, for example, putting the above code into the else function of a similar common event that does the same thing that this one does, but for the Skill Greater Heal. The process is very easy and works very well. But ... for every new string of skills, like, fire, dark, ice, illusion, etc..., I would have to make a new common event, which, when you have many skill strings, I can forsee becoming tedious. I was just wondering if anyone can think of a more efficient way to do it, like maybe all in one common event or something like that. If not, it's okay. I doubt I'll run out of common events anytime ever, considering we have 999 of them, but still.
« Last Edit: January 24, 2007, 04:13:38 AM by modern algebra »

**
Rep: +0/-0Level 88
Mer, Shouldn't be to bad, yea, i would keep it like that :D