View Single Post
fragnichtnach
AlliedModders Donor
Join Date: Oct 2008
Old 10-19-2018 , 03:08   Re: hook ReloadEffect csgo not work
Reply With Quote #12

Quote:
Originally Posted by client21 View Post
No.. Just i must use sdkhooks hook or weapon_reload, "ReloadEffect" don't worked, and no help.
And in csgo not work this AcceptEntityInput(client, "DispatchEffect");

For example, remember that this effects must working in csgo:

PHP Code:
GlassImpact
watersplash
TeslaZap
TeslaHitboxes
HelicopterMegaBomb
WaterSurfaceExplosion 
SetVariantString("WaterSurfaceExplosion");
AcceptEntityInput(client, "DispatchEffect");

But not work, stupid csgo.
Try to hook that one like this:
Code:
AddTempEntHook("DispatchEffect", Hook_DispatchEffect);
and
Code:
public Action Hook_DispatchEffect(const char[] te_name, const int[] players, int numClients, float delay)
{
}
fragnichtnach is offline