There is any packet to remove or handle it? I've clicked and done all the basic steps to test it, but I wanted to make the button disappear after a first credit XD
It's a good feature on the client.
It's a good feature on the client.
public enum MainFlagType : uint
{
None = 0,
CanClaim = 1 << 0,
ShowSpecialItems = 1 << 1,
ClaimGift = 1 << 2,
OnMeleeAttack = 1 << 3,
}
I'll give it a try and post edit the main post with the result. Thank you very much.Quote:
this use the WindWalker flag, is type 71 in packet 10017
there is a file in client to edit this. but i don't remember the nameCode:public enum MainFlagType : uint { None = 0, CanClaim = 1 << 0, ShowSpecialItems = 1 << 1, ClaimGift = 1 << 2, OnMeleeAttack = 1 << 3, }