Raised This Month: $51 Target: $400
 12% 

[Tutorial] [CS:GO] How to make a gun silent


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
eyal282
Veteran Member
Join Date: Aug 2011
Old 12-07-2020 , 10:50   [Tutorial] [CS:GO] How to make a gun silent
Reply With Quote #1

Code:
AddTempEntHook("Shotgun Shot", Hook_FireBullets);


public Action:Hook_FireBullets(const String:te_name[], const Players[], numClients, Float:delay)
{
	new client = 0;
	
	for (new i = 1; i <= MaxClients;i++)
	{
		if(!IsClientInGame(i))
			continue;
			
		new bool:Found = false;
		
		for (new a = 0; a < numClients;a++)
		{
			if(Players[a] == i)
				Found = true;
		}
		
		if(!Found)
		{
			client = i;
			
			break;
		}
	}
	
	if(client == 0)
		return Plugin_Continue;
	
	new weapon = GetEntPropEnt(client, Prop_Send, "m_hActiveWeapon");

	if(weapon == -1)
		return Plugin_Continue;

	// client is the player that fired the weapon	
	// weapon is the weapon that was fired.
	return Plugin_Stop;
}
I have no clue why the temp ent is "Shotgun Shot" but it actually works.
__________________
I am available to make plugins for pay.

Discord: Eyal282#1334

Last edited by eyal282; 12-07-2020 at 16:06.
eyal282 is offline
 



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 13:37.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode