Jump to content
  • 0

Can't equip any Crimson weapon


juanelox

Question


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  08/06/16
  • Last Seen:  

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

  • 0

  • Group:  Developer
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  2285
  • Reputation:   745
  • Joined:  06/16/12
  • Last Seen:  

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

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  6
  • Reputation:   1
  • Joined:  02/23/13
  • Last Seen:  

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 } .

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  08/06/16
  • Last Seen:  

CrimsonEnchant.png

 

Im missig those little windows with the element.
It should look like that

 

Mine doesnt have the Element :(

Edited by juanelox
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   0
  • Joined:  07/06/16
  • Last Seen:  

CrimsonEnchant.png

 

Im missig those little windows with the element.

It should look like that

 

Mine doesnt have the Element :(

Paste your item script here

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  08/06/16
  • Last Seen:  

 

CrimsonEnchant.png

 

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
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   0
  • Joined:  07/06/16
  • Last Seen:  

 

 

CrimsonEnchant.png

 

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; },{},{}
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  08/06/16
  • Last Seen:  

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.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   0
  • Joined:  07/06/16
  • Last Seen:  

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.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  139
  • Reputation:   24
  • Joined:  09/02/12
  • Last Seen:  

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.

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   0
  • Joined:  07/06/16
  • Last Seen:  

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.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  18
  • Reputation:   0
  • Joined:  08/06/16
  • Last Seen:  

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

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...