enum PlayerStates {
IconNone = 0,
IconPoison = 1,
IconBurn = 2,
IconEnergy = 4,
IconDrunk = 8,
IconManaShield = 16,
IconParalyze = 32,
IconHaste = 64,
IconSwords = 128,
IconDrowning = 256,
IconFreezing = 512,
IconDazzled = 1024,
IconCursed = 2048,
IconPartyBuff = 4096,
IconPzBlock = 8192,
IconPz = 16384,
IconBleeding = 32768,
IconHungry = 65536,
IconSilenced = 131072,
IconDisarmed = 262144,
IconRooted = 524288,
IconStunned = 1048576,
IconBlinded = 2097152,
IconVengeance = 4194304
};
I'm looking for this too, specifically how to add new Icons, I added tons of new Conditions to my server and client, created their Icons but they don't show up ingame for some reason. Maybe its related to the PlayerState enum using a power of 2?
C++:enum PlayerStates { IconNone = 0, IconPoison = 1, IconBurn = 2, IconEnergy = 4, IconDrunk = 8, IconManaShield = 16, IconParalyze = 32, IconHaste = 64, IconSwords = 128, IconDrowning = 256, IconFreezing = 512, IconDazzled = 1024, IconCursed = 2048, IconPartyBuff = 4096, IconPzBlock = 8192, IconPz = 16384, IconBleeding = 32768, IconHungry = 65536, IconSilenced = 131072, IconDisarmed = 262144, IconRooted = 524288, IconStunned = 1048576, IconBlinded = 2097152, IconVengeance = 4194304 };
This post is already old, so all you have to do is create your own post explaining what problem you have, what needs to be corrected, or what solution you are looking for. Just create a topic for yourself.I'm looking for this too
This post is already old, so all you have to do is create your own post explaining what problem you have, what needs to be corrected, or what solution you are looking for. Just create a topic for yourself.