37 string TimeToString(
int realTime,
int zoneType,
string formatString);
54 bool InPVS(entity lookingEntity, vector visiblePosition);
73 entity
Create(
string className, vector spawnPos);
90 entity
Input(entity target,
string inputName,
string dataString, entity activator);
94 bool isAI(entity entityToCheck);
194 bool HasItem(entity targetActor,
string itemClass);
204 bool MaxAmmo(entity targetActor,
int ammoType);
235 void Damage(entity targetEnt, entity inflictingEnt, entity attackingEnt,
string damageDef, vector damageOrigin, vector damageDir, vector hitLocation);
246 void RadiusDamage(vector damageCenter,
float damageRange,
int damageMin,
int damageMax, entity attackingEnt,
string damageDef);
253 void Obituary(
string targetName,
string attackerName,
string weaponDef,
string meansOfDeath);
260linkToServerProgs(
string funcName)
262 static void empty(
void)
264 print(
"Called unimplemented server-side API call.\n");
268 void *func = externvalue(0, funcName);
271 return ((__variant)func);
282 game.
GetMap = linkToServerProgs(
"SVPF_game_GetMap");
288 combat.
Damage = linkToServerProgs(
"SVPF_combat_Damage");
292 ents.
Create = linkToServerProgs(
"spawnClass");
294 ents.
Input = linkToServerProgs(
"sendInput");
295 ents.
isAI = linkToServerProgs(
"isAI");
303 ents.
NextItem = linkToServerProgs(
"SVPF_ents_NextItem");
309 actor.
MaxAmmo = linkToServerProgs(
"SVPF_actor_MaxAmmo");
313 actor.
HasItem = linkToServerProgs(
"SVPF_actor_HasItem");
315 exists.
InMap = linkToServerProgs(
"SVPF_exists_InMap");
316 exists.
InVFS = linkToServerProgs(
"SVPF_exists_InVFS");
317 exists.
InPVS = linkToServerProgs(
"SVPF_exists_InPVS");
var motdAPI_t motd
Access motdAPI_t functions using this variable.
Definition: api_func.h:184
var existsAPI_t exists
Access existsAPI_t functions using this variable.
Definition: api_func.h:61
var gameAPI_t game
Access gameAPI_t functions using this variable.
Definition: api_func.h:172
var utilAPI_t util
Access utilAPI_t functions using this variable.
Definition: api_func.h:39
var combatAPI_t combat
Access combatAPI_t functions using this variable.
Definition: api_func.h:255
var entsAPI_t ents
Access entsAPI_t functions using this variable.
Definition: api_func.h:144
var actorAPI_t actor
Access actorAPI_t functions using this variable.
Definition: api_func.h:220
MOTD library.
Definition: api_func.h:188
entity FindCoverNode(entity)
float AimAtPos(entity, vector)
int GetReserveAmmo(entity targetActor, int ammoType)
Returns the amount of reserve ammo of a given ammo type ID.
bool HasItem(entity targetActor, string itemClass)
Returns whether an item class exists in an actor's inventory.
bool CanShoot(entity, vector, vector)
int TotalActorsOnTeam(int teamID)
Returns the current amount of actors in the game, on a specific team.
bool CanSee(entity, entity)
string GetInventory(entity targetActor)
Returns a tokenizable string containing a list of inventory items of a specified actor (this includes...
float MoveToPos(entity, vector)
int TotalActors(void)
Returns the current amount of actors in the game.
bool MaxAmmo(entity targetActor, int ammoType)
Returns the amount of maximum ammo of a given ammo type ID.
Combat library.
Definition: api_func.h:224
void Obituary(string targetName, string attackerName, string weaponDef, string meansOfDeath)
Lets everyone in the game know that something, or something, has passed.
void Damage(entity targetEnt, entity inflictingEnt, entity attackingEnt, string damageDef, vector damageOrigin, vector damageDir, vector hitLocation)
Applies damage to a given entity.
void RadiusDamage(vector damageCenter, float damageRange, int damageMin, int damageMax, entity attackingEnt, string damageDef)
Does damage to all entities within a specified radius with a linear falloff.
Ents library.
Definition: api_func.h:65
entity NextActor(entity lastActor)
Returns the next entity of type 'Actor' in the game.
entity NextItem(entity lastItem)
Returns the next entity of type 'Item' in the game.
bool isSentient(entity entityToCheck)
Returns true/false depending on if the entity is either a player, or AI character.
entity Create(string className, vector spawnPos)
Creates a new entity of a given class name.
entity Input(entity target, string inputName, string dataString, entity activator)
Sends an input (See ncIO::Input) to an entity.
entity ChangeToClass(entity targetEntity, string className)
Transitions an entity from one class to another.
entity NextPlayer(entity lastPlayer)
Returns the next entity of type 'Player' in the game.
bool isAI(entity entityToCheck)
Returns true/false depending on if the entity is an AI character.
bool isGodMode(entity entityToCheck)
Returns true/false depending on if the entity is in "god" mode.
bool isBot(entity entityToCheck)
Returns true/false depending on if the entity is a bot.
entity NextWeapon(entity lastWeapon)
Returns the next entity of type 'Weapon' in the game.
bool isPlayer(entity entityToCheck)
Returns true/false depending on if the entity is a player.
bool isAlive(entity entityToCheck)
Returns true/false depending on if the entity is alive.
Exists library.
Definition: api_func.h:43
bool InVFS(string fileName)
Check whether a file is present in the virtual filesystem.
bool InMap(string className)
Check whether a named entity class exists in the current map/level.
bool InPVS(entity lookingEntity, vector visiblePosition)
Check whether an entity is within a PVS - if it is visible from a certain location and vice-versa.
Game library.
Definition: api_func.h:148
void CleanUpMap(void)
Removed any temporary game entities from the game, and resets the state of the level to the default s...
void TeleportToSpawn(entity teleportingEntity)
Teleports an entity to their ideal spawn-point.
void LoadNextMap(void)
Force loads the next map/level in the rotation.
string GetMap(void)
Returns the name of the map/level.
void SetSpawnPoint(string spawnPointClass)
Sets the default spawn-point class to custom one.
string GetNextMap(void)
Returns the name of the next map/level in the rotation.
entity FindRandomClassObject(string entityClassName)
Return a random instance of a specified entity class.
MOTD library.
Definition: api_func.h:176
void LoadFromFile(string)
Loads a text file as an input for a message of the day.
void LoadDefault(void)
Loads the message of the day from the default location: <gamedir>/motd.txt
Util library.
Definition: api_func.h:30
string TimeToString(int realTime, int zoneType, string formatString)
Returns the current time.