Kozima Posted December 21, 2013 Posted December 21, 2013 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 Quote
Emistry Posted December 21, 2013 Posted December 21, 2013 you can just simply add the combo set here db/re/item_combo_db.txt // Structure of Database: // ID:ID:ID:ID,{ Script } Quote
Kido Posted December 21, 2013 Posted December 21, 2013 (edited) 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: RecognizeWe 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 December 21, 2013 by Kido Quote
Kozima Posted December 21, 2013 Author Posted December 21, 2013 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 thanks Quote
Question
Kozima
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.