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.
Mastery System

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 84
Item Mastery:

I'm trying to work it out in my head, but cant figure out how to reset the ability value if an item type which the player has mastered has been equipped, then uneqipped.

this is what I have


if mastery A = 1
 if A1 equipped
  change ability +1(Att, Def, etc.)
 if A2 equipped
  change ability +1(Att, Def, etc.)

if mastery B = 2
 if B1 equipped
  change ability +2(Att, Def, etc.)
 if B2 equipped
  change ability +2(Att, Def, etc.)
 ...
« Last Edit: January 31, 2009, 07:19:47 AM by craznut00 »

*****
Rep:
Level 85
I am the wood of my broom
2010 Project of the YearProject of the Month winner for January 2009Project of the Month winner for January 2010Project of the Month winner for April 2010
Hello can you try rephrasing it a lot more? I am kinda confused on what you meant by "resetting ability value"


**
Rep: +0/-0Level 84
What I mean is, I want it to Change the (Att, Def, Agi, Mnd) whatev' when the item(s) is/are equipped.  That part is easy, its figuring out how to knock down the Stats to their normal value when the item is unequipped afterwards.

*
A Random Custom Title
Rep:
Level 96
wah
Add by a variable and then subtract by a variable? ???

**
Rep: +0/-0Level 84
I figure I'm going to need to make 2 ParPro common events,

-1-
if equipped
turn switch on

-2-
if switch on
 if equipped
  +ability
 else
  - ability

: D  SO, if there is a bonus to equipping an item, the negative status change from removing it only works if it has been equipped before... thanks though.