First Credit Gift question

08/12/2019 18:47 pintinho12#1
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.
08/12/2019 21:58 teroareboss1#2
this use the WindWalker flag, is type 71 in packet 10017

Code:
 public enum MainFlagType : uint
        {
            None = 0,
            CanClaim = 1 << 0,
            ShowSpecialItems = 1 << 1,
            ClaimGift = 1 << 2,
            OnMeleeAttack = 1 << 3,
        }
there is a file in client to edit this. but i don't remember the name
08/13/2019 03:43 pintinho12#3
Quote:
Originally Posted by teroareboss1 View Post
this use the WindWalker flag, is type 71 in packet 10017

Code:
 public enum MainFlagType : uint
        {
            None = 0,
            CanClaim = 1 << 0,
            ShowSpecialItems = 1 << 1,
            ClaimGift = 1 << 2,
            OnMeleeAttack = 1 << 3,
        }
there is a file in client to edit this. but i don't remember the name
I'll give it a try and post edit the main post with the result. Thank you very much.