PDA

View Full Version : Items class changing


Magefeu
08-30-2006, 04:44 AM
I know it may look stupid (ok it took me 3 days to figure it out and I am ashamed) but if you want to change the class of your item without using any tool just think that the class field is an integer used as a set of binary flags.

If you take the following class list with one bit for each class you should be able to edit your items directly in mysql.

1 Warrior
2 Cleric
3 Paladin
4 Ranger
5 Shadow Knight
6 Druid
7 Monk
8 Bard
9 Rogue
10 Shaman
11 Necromancer
12 Wizard
13 Magician
14 Enchanter
15 Beastlord
16 Berserker

IE :
Class = 1 => Warrior => 0000000000000001
Class = 2 => Cleric => 0000000000000010
Class = 3 => Warrior & Cleric => 0000000000000011
Class = 4 => Paladin => 0000000000000100
Class = 5 => Paladin & Warrior => 0000000000000101
ect...

BTW it works the same way for the races

I hope it makes it clearer for some of us....