Anyone here have the latest public class Flags / Flags2 ?
Packets: sampleQuote:
Flags? :/
public class Flags
{
public const ulong ArcherTop2 = 0x55L;
public const ulong ArcherTop3 = 0x56L;
public const ulong ArcherTop8 = 0x54L;
public const ulong Ball = 0x80000L;
public const ulong Ball2 = 0x100000L;
public const ulong BlackName = 0x8000L;
public const ulong CastPray = 0x40000000L;
public const ulong ChaosCycle = 0x1000000000000000L;
public const ulong Confused = 0x1000000000000000L;
Wrong. Flags do sometimes appear in packets (as you showed above), but they are NOT packets.Quote:
Packets: sample
Code:public class Flags { public const ulong ArcherTop2 = 0x55L; public const ulong ArcherTop3 = 0x56L; public const ulong ArcherTop8 = 0x54L; public const ulong Ball = 0x80000L; public const ulong Ball2 = 0x100000L; public const ulong BlackName = 0x8000L; public const ulong CastPray = 0x40000000L; public const ulong ChaosCycle = 0x1000000000000000L; public const ulong Confused = 0x1000000000000000L;
I don't understand y'all don't just give an enum the Flags attribute and treat it that way.Quote:
Packets: sample
Code:public class Flags { public const ulong ArcherTop2 = 0x55L; public const ulong ArcherTop3 = 0x56L; public const ulong ArcherTop8 = 0x54L; public const ulong Ball = 0x80000L; public const ulong Ball2 = 0x100000L; public const ulong BlackName = 0x8000L; public const ulong CastPray = 0x40000000L; public const ulong ChaosCycle = 0x1000000000000000L; public const ulong Confused = 0x1000000000000000L;
ah oke thanks i was wrong lol, do you have the list of the other effects like the posted aboveQuote:
Wrong. Flags do sometimes appear in packets (as you showed above), but they are NOT packets.
Bit field - Wikipedia, the free encyclopedia
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
Also, look in the client's ini folder. There should be a file in there that relates to status flags.