mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-09 17:33:21 +00:00
Add missing stock to jutil.inc
This commit is contained in:
parent
b1782c1c28
commit
8d05ef6092
3 changed files with 5 additions and 5 deletions
Binary file not shown.
|
@ -139,6 +139,11 @@ stock bool FindSurvivorModel(const char str[16], char[] model, int modelStrSize)
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
stock bool TraceFilter(int entity, int contentsMask) {
|
||||||
|
if( entity <= MaxClients )
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
stock bool GetGround(int client, float[3] vPos, float[3] vAng) {
|
stock bool GetGround(int client, float[3] vPos, float[3] vAng) {
|
||||||
GetClientAbsOrigin(client, vPos);
|
GetClientAbsOrigin(client, vPos);
|
||||||
vAng = vPos;
|
vAng = vPos;
|
||||||
|
|
|
@ -216,11 +216,6 @@ stock int SpawnSurvivor(const float vPos[3], const float vAng[3], const char[] m
|
||||||
//probably return user_id?
|
//probably return user_id?
|
||||||
return bot_client_id;
|
return bot_client_id;
|
||||||
}
|
}
|
||||||
stock bool TraceFilter(int entity, int contentsMask) {
|
|
||||||
if( entity <= MaxClients )
|
|
||||||
return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
void AvoidCharacter(int type, bool avoid) {
|
void AvoidCharacter(int type, bool avoid) {
|
||||||
for( int i = 1; i <= MaxClients; i++ )
|
for( int i = 1; i <= MaxClients; i++ )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue