I have download the .inc and i put it on samp-server\include and samp-server\pawno\include I also created a simple .pwn that has this:
public OnPlayerWeaponShot(playerid, weaponid, hittype, hitid, Float:fX, Float:fY, Float:fZ)
{
CreateExplosion(fX, fY, fZ, 12, 10.0);
printf("OnPlayerWeaponShot");
new str[128];
format(str, sizeof(str), "OnPlayerWeaponShot(%d shot %d with %d at %f, %f, %f)",playerid, hitid, weaponid, fX, fY, fZ);
SendClientMessage(playerid, -1, str);
}
But when I join the server with lagshoot off, OnPlayerWeaponShot doesn't get called at all
https://github.com/ReshiramZekrom1/samp-opws-fix
If I enable lagshoot, it does get called
