Setting The Blade Type Of An Item

How to set the blade type of an item

 

First select the item you wish to edit in the directory lua/wos/advswl/crafting/items (If you want to create your own item for this please refer to this link: https://support.wiltostech.com/knowledgebase/21/Creating-your-own-Items.html)

You will see something similar to this:

 

ITEM.OnEquip = function( wep )

wep.CustomSettings[ "Blade" ] = "Corrupted"

wep.UseColor = Color( 0, 0, 255 )

end

 

What we specifically need out of this is the "wep.CustomSettings[ "Blade" ] = "Corrupted"", so if you don't see it go ahead and add it in

Your next step will just be to replace the "Corrupted" (Or whatever other value that's there) to your preferred blade (See list of blade ids at the end of the article)

 

Blade Type List

  • Standard
  • Unstable
  • Corrupted
  • Pulsed
  • Pervasive
  • Saw Tooth
  • Mastered
  • Smithed
  • Dark Saber
  • Cyclic Invert
  • Swirl
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Creating Your Own Item

How to create your own items   local ITEM = {}   ITEM.Name = "Enter Item Name"...

Change Max Inventory Slots

How to change the max inventory slots Navigate to...

Setting Blade Type

Setting blade type of weapon/item How to set the blade type of a weapon/item including...

Change Item Spawn Rates, And Data Saving Occurency

How to change loot spawn percentage/frequency, and inventory/crafting data saving Navigate to...

Enable/Disable Zhrom/Clone Adventures Pack

How to configure enabling/disabling extra content Navigate to...