Jump to content
  • 0

How to Make Combo Item


Kozima

Question


  • Group:  Members
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  82
  • Reputation:   2
  • Joined:  10/30/13
  • Last Seen:  

20211,Black_White_Baphomet_Horns,Black White Baphomet Horns,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,256,,0,1,1411,{ bonus bAllStats,12; bonus2 bAddRace,RC_DemiHuman,12; },{},{}

 


20119,Wings_Of_Balance,Wings Of Balance,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,1,,0,0,1319,{bonus bAllStats,12;  bonus2 bAddRace,RC_DemiHuman,10; },{},{}

 


20132,Byakugan,Byakugan,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,512,,0,0,1332,{ bonus bAllStats,3;  bonus2 bAddRace,RC_DemiHuman,7;  },{},{}

 

 

i need give a combo bonus if use It

 

20211 + 20119 + 20132 together

 

if using 20211 + 20119 + 20132

 

get bonus :

{bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;}

 

where i can place {bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;}

 

please help me , Thanks 


 


 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

you can just simply add the combo set here

db/re/item_combo_db.txt

// Structure of Database:
// ID:ID:ID:ID,{ Script }
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

Well that's pretty easy to do, if you are asking this it may be because you don't know at all how to do bonuses and combos, so assuming that, allow me to do it for you and give you some steps/tips:

 

Step 1: Recognize
We have these scripts

20211,Black_White_Baphomet_Horns,Black White Baphomet Horns,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,256,,0,1,1411,{ bonus bAllStats,12; bonus2 bAddRace,RC_DemiHuman,12; },{},{}
20119,Wings_Of_Balance,Wings Of Balance,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,1,,0,0,1319,{bonus bAllStats,12;  bonus2 bAddRace,RC_DemiHuman,10; },{},{}
20132,Byakugan,Byakugan,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,512,,0,0,1332,{ bonus bAllStats,3;  bonus2 bAddRace,RC_DemiHuman,7;  },{},{}

combo: bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

 

Step 2: Simplify

We have this effects

20211: STATS + 12, 12% Mote Damage Agains Demi-Human Monsters

20119: STATS + 12, 10% Mote Damage Agains Demi-Human Monsters

20132: STATS + 3, 7% Mote Damage Agains Demi-Human Monsters

combo: 7% More Damage and Tolerance Agains Demi-Human Monsters

 

Step 3: Determining the combo

We want this effect when they are together

7% More Damage and Tolerance Agains Demi-Human Monsters and the script is bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

 

Step 4: Logic of the combo

Since we know that this will only work if all of them are equiped together, we just need to give the script to a single one, no matter which one you choose, the script will only work if they are equiped together

 

Step 5: Doing the script

Add the following to any equipment in the OnEquipScript (the first {} ) also note the Bold text so next time you will know what bonus to use

If you are going to add the script to the item 20211

if(isequipped(20119,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

If you are going to add the script to the item 20119

if(isequipped(20211,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

If you are going to add the script to the item 20132

if(isequipped(20211,20119)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

 

With practice, you will easly dominate this and you will be able to do it automatically

 

At the end, you may use any of this lines and your combo will work:

20211,Black_White_Baphomet_Horns,Black White Baphomet Horns,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,256,,0,1,1411,{ bonus bAllStats,12; bonus2 bAddRace,RC_DemiHuman,12; if(isequipped(20119,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7; },{},{}
20119,Wings_Of_Balance,Wings Of Balance,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,1,,0,0,1319,{bonus bAllStats,12;  bonus2 bAddRace,RC_DemiHuman,10; if(isequipped(20211,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7; },{},{}
20132,Byakugan,Byakugan,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,512,,0,0,1332,{ bonus bAllStats,3;  bonus2 bAddRace,RC_DemiHuman,7; if(isequipped(20211,20119)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7; },{},{}

I hope this solves your question and will help you on the future (:

Edited by Kido
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  82
  • Reputation:   2
  • Joined:  10/30/13
  • Last Seen:  

Well that's pretty easy to do, if you are asking this it may be because you don't know at all how to do bonuses and combos, so assuming that, allow me to do it for you and give you some steps/tips:

 

Step 1: Recognize

We have these scripts

20211,Black_White_Baphomet_Horns,Black White Baphomet Horns,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,256,,0,1,1411,{ bonus bAllStats,12; bonus2 bAddRace,RC_DemiHuman,12; },{},{}
20119,Wings_Of_Balance,Wings Of Balance,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,1,,0,0,1319,{bonus bAllStats,12;  bonus2 bAddRace,RC_DemiHuman,10; },{},{}
20132,Byakugan,Byakugan,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,512,,0,0,1332,{ bonus bAllStats,3;  bonus2 bAddRace,RC_DemiHuman,7;  },{},{}

combo: bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

 

Step 2: Simplify

We have this effects

20211: STATS + 12, 12% Mote Damage Agains Demi-Human Monsters

20119: STATS + 12, 10% Mote Damage Agains Demi-Human Monsters

20132: STATS + 3, 7% Mote Damage Agains Demi-Human Monsters

combo: 7% More Damage and Tolerance Agains Demi-Human Monsters

 

Step 3: Determining the combo

We want this effect when they are together

7% More Damage and Tolerance Agains Demi-Human Monsters and the script is bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

 

Step 4: Logic of the combo

Since we know that this will only work if all of them are equiped together, we just need to give the script to a single one, no matter which one you choose, the script will only work if they are equiped together

 

Step 5: Doing the script

Add the following to any equipment in the OnEquipScript (the first {} ) also note the Bold text so next time you will know what bonus to use

If you are going to add the script to the item 20211

if(isequipped(20119,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

If you are going to add the script to the item 20119

if(isequipped(20211,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

If you are going to add the script to the item 20132

if(isequipped(20211,20119)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

 

With practice, you will easly dominate this and you will be able to do it automatically

 

At the end, you may use any of this lines and your combo will work:

20211,Black_White_Baphomet_Horns,Black White Baphomet Horns,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,256,,0,1,1411,{ bonus bAllStats,12; bonus2 bAddRace,RC_DemiHuman,12; if(isequipped(20119,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7; },{},{}
20119,Wings_Of_Balance,Wings Of Balance,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,1,,0,0,1319,{bonus bAllStats,12;  bonus2 bAddRace,RC_DemiHuman,10; if(isequipped(20211,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7; },{},{}
20132,Byakugan,Byakugan,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,512,,0,0,1332,{ bonus bAllStats,3;  bonus2 bAddRace,RC_DemiHuman,7; if(isequipped(20211,20119)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7; },{},{}

I hope this solves your question and will help you on the future (:

 

Well that's pretty easy to do, if you are asking this it may be because you don't know at all how to do bonuses and combos, so assuming that, allow me to do it for you and give you some steps/tips:

 

Step 1: Recognize

We have these scripts

20211,Black_White_Baphomet_Horns,Black White Baphomet Horns,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,256,,0,1,1411,{ bonus bAllStats,12; bonus2 bAddRace,RC_DemiHuman,12; },{},{}
20119,Wings_Of_Balance,Wings Of Balance,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,1,,0,0,1319,{bonus bAllStats,12;  bonus2 bAddRace,RC_DemiHuman,10; },{},{}
20132,Byakugan,Byakugan,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,512,,0,0,1332,{ bonus bAllStats,3;  bonus2 bAddRace,RC_DemiHuman,7;  },{},{}

combo: bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

 

Step 2: Simplify

We have this effects

20211: STATS + 12, 12% Mote Damage Agains Demi-Human Monsters

20119: STATS + 12, 10% Mote Damage Agains Demi-Human Monsters

20132: STATS + 3, 7% Mote Damage Agains Demi-Human Monsters

combo: 7% More Damage and Tolerance Agains Demi-Human Monsters

 

Step 3: Determining the combo

We want this effect when they are together

7% More Damage and Tolerance Agains Demi-Human Monsters and the script is bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

 

Step 4: Logic of the combo

Since we know that this will only work if all of them are equiped together, we just need to give the script to a single one, no matter which one you choose, the script will only work if they are equiped together

 

Step 5: Doing the script

Add the following to any equipment in the OnEquipScript (the first {} ) also note the Bold text so next time you will know what bonus to use

If you are going to add the script to the item 20211

if(isequipped(20119,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

If you are going to add the script to the item 20119

if(isequipped(20211,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

If you are going to add the script to the item 20132

if(isequipped(20211,20119)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7;

 

With practice, you will easly dominate this and you will be able to do it automatically

 

At the end, you may use any of this lines and your combo will work:

20211,Black_White_Baphomet_Horns,Black White Baphomet Horns,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,256,,0,1,1411,{ bonus bAllStats,12; bonus2 bAddRace,RC_DemiHuman,12; if(isequipped(20119,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7; },{},{}
20119,Wings_Of_Balance,Wings Of Balance,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,1,,0,0,1319,{bonus bAllStats,12;  bonus2 bAddRace,RC_DemiHuman,10; if(isequipped(20211,20132)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7; },{},{}
20132,Byakugan,Byakugan,5,0,0,0,,5,,0,0xFFFFFFFF,7,2,512,,0,0,1332,{ bonus bAllStats,3;  bonus2 bAddRace,RC_DemiHuman,7; if(isequipped(20211,20119)) bAddRace,RC_DemiHuman,7; bSubRace,RC_DemiHuman,7; },{},{}

I hope this solves your question and will help you on the future (:

Thanks Sir ^^

 

you can just simply add the combo set here

db/re/item_combo_db.txt

// Structure of Database:
// ID:ID:ID:ID,{ Script }

Emistry  /omg thanks  /heh

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

you are welcome :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...