juanelox Posted November 6, 2016 Posted November 6, 2016 Hi, I want to implement those weapons to my server but I Cant equip them, I think its because it need the Element option but I dont understand how to add that to the item.Help please Quote
0 Cydh Posted November 11, 2016 Posted November 11, 2016 If you can't equip it, just check the job and class for those items see Corrected job for Crimson Weapons, Infinity Weapons, and a Spoon! if u don't know how to set the option for the weapon, try read this maybe: Crimson Weapon and Item Random Options Quote
0 Rexona91 Posted November 7, 2016 Posted November 7, 2016 Check on pre re/item_db or re/item_db for the item you mention, find Job and Class option and see if your Job are capable of equip those weapon. Read Doc/Itemdb for class and job info. ID,AegisName,Name,Type,Buy,Sell,Weight,ATK,DEF,Range,Slots,Job,Class,Gender,Loc,wLV,eLV[:maxLevel],Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script } For element option, you can refer on doc/item bonus. Read those file, it helps you how to add element to weapon. the script later on will be put onto Script option. Element need script to run. So it is important to read item bonus.txt and understand it. Example Element Script : bonus bAtkEle,Ele_Holy; < ----this will grant item a Holy Element Attribute when Attacking. Where to put this? >> { SCRIPT } . Quote
0 juanelox Posted November 7, 2016 Author Posted November 7, 2016 (edited) Im missig those little windows with the element.It should look like that Mine doesnt have the Element Edited November 7, 2016 by juanelox Quote
0 mauiboy Posted November 7, 2016 Posted November 7, 2016 Im missig those little windows with the element. It should look like that Mine doesnt have the Element Paste your item script here Quote
0 juanelox Posted November 8, 2016 Author Posted November 8, 2016 Im missig those little windows with the element. It should look like that Mine doesnt have the Element Paste your item script here 28007,Crimson_Katar,Crimson Katar,5,20,,1300,130,,1,2,0x00001000,63,2,34,3,70,1,16,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}This one for example Quote
0 mauiboy Posted November 8, 2016 Posted November 8, 2016 Im missig those little windows with the element. It should look like that Mine doesnt have the Element Paste your item script here 28007,Crimson_Katar,Crimson Katar,5,20,,1300,130,,1,2,0x00001000,63,2,34,3,70,1,16,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}This one for example Try this 28007,Crimson_Katar,Crimson Katar,5,20,,1300,130,,1,2,0x00008100,7,2,2,3,1,0,12,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bAtkEle,Ele_Holy; },{},{} Quote
0 juanelox Posted November 10, 2016 Author Posted November 10, 2016 On 11/8/2016 at 5:17 AM, mauiboy said: Try this 28007,Crimson_Katar,Crimson Katar,5,20,,1300,130,,1,2,0x00008100,7,2,2,3,1,0,12,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bAtkEle,Ele_Holy; },{},{} but that would make it Holy element. The item its supposed to get a random element upon drop. Quote
0 mauiboy Posted November 10, 2016 Posted November 10, 2016 31 minutes ago, juanelox said: but that would make it Holy element. The item its supposed to get a random element upon drop. I suggest, just make the same item but with different elements then put them on the dropable list of your desired monster. Quote
0 reigneil Posted November 10, 2016 Posted November 10, 2016 i think your looking for this: although i don't know (idea) how to use it. @Secrets for me that crimson weapon script is kinda overpower to me. i think there is something wrong with this formula. (BaseLevel/10)*5) base on what i experience in official server. 1 Quote
0 mauiboy Posted November 10, 2016 Posted November 10, 2016 5 hours ago, reigneil said: i think your looking for this: although i don't know (idea) how to use it. @Secrets for me that crimson weapon script is kinda overpower to me. i think there is something wrong with this formula. (BaseLevel/10)*5) base on what i experience in official server. I guess this is the solution. Quote
0 juanelox Posted November 11, 2016 Author Posted November 11, 2016 16 hours ago, reigneil said: i think your looking for this: although i don't know (idea) how to use it. @Secrets for me that crimson weapon script is kinda overpower to me. i think there is something wrong with this formula. (BaseLevel/10)*5) base on what i experience in official server. Yes! That's it, no idea how to use it tho but ill check Quote
Question
juanelox
Hi, I want to implement those weapons to my server but I Cant equip them, I think its because it need the Element option but I dont understand how to add that to the item.
Help please
11 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.