|
|
@ -2,7 +2,7 @@ |
|
|
|
#include <sourcemod> |
|
|
|
#include <sdkhooks> |
|
|
|
|
|
|
|
#define nigga_bomb "tf_projectile_pipe_remote" |
|
|
|
#define nigga_bomb "tf_projectile" |
|
|
|
|
|
|
|
public Plugin:myinfo = |
|
|
|
{ |
|
|
@ -14,9 +14,9 @@ public Plugin:myinfo = |
|
|
|
} |
|
|
|
|
|
|
|
public OnEntityCreated (entity, const String:classname[]) { |
|
|
|
if(StrEqual(classname, nigga_bomb)) |
|
|
|
if(StrContains(classname, nigga_bomb) != -1) |
|
|
|
{ |
|
|
|
//PrintToChatAll("%d place pipe", GetEntPropEnt(entity, Prop_Data, "m_hOwnerEntity")); |
|
|
|
//PrintToChatAll("%d place %s", GetEntPropEnt(entity, Prop_Data, "m_hOwnerEntity"), classname); |
|
|
|
SDKHook(entity, SDKHook_Touch, OnPipeTouch); |
|
|
|
} |
|
|
|
} |
|
|
|