juanelox Posted November 6, 2016 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 08/06/16 Last Seen: January 1, 2024 Share 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 Link to comment Share on other sites More sharing options...
0 Cydh Posted November 11, 2016 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 747 Joined: 06/16/12 Last Seen: February 21 Share 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 Link to comment Share on other sites More sharing options...
0 Rexona91 Posted November 7, 2016 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 6 Reputation: 1 Joined: 02/23/13 Last Seen: June 9, 2020 Share 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 Link to comment Share on other sites More sharing options...
0 juanelox Posted November 7, 2016 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 08/06/16 Last Seen: January 1, 2024 Author Share 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 Link to comment Share on other sites More sharing options...
0 mauiboy Posted November 7, 2016 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 63 Reputation: 1 Joined: 07/06/16 Last Seen: February 1 Share 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 Link to comment Share on other sites More sharing options...
0 juanelox Posted November 8, 2016 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 08/06/16 Last Seen: January 1, 2024 Author Share 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 Link to comment Share on other sites More sharing options...
0 mauiboy Posted November 8, 2016 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 63 Reputation: 1 Joined: 07/06/16 Last Seen: February 1 Share 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 Link to comment Share on other sites More sharing options...
0 juanelox Posted November 10, 2016 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 08/06/16 Last Seen: January 1, 2024 Author Share 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 Link to comment Share on other sites More sharing options...
0 mauiboy Posted November 10, 2016 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 63 Reputation: 1 Joined: 07/06/16 Last Seen: February 1 Share 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 Link to comment Share on other sites More sharing options...
0 reigneil Posted November 10, 2016 Group: Members Topic Count: 6 Topics Per Day: 0.00 Content Count: 139 Reputation: 24 Joined: 09/02/12 Last Seen: July 11, 2024 Share 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 Link to comment Share on other sites More sharing options...
0 mauiboy Posted November 10, 2016 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 63 Reputation: 1 Joined: 07/06/16 Last Seen: February 1 Share 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 Link to comment Share on other sites More sharing options...
0 juanelox Posted November 11, 2016 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 18 Reputation: 0 Joined: 08/06/16 Last Seen: January 1, 2024 Author Share 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 Link to comment Share on other sites More sharing options...
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
Link to comment
Share on other sites
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.