CM3D2.MaidFiddler.Hook.PlayerStatusChangeHooks.OnPlayerStatChanged C# (CSharp) Method

OnPlayerStatChanged() public static method

public static OnPlayerStatChanged ( int tag ) : bool
tag int
return bool
        public static bool OnPlayerStatChanged(int tag)
        {
            PlayerValueChangeEventArgs args = new PlayerValueChangeEventArgs
            {
                Tag = (PlayerChangeType) tag,
                Block = false
            };
            PlayerValueChanged?.Invoke(null, args);
            return args.Block;
        }
    }
PlayerStatusChangeHooks