Hidden Weapon Attributes (Skills)

02/02/2014 14:44 Y u k i#1
[Only registered and activated users can see links. Click Here To Register...]

There are some weapons on real Conquer that contain one of those three skills, how would I display them client side?

I was experimenting with the item packet but i couldnt figure it out..

10200 Poison [PoisonWeapon]
10201 Cure [HPBacksword]
10202 Meditation [MPBacksword]

We are on Patch 5018

ItemInfo Packet:
offset 26

Is there a way to add more? Like 100 = Thunder or something?
02/02/2014 15:10 Aceking#2
Leave the thread open, some people may find it useful.

Later patches it is offset 28 (patch 5500~)

Code:
public enum RebornEffect : ushort
    {
            None = 0,
            Poison = 200,
            HP = 201,
            MP = 202,
            Shield = 203,
    }