Item Equip possible to Ninja , Gunslinger, Star Gladiator

Dominating

New member
Messages
19
Points
0
Hello Guys!... 
default_biggrin.png


How to modify this Item EXPERT RING so it can be equipped by Ninja , Gunslinger adn Start Gladiator Jobs

Code:
Id: 2703
	AegisName: "Expert_Ring"
	Name: "Expert Ring"
	Type: 5
	Buy: 20
	Weight: 150
	Slots: 1
	Job: {
		All: true
		Novice: false
	}
	Upper: 2
	Loc: 136
	EquipLv: 50
	Refine: false
	Script: <"
		bonus bDelayrate,-5;
		bonus bUseSPrate,5;
	">
},
 
If your server is running with pre-re, it is already set to "All: true" and "Novice: false" which means it can be equipped with by all job except Novice.

If your server is running with renewal:

Under job, add this:

Ninja: true
Taekwon: true
Star_Gladiator: true
Gunslinger: true


so,  job should looks like this:

Code:
	Job: {
		Ninja: true
		Taekwon: true
		Star_Gladiator: true
		Gunslinger: true
		Swordsman: true
		Magician: true
		Archer: true
		Acolyte: true
		Merchant: true
		Thief: true
		Knight: true
		Priest: true
		Wizard: true
		Blacksmith: true
		Hunter: true
		Assassin: true
		Crusader: true
		Monk: true
		Sage: true
		Rogue: true
		Alchemist: true
		Bard: true
	}
 
You need to remove the "Upper: 2" bit.

Upper type 2 means only rebirth jobs can equip IRRC.

From: http://herc.ws/wiki/Custom_Items

Normal jobs: 0x01 (1)

Upper jobs: 0x02 (2)

Baby jobs: 0x04 (4)

Third jobs: 0x08 (8)

Upper Third jobs: 0x10 (16)

Baby Third jobs: 0x20 (32)

Under pre-re mode third classes are considered upper, making use of

the 8 and above masks is therefore not necessary unless in renewal

mode. When no value is specified, all classes (mask 0x3f) are able to

equip the item.
 
Back
Top