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.
Equipment Skills [UN-Resolved]

0 Members and 1 Guest are viewing this topic.

***
Rep:
Level 88
Professional Chocobo Hunter
I tried using some of the scripts from hbgames.org but I couldnt get them working.

I need a somewhat simple script that allows you to learn/lose skills when you equip/unequip a certain item.

Example: A knight equips a wind magicite. He learns Aero and Areoa.
      A knight unequips a wind magicite. He unlearns Aero and Areoa.

Thanks in advance.

Cheers,
-Alerith-
« Last Edit: April 16, 2007, 07:23:48 PM by Alerith »
Crystal Collection - On hold.

FF:Dark Symphony - 12%
Demo: May 10th, 2007

********
EXA
Rep:
Level 92
Pikachu on a toilet
Project of the Month winner for April 2007
I'm not familiar with Seph's script, so I don't know how exactly it works, but you should try reading the instructions. You might find out.

As alternative you can try my Tons of Add-ons. It has a script like this. It's called EQUAP Skills.
Get King of Booze for Android, for iOS, for OUYA or for Windows!
Visit our website.
You can also love/hate us on Facebook or the game itself.


Get DropBox, the best free file syncing service there is!

***
Rep:
Level 88
Professional Chocobo Hunter
Ah I see thanks. Did you release a new version of your tons of add ons?

It may have been something I just skipped over.
Crystal Collection - On hold.

FF:Dark Symphony - 12%
Demo: May 10th, 2007

********
EXA
Rep:
Level 92
Pikachu on a toilet
Project of the Month winner for April 2007
Well, it's v4.5b right now. I didn't upgrade it for at least 2 weeks though.
Get King of Booze for Android, for iOS, for OUYA or for Windows!
Visit our website.
You can also love/hate us on Facebook or the game itself.


Get DropBox, the best free file syncing service there is!

***
Rep:
Level 88
Professional Chocobo Hunter
Ok, can you explain what to do here? I put in the ID of the armor/accessory and then I put the ID of the skill and its not working.

Spoiler for:
case ids[0]
    when 6 # weapon ID
      skill_ids.push(10) # EQUAP skill ID
      skill_ids.push(11) # EQUAP skill ID
    when 10 # weapon ID
      skill_ids.push(8) # EQUAP skill ID
      skill_ids.push(12) # EQUAP skill ID
    end
    case ids[1]
    when 1 # armor1 ID
      skill_ids.push(2) # EQUAP skill ID
      skill_ids.push(25) # EQUAP skill ID
    when 19 # armor1 ID
      skill_ids.push(25) # EQUAP skill ID
    end
    case ids[2]
    when 5 # armor2 ID
      skill_ids.push(15) # EQUAP skill ID
    when 18 # armor2 ID
      skill_ids.push(27) # EQUAP skill ID
    end
    case ids[3]
    when 34 # armor3 ID
      skill_ids.push(1) # EQUAP skill ID
      skill_ids.push(25) # EQUAP skill ID
    when 3 # armor3 ID
      skill_ids.push(7) # EQUAP skill ID
      skill_ids.push(4) # EQUAP skill ID
    end
    case ids[4] ## add more ids if you are using a custom number of equip parts
    when 34 # armor4 ID
      skill_ids.push(1) # EQUAP skill ID
    when 8 # armor4 ID
      skill_ids.push(32) # EQUAP skill ID
      skill_ids.push(29) # EQUAP skill ID
    end
Crystal Collection - On hold.

FF:Dark Symphony - 12%
Demo: May 10th, 2007

********
EXA
Rep:
Level 92
Pikachu on a toilet
Project of the Month winner for April 2007
That's the way how you have set it up:

weapon: 6 -> skills: 10, 11
weapon: 10 -> skills: 8, 12
armor1: 1 -> skills: 2, 25
armor1: 19 -> skills: 25
armor2: 5 -> skills: 15
armor2: 18 -> skills: 27
armor3: 34 -> skills: 1, 25
armor3: 3 -> skills: 7, 4
armor4: 34 -> skills: 1
armor4: 8 -> skills: 32, 29

The first ID set is weapons, the second ID set is the first armor and so on. You need to specify it correctly. I noticed that you use ID 34 as armor3 AND armor4. Of course it doesn't work.
Get King of Booze for Android, for iOS, for OUYA or for Windows!
Visit our website.
You can also love/hate us on Facebook or the game itself.


Get DropBox, the best free file syncing service there is!

***
Rep:
Level 88
Professional Chocobo Hunter
The only problem I am having now is that the skill is learned when equipped, but does not dissapear when unequipped.
« Last Edit: April 17, 2007, 07:33:34 PM by Alerith »
Crystal Collection - On hold.

FF:Dark Symphony - 12%
Demo: May 10th, 2007

***
Rep:
Level 88
Professional Chocobo Hunter
Bump.

This is one of the last major scripts I need.
Crystal Collection - On hold.

FF:Dark Symphony - 12%
Demo: May 10th, 2007

*****
<3
Rep:
Level 90
Try Conditional Branches, I THINK below I got a GUIDELINE (not the actual event)

Code: [Select]
<>When [Chocobo] equips [Claws] Change skills to [XXXXX]
<> When [Chocobo] unequips [Claws] Remove skills [XXXXX]

Please correct me if I'm wrong

~Winged



**
Rep: +0/-0Level 87
You have to make a new attribute called $EQUAP_ELEMENT and then add that atrribute to the skill.
Later