We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to use DynamicHook, however, I'm finding that no matter how I hook it, it doesn't trigger any messages
private MemoryFunctionVoid<nint, float , float, float> CCSBot_Blind; public override void Load(bool hotReload) { RegisterListener<Listeners.OnEntitySpawned>(OnEntitySpawnedHandler); CCSBot_Blind = new("55 48 8D 35 48 CA C9 00", Addresses.ServerPath); CCSBot_Blind.Hook(hk_CCSBot_Blind, HookMode.Pre); } private HookResult hk_CCSBot_Blind(DynamicHook arg) { Server.PrintToChatAll("CCSBot_Blind Go"); Console.WriteLine("CCSBot_Blind Go"); Console.WriteLine("CCSBot_Blind Go"); Console.WriteLine("CCSBot_Blind Go"); return HookResult.Continue; }
The text was updated successfully, but these errors were encountered:
So, is it DynamicHook's problem or mine now?
Sorry, something went wrong.
I would probably confirm that this is actually a hot code path using the appropriate tooling (debugger etc.)
No branches or pull requests
I'm trying to use DynamicHook, however, I'm finding that no matter how I hook it, it doesn't trigger any messages
The text was updated successfully, but these errors were encountered: