Assign random option to item on drop

Last edited by a moderator:
That allows you to add random bonuses, but does it allow them on drop or only through an NPC?

 
That allows you to add random bonuses, but does it allow them on drop or only through an NPC?
just add on folder item_db.conf

ex:

Code:
{
	Id: 1201
	AegisName: "Knife"
	Name: "Knife"
	Type: "IT_WEAPON"
	Buy: 50
	Weight: 400
	Atk: 17
	Range: 1
	Slots: 3
	Job: {
		Novice: true
		Swordsman: true
		Magician: true
		Archer: true
		Merchant: true
		Thief: true
		Knight: true
		Wizard: true
		Blacksmith: true
		Hunter: true
		Assassin: true
		Crusader: true
		Sage: true
		Rogue: true
		Alchemist: true
		Bard: true
		Soul_Linker: true
		Ninja: true
		Kagerou: true
	}
	DisableOptions: true/false    <<<<<< (boolean, defaults to false !!for equipments only!!) [Smokexyz]
	Loc: "EQP_WEAPON"
	WeaponLv: 1
	Subtype: "W_DAGGER"
},
 
That "DisableOptions" just allows you to choose if an option can be added via NPC or not, it does not add an option on drop.

 
Randomized drops not support by hercules for now.

You can try create plugin for this.

 
Back
Top