2008-10-04 22:59:11 +02:00
|
|
|
/**
|
|
|
|
* vim: set ts=4 :
|
|
|
|
* =============================================================================
|
|
|
|
* SourceMod (C)2004-2008 AlliedModders LLC. All rights reserved.
|
|
|
|
* =============================================================================
|
|
|
|
*
|
|
|
|
* This file is part of the SourceMod/SourcePawn SDK.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU General Public License, version 3.0, as published by the
|
|
|
|
* Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with
|
|
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* As a special exception, AlliedModders LLC gives you permission to link the
|
|
|
|
* code of this program (as well as its derivative works) to "Half-Life 2," the
|
|
|
|
* "Source Engine," the "SourcePawn JIT," and any Game MODs that run on software
|
|
|
|
* by the Valve Corporation. You must obey the GNU General Public License in
|
|
|
|
* all respects for all other code used. Additionally, AlliedModders LLC grants
|
|
|
|
* this exception to all derivative works. AlliedModders LLC defines further
|
|
|
|
* exceptions, found in LICENSE.txt (as of this writing, version JULY-31-2007),
|
|
|
|
* or <http://www.sourcemod.net/license.php>.
|
|
|
|
*
|
2009-04-14 23:40:48 +02:00
|
|
|
* Version: $Id$
|
2008-10-04 22:59:11 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined _sdktools_functions_included
|
|
|
|
#endinput
|
|
|
|
#endif
|
|
|
|
#define _sdktools_functions_included
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes a player's item.
|
|
|
|
*
|
|
|
|
* @param client Client index.
|
|
|
|
* @param item CBaseCombatWeapon entity index.
|
|
|
|
* @return True on success, false otherwise.
|
|
|
|
* @error Invalid client or entity, lack of mod support, or client not in
|
|
|
|
* game.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native bool RemovePlayerItem(int client, int item);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gives a named item to a player.
|
|
|
|
*
|
|
|
|
* @param client Client index.
|
|
|
|
* @param item Item classname (such as weapon_ak47).
|
|
|
|
* @param iSubType Unknown.
|
|
|
|
* @return Entity index on success, or -1 on failure.
|
|
|
|
* @error Invalid client or client not in game, or lack of mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native int GivePlayerItem(int client, const char[] item, int iSubType=0);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the weapon in a player's slot.
|
|
|
|
*
|
|
|
|
* @param client Client index.
|
|
|
|
* @param slot Slot index (mod specific).
|
|
|
|
* @return Entity index on success, -1 if no weapon existed.
|
|
|
|
* @error Invalid client or client not in game, or lack of mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native int GetPlayerWeaponSlot(int client, int slot);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ignites an entity on fire.
|
|
|
|
*
|
|
|
|
* @param entity Entity index.
|
|
|
|
* @param time Number of seconds to set on fire.
|
|
|
|
* @param npc True to only affect NPCs.
|
|
|
|
* @param size Unknown.
|
|
|
|
* @param level Unknown.
|
|
|
|
* @error Invalid entity or client not in game, or lack of mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void IgniteEntity(int entity, float time, bool npc=false, float size=0.0, bool level=false);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
2014-07-30 11:03:42 +02:00
|
|
|
* Extinguishes an entity that is on fire.
|
2008-10-04 22:59:11 +02:00
|
|
|
*
|
|
|
|
* @param entity Entity index.
|
|
|
|
* @error Invalid entity or client not in game, or lack of mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void ExtinguishEntity(int entity);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Teleports an entity.
|
|
|
|
*
|
|
|
|
* @param entity Client index.
|
|
|
|
* @param origin New origin, or NULL_VECTOR for no change.
|
|
|
|
* @param angles New angles, or NULL_VECTOR for no change.
|
|
|
|
* @param velocity New velocity, or NULL_VECTOR for no change.
|
|
|
|
* @error Invalid entity or client not in game, or lack of mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void TeleportEntity(int entity, const float origin[3], const float angles[3], const float velocity[3]);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Forces a player to commit suicide.
|
|
|
|
*
|
|
|
|
* @param client Client index.
|
|
|
|
* @error Invalid client or client not in game, or lack of mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void ForcePlayerSuicide(int client);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Slaps a player in a random direction.
|
|
|
|
*
|
|
|
|
* @param client Client index.
|
|
|
|
* @param health Health to subtract.
|
|
|
|
* @param sound False to disable the sound effects.
|
|
|
|
* @error Invalid client or client not in game, or lack of mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void SlapPlayer(int client, int health=5, bool sound=true);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Searches for an entity by classname.
|
|
|
|
*
|
|
|
|
* @param startEnt The entity index after which to begin searching from.
|
|
|
|
* Use -1 to start from the first entity.
|
|
|
|
* @param classname Classname of the entity to find.
|
|
|
|
* @return Entity index >= 0 if found, -1 otherwise.
|
|
|
|
* @error Lack of mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native int FindEntityByClassname(int startEnt, const char[] classname);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the client's eye angles.
|
|
|
|
*
|
|
|
|
* @param client Player's index.
|
|
|
|
* @param ang Destination vector to store the client's eye angles.
|
|
|
|
* @return True on success, false on failure.
|
|
|
|
* @error Invalid client index, client not in game, or no mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native bool GetClientEyeAngles(int client, float ang[3]);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an entity by string name, but does not spawn it (see DispatchSpawn).
|
|
|
|
* If ForceEdictIndex is not -1, then it will use the edict by that index. If the index is
|
|
|
|
* invalid or there is already an edict using that index, it will error out.
|
|
|
|
*
|
|
|
|
* @param classname Entity classname.
|
2012-01-28 02:16:49 +01:00
|
|
|
* @param ForceEdictIndex Edict index used by the created entity (ignored on Orangebox and above).
|
2008-10-04 22:59:11 +02:00
|
|
|
* @return Entity index on success, or -1 on failure.
|
|
|
|
* @error Invalid edict index, or no mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native int CreateEntityByName(const char[] classname, int ForceEdictIndex=-1);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Spawns an entity into the game.
|
|
|
|
*
|
|
|
|
* @param entity Entity index of the created entity.
|
|
|
|
* @return True on success, false otherwise.
|
|
|
|
* @error Invalid entity index, or no mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native bool DispatchSpawn(int entity);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatches a KeyValue into given entity using a string value.
|
|
|
|
*
|
|
|
|
* @param entity Destination entity index.
|
|
|
|
* @param keyName Name of the key.
|
|
|
|
* @param value String value.
|
|
|
|
* @return True on success, false otherwise.
|
|
|
|
* @error Invalid entity index, or no mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native bool DispatchKeyValue(int entity, const char[] keyName, const char[] value);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatches a KeyValue into given entity using a floating point value.
|
|
|
|
*
|
|
|
|
* @param entity Destination entity index.
|
|
|
|
* @param keyName Name of the key.
|
|
|
|
* @param value Floating point value.
|
|
|
|
* @return True on success, false otherwise.
|
|
|
|
* @error Invalid entity index, or no mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native bool DispatchKeyValueFloat(int entity, const char[] keyName, float value);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatches a KeyValue into given entity using a vector value.
|
|
|
|
*
|
|
|
|
* @param entity Destination entity index.
|
|
|
|
* @param keyName Name of the key.
|
|
|
|
* @param vec Vector value.
|
|
|
|
* @return True on success, false otherwise.
|
|
|
|
* @error Invalid entity index, or no mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native bool DispatchKeyValueVector(int entity, const char[] keyName, const float vec[3]);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the entity a client is aiming at.
|
|
|
|
*
|
|
|
|
* @param client Client performing the aiming.
|
|
|
|
* @param only_clients True to exclude all entities but clients.
|
|
|
|
* @return Entity index being aimed at.
|
|
|
|
* -1 if no entity is being aimed at.
|
|
|
|
* -2 if the function is not supported.
|
|
|
|
* @error Invalid client index or client not in game.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native int GetClientAimTarget(int client, bool only_clients=true);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the total number of teams in a game.
|
|
|
|
* Note: This native should not be called before OnMapStart.
|
|
|
|
*
|
|
|
|
* @return Total number of teams.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native int GetTeamCount();
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the team name based on a team index.
|
|
|
|
* Note: This native should not be called before OnMapStart.
|
|
|
|
*
|
|
|
|
* @param index Team index.
|
|
|
|
* @param name Buffer to store string in.
|
|
|
|
* @param maxlength Maximum length of string buffer.
|
|
|
|
* @error Invalid team index.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void GetTeamName(int index, char[] name, int maxlength);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the score of a team based on a team index.
|
|
|
|
* Note: This native should not be called before OnMapStart.
|
|
|
|
*
|
|
|
|
* @param index Team index.
|
|
|
|
* @return Score.
|
|
|
|
* @error Invalid team index.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native int GetTeamScore(int index);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the score of a team based on a team index.
|
|
|
|
* Note: This native should not be called before OnMapStart.
|
|
|
|
*
|
|
|
|
* @param index Team index.
|
|
|
|
* @param value New score value.
|
|
|
|
* @error Invalid team index.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void SetTeamScore(int index, int value);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the number of players in a certain team.
|
|
|
|
* Note: This native should not be called before OnMapStart.
|
|
|
|
*
|
|
|
|
* @param index Team index.
|
|
|
|
* @return Number of players in the team.
|
|
|
|
* @error Invalid team index.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native int GetTeamClientCount(int index);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the entity index of a team.
|
|
|
|
*
|
|
|
|
* @param teamIndex Team index.
|
|
|
|
* @return Entity index of team.
|
|
|
|
* @error Invalid team index.
|
|
|
|
*/
|
|
|
|
native int GetTeamEntity(int teamIndex);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the model to a given entity.
|
|
|
|
*
|
|
|
|
* @param entity Entity index.
|
|
|
|
* @param model Model name.
|
|
|
|
* @error Invalid entity index, or no mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void SetEntityModel(int entity, const char[] model);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
2014-07-30 11:03:42 +02:00
|
|
|
* Retrieves the decal file name associated with a given client.
|
2008-10-04 22:59:11 +02:00
|
|
|
*
|
|
|
|
* @param client Player's index.
|
|
|
|
* @param hex Buffer to store the logo filename.
|
|
|
|
* @param maxlength Maximum length of string buffer.
|
|
|
|
* @return True on success, otherwise false.
|
|
|
|
* @error Invalid client or client not in game.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native bool GetPlayerDecalFile(int client, char[] hex, int maxlength);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
2014-07-30 11:03:42 +02:00
|
|
|
/**
|
|
|
|
* Retrieves the jingle file name associated with a given client.
|
|
|
|
*
|
|
|
|
* @param client Player's index.
|
|
|
|
* @param hex Buffer to store the jingle filename.
|
|
|
|
* @param maxlength Maximum length of string buffer.
|
|
|
|
* @return True on success, otherwise false.
|
|
|
|
* @error Invalid client or client not in game.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native bool GetPlayerJingleFile(int client, char[] hex, int maxlength);
|
2014-07-30 11:03:42 +02:00
|
|
|
|
2008-10-04 22:59:11 +02:00
|
|
|
/**
|
|
|
|
* Returns the average server network traffic in bytes/sec.
|
|
|
|
*
|
|
|
|
* @param in Buffer to store the input traffic velocity.
|
|
|
|
* @param out Buffer to store the output traffic velocity.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void GetServerNetStats(float &inAmount, float &outAmout);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Equip's a player's weapon.
|
|
|
|
*
|
|
|
|
* @param client Client index.
|
2014-07-30 11:03:42 +02:00
|
|
|
* @param weapon CBaseCombatWeapon entity index.
|
2008-10-04 22:59:11 +02:00
|
|
|
* @error Invalid client or entity, lack of mod support, or client not in
|
|
|
|
* game.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void EquipPlayerWeapon(int client, int weapon);
|
2008-10-04 22:59:11 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Activates an entity (CBaseAnimating::Activate)
|
|
|
|
*
|
|
|
|
* @param entity Entity index.
|
|
|
|
* @error Invalid entity or lack of mod support.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void ActivateEntity(int entity);
|
2009-04-14 23:40:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets values to client info buffer keys and notifies the engine of the change.
|
2016-08-23 15:34:00 +02:00
|
|
|
* The change does not get propagated to mods until the next frame.
|
2009-04-14 23:40:48 +02:00
|
|
|
*
|
|
|
|
* @param client Player's index.
|
|
|
|
* @param key Key string.
|
|
|
|
* @param value Value string.
|
|
|
|
* @error Invalid client index, or client not connected.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native void SetClientInfo(int client, const char[] key, const char[] value);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes a client's name.
|
|
|
|
*
|
|
|
|
* @param client Player's index.
|
|
|
|
* @param name New name.
|
|
|
|
* @error Invalid client index, or client not connected.
|
|
|
|
*/
|
|
|
|
native void SetClientName(int client, const char[] name);
|
2014-07-30 11:03:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gives ammo of a certain type to a player.
|
|
|
|
* This natives obeys the maximum amount of ammo a player can carry per ammo type.
|
|
|
|
*
|
|
|
|
* @param client The client index.
|
|
|
|
* @param amount Amount of ammo to give. Is capped at ammotype's limit.
|
|
|
|
* @param ammotype Type of ammo to give to player.
|
|
|
|
* @param suppressSound If true, don't play the ammo pickup sound.
|
|
|
|
*
|
|
|
|
* @return Amount of ammo actually given.
|
|
|
|
*/
|
2016-08-23 15:34:00 +02:00
|
|
|
native int GivePlayerAmmo(int client, int amount, int ammotype, bool suppressSound=false);
|