2014-08-04 10:11:56 +00:00
|
|
|
// vim: set ts=4 sw=4 tw=99 noet:
|
|
|
|
//
|
|
|
|
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
|
|
|
// Copyright (C) The AMX Mod X Development Team.
|
|
|
|
//
|
|
|
|
// This software is licensed under the GNU General Public License, version 3 or higher.
|
|
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
|
|
// https://alliedmods.net/amxmodx-license
|
|
|
|
|
|
|
|
//
|
|
|
|
// Fun Module
|
|
|
|
//
|
2004-02-21 19:45:58 +00:00
|
|
|
|
2004-02-11 15:43:26 +00:00
|
|
|
#include "fun.h"
|
2015-10-06 22:26:14 +00:00
|
|
|
#include <HLTypeConversion.h>
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2015-10-06 22:26:14 +00:00
|
|
|
HLTypeConversion TypeConversion;
|
2018-08-30 17:16:19 +00:00
|
|
|
CPlayers Players;
|
2015-10-06 22:26:14 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native get_client_listen(receiver, sender)
|
|
|
|
static cell AMX_NATIVE_CALL get_client_listening(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_receiver, arg_sender };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_receiver]);
|
|
|
|
CHECK_PLAYER(params[arg_sender]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
return GETCLIENTLISTENING(params[arg_receiver], params[arg_sender]);
|
2004-02-11 15:43:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_client_listen(receiver, sender, listen)
|
|
|
|
static cell AMX_NATIVE_CALL set_client_listening(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_receiver, arg_sender, arg_listen };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_receiver]);
|
|
|
|
CHECK_PLAYER(params[arg_sender]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
return SETCLIENTLISTENING(params[arg_receiver], params[arg_sender], params[arg_listen]);
|
2004-02-11 15:43:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_godmode(index, godmode = 0)
|
|
|
|
static cell AMX_NATIVE_CALL set_user_godmode(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_user, arg_godmode };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_user]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_user]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
pPlayer->v.takedamage = params[arg_godmode] != 0 ? DAMAGE_NO : DAMAGE_AIM;
|
2004-02-11 15:43:26 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native get_user_godmode(index)
|
|
|
|
static cell AMX_NATIVE_CALL get_user_godmode(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_user };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_user]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_user]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
return pPlayer->v.takedamage == DAMAGE_NO;
|
2004-02-11 15:43:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native give_item(index, const item[])
|
|
|
|
static cell AMX_NATIVE_CALL give_item(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_item };
|
|
|
|
|
|
|
|
CHECK_PLAYER(params[arg_index]);
|
|
|
|
|
|
|
|
auto itemLength = 0;
|
|
|
|
const auto item = MF_GetAmxString(amx, params[arg_item], 1, &itemLength);
|
|
|
|
|
|
|
|
if (!itemLength
|
|
|
|
||(strncmp(item, "weapon_", 7) != 0
|
|
|
|
&& strncmp(item, "ammo_", 5) != 0
|
|
|
|
&& strncmp(item, "item_", 5) != 0
|
|
|
|
&& strncmp(item, "tf_weapon_", 10) != 0))
|
|
|
|
{
|
2004-03-23 01:18:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
auto pEntity = CREATE_NAMED_ENTITY(ALLOC_STRING(item));
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
if (FNullEnt(pEntity))
|
|
|
|
{
|
|
|
|
MF_LogError(amx, AMX_ERR_NATIVE, "Item \"%s\" failed to create", item);
|
2004-09-15 15:17:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
pEntity->v.origin = pPlayer->v.origin;
|
|
|
|
pEntity->v.spawnflags |= SF_NORESPAWN;
|
2004-03-23 01:18:22 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
MDLL_Spawn(pEntity);
|
2004-03-23 01:18:22 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto oldSolid = pEntity->v.solid;
|
2004-03-23 01:18:22 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
MDLL_Touch(pEntity, pPlayer);
|
2004-03-23 01:18:22 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
if (pEntity->v.solid == oldSolid)
|
|
|
|
{
|
|
|
|
REMOVE_ENTITY(pEntity); // The function did not fail - we're just deleting the item
|
2004-03-23 01:18:22 +00:00
|
|
|
return -1;
|
2004-03-21 08:59:18 +00:00
|
|
|
}
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
return TypeConversion.edict_to_id(pEntity);
|
2004-02-11 15:43:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native spawn(index)
|
|
|
|
static cell AMX_NATIVE_CALL spawn(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_ENTITY(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pEntity = TypeConversion.id_to_edict(params[arg_index]);
|
2004-02-16 10:44:52 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
MDLL_Spawn(pEntity);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_health(index, health)
|
|
|
|
static cell AMX_NATIVE_CALL set_user_health(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_health };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
|
|
|
const auto health = float(params[arg_health]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
if (health > 0.0f)
|
|
|
|
{
|
|
|
|
pPlayer->v.health = health;
|
|
|
|
}
|
2004-02-11 15:43:26 +00:00
|
|
|
else
|
2018-08-30 17:16:19 +00:00
|
|
|
{
|
2004-02-11 15:43:26 +00:00
|
|
|
MDLL_ClientKill(pPlayer);
|
2018-08-30 17:16:19 +00:00
|
|
|
}
|
2004-02-11 15:43:26 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_frags(index, frags)
|
|
|
|
static cell AMX_NATIVE_CALL set_user_frags(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_frags };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
pPlayer->v.frags = float(params[arg_frags]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_armor(index, armor)
|
|
|
|
static cell AMX_NATIVE_CALL set_user_armor(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_armor };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
pPlayer->v.armorvalue = float(params[arg_armor]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_origin(index, const origin[3])
|
|
|
|
static cell AMX_NATIVE_CALL set_user_origin(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_origin };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
|
|
|
const auto pVector = MF_GetAmxAddr(amx, params[arg_origin]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
|
|
|
SET_SIZE(pPlayer, pPlayer->v.mins, pPlayer->v.maxs);
|
2018-08-30 17:16:19 +00:00
|
|
|
SET_ORIGIN(pPlayer, Vector(float(pVector[0]), float(pVector[1]), float(pVector[2])));
|
|
|
|
|
2004-02-11 15:43:26 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_rendering(index, fx = kRenderFxNone, r = 0, g = 0, b = 0, render = kRenderNormal, amount = 0)
|
|
|
|
static cell AMX_NATIVE_CALL set_user_rendering(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_fx, arg_red, arg_green, arg_blue, arg_render, arg_amount };
|
|
|
|
|
|
|
|
CHECK_PLAYER(params[arg_index]);
|
|
|
|
|
|
|
|
auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
|
|
|
|
|
|
|
pPlayer->v.renderfx = params[arg_fx];
|
|
|
|
pPlayer->v.rendercolor = Vector(float(params[arg_red]), float(params[arg_green]), float(params[arg_blue]));
|
|
|
|
pPlayer->v.rendermode = params[arg_render];
|
|
|
|
pPlayer->v.renderamt = float(params[arg_amount]);
|
|
|
|
|
2004-02-11 15:43:26 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// get_user_rendering(index, &fx = kRenderFxNone, &r = 0, &g = 0, &b = 0, &render = kRenderNormal, &amount = 0);
|
|
|
|
static cell AMX_NATIVE_CALL get_user_rendering(AMX *amx, cell *params)
|
2018-08-25 07:18:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_fx, arg_red, arg_green, arg_blue, arg_render, arg_amount };
|
|
|
|
|
|
|
|
CHECK_PLAYER(params[arg_index]);
|
|
|
|
|
|
|
|
auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
|
|
|
|
|
|
|
*MF_GetAmxAddr(amx, params[arg_fx]) = pPlayer->v.renderfx;
|
|
|
|
*MF_GetAmxAddr(amx, params[arg_red]) = pPlayer->v.rendercolor[0];
|
|
|
|
*MF_GetAmxAddr(amx, params[arg_green]) = pPlayer->v.rendercolor[1];
|
|
|
|
*MF_GetAmxAddr(amx, params[arg_blue]) = pPlayer->v.rendercolor[2];
|
|
|
|
*MF_GetAmxAddr(amx, params[arg_render]) = pPlayer->v.rendermode;
|
|
|
|
*MF_GetAmxAddr(amx, params[arg_amount]) = pPlayer->v.renderamt;
|
|
|
|
|
2018-08-25 07:18:26 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_maxspeed(index, Float:speed = -1.0)
|
|
|
|
static cell AMX_NATIVE_CALL set_user_maxspeed(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_speed };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_index]);
|
2004-03-21 08:59:18 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
|
|
|
const auto newSpeed = amx_ctof(params[arg_speed]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
SETCLIENTMAXSPEED(pPlayer, newSpeed);
|
|
|
|
pPlayer->v.maxspeed = newSpeed;
|
2004-02-11 15:43:26 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native Float:get_user_maxspeed(index)
|
|
|
|
static cell AMX_NATIVE_CALL get_user_maxspeed(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2004-05-26 06:28:59 +00:00
|
|
|
return amx_ftoc(pPlayer->v.maxspeed);
|
2004-02-11 15:43:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_gravity(index, Float:gravity = 1.0)
|
|
|
|
static cell AMX_NATIVE_CALL set_user_gravity(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_gravity };
|
|
|
|
|
|
|
|
CHECK_PLAYER(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
pPlayer->v.gravity = amx_ctof(params[arg_gravity]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native Float:get_user_gravity(index)
|
|
|
|
static cell AMX_NATIVE_CALL get_user_gravity(AMX *amx, cell *params)
|
2004-02-11 15:43:26 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index };
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
return amx_ftoc(pPlayer->v.gravity);
|
2004-02-11 15:43:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_hitzones(index = 0, target = 0, body = HITZONES_DEFAULT)
|
|
|
|
static cell AMX_NATIVE_CALL set_user_hitzones(AMX *amx, cell *params)
|
2004-04-27 10:08:46 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_attacker, arg_target, arg_hitzones };
|
|
|
|
|
|
|
|
const int attacker = params[arg_attacker];
|
|
|
|
const int target = params[arg_target];
|
|
|
|
const int hitzones = params[arg_hitzones];
|
|
|
|
|
|
|
|
if (attacker == 0 && target == 0)
|
|
|
|
{
|
|
|
|
Players.SetEveryoneBodyHits(hitzones);
|
2004-04-27 10:08:46 +00:00
|
|
|
}
|
2018-08-30 17:16:19 +00:00
|
|
|
else if (attacker == 0 && target != 0)
|
|
|
|
{
|
|
|
|
CHECK_PLAYER(target);
|
|
|
|
|
|
|
|
Players.SetAttackersBodyHits(target, hitzones);
|
2005-03-11 09:21:03 +00:00
|
|
|
}
|
2018-08-30 17:16:19 +00:00
|
|
|
else if (attacker != 0 && target == 0)
|
|
|
|
{
|
|
|
|
CHECK_PLAYER(attacker);
|
|
|
|
|
|
|
|
Players.SetTargetsBodyHits(attacker, hitzones);
|
2005-03-11 09:21:03 +00:00
|
|
|
}
|
2018-08-30 17:16:19 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
CHECK_PLAYER(attacker);
|
|
|
|
CHECK_PLAYER(target);
|
|
|
|
|
|
|
|
Players.SetBodyHits(attacker, target, hitzones);
|
2004-04-27 10:08:46 +00:00
|
|
|
}
|
2004-08-31 06:32:38 +00:00
|
|
|
|
2004-04-27 10:08:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native get_user_hitzones(index, target)
|
|
|
|
static cell AMX_NATIVE_CALL get_user_hitzones(AMX *amx, cell *params)
|
2004-04-27 10:08:46 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_attacker, arg_target };
|
|
|
|
|
|
|
|
const auto attacker = params[arg_attacker];
|
|
|
|
|
|
|
|
CHECK_PLAYER(attacker);
|
|
|
|
|
|
|
|
const auto target = params[arg_target];
|
|
|
|
|
2005-03-11 09:21:03 +00:00
|
|
|
CHECK_PLAYER(target);
|
2018-08-30 17:16:19 +00:00
|
|
|
|
|
|
|
return Players[attacker].GetBodyHits(target);
|
2004-04-27 10:08:46 +00:00
|
|
|
}
|
2004-02-11 15:43:26 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_noclip(index, noclip = 0)
|
|
|
|
static cell AMX_NATIVE_CALL set_user_noclip(AMX *amx, cell *params)
|
2004-02-16 13:48:00 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_noclip };
|
2004-02-16 13:48:00 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_index]);
|
2004-02-16 13:48:00 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
2004-02-16 13:48:00 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
pPlayer->v.movetype = params[arg_noclip] != 0 ? MOVETYPE_NOCLIP : MOVETYPE_WALK;
|
2004-02-16 13:48:00 +00:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native get_user_noclip(index)
|
|
|
|
static cell AMX_NATIVE_CALL get_user_noclip(AMX *amx, cell *params)
|
2004-02-16 13:48:00 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index };
|
2004-02-16 13:48:00 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(params[arg_index]);
|
2004-02-16 13:48:00 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(params[arg_index]);
|
2004-02-16 13:48:00 +00:00
|
|
|
|
|
|
|
return pPlayer->v.movetype == MOVETYPE_NOCLIP;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native set_user_footsteps(id, set = 1)
|
|
|
|
static cell AMX_NATIVE_CALL set_user_footsteps(AMX *amx, cell *params)
|
2004-02-18 11:10:54 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index, arg_footsteps };
|
2004-02-18 11:10:54 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto index = params[arg_index];
|
2004-02-18 11:10:54 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(index);
|
2015-10-06 22:26:14 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(index);
|
|
|
|
|
|
|
|
if (params[arg_footsteps] != 0)
|
|
|
|
{
|
2004-02-18 11:10:54 +00:00
|
|
|
pPlayer->v.flTimeStepSound = 999;
|
2018-08-30 17:16:19 +00:00
|
|
|
Players[index].SetSilentFootsteps(true);
|
|
|
|
|
|
|
|
g_pFunctionTable->pfnPlayerPreThink = PlayerPreThink;
|
2004-02-18 11:10:54 +00:00
|
|
|
}
|
2018-08-30 17:16:19 +00:00
|
|
|
else
|
|
|
|
{
|
2004-02-18 11:10:54 +00:00
|
|
|
pPlayer->v.flTimeStepSound = STANDARDTIMESTEPSOUND;
|
2018-08-30 17:16:19 +00:00
|
|
|
Players[index].SetSilentFootsteps(false);
|
|
|
|
|
|
|
|
if (g_pFunctionTable->pfnPlayerPreThink && !Players.HaveSilentFootsteps())
|
|
|
|
{
|
|
|
|
g_pFunctionTable->pfnPlayerPreThink = nullptr;
|
|
|
|
}
|
2004-02-18 11:10:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
2004-02-16 13:48:00 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native get_user_footsteps(index)
|
2006-02-01 13:04:24 +00:00
|
|
|
static cell AMX_NATIVE_CALL get_user_footsteps(AMX *amx, cell *params)
|
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index };
|
|
|
|
|
|
|
|
const auto index = params[arg_index];
|
|
|
|
|
|
|
|
CHECK_PLAYER(index);
|
2006-02-01 13:04:24 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
return Players[index].HasSilentFootsteps();
|
2006-02-01 13:04:24 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
// native strip_user_weapons(index)
|
|
|
|
static cell AMX_NATIVE_CALL strip_user_weapons(AMX *amx, cell *params)
|
2006-02-02 00:45:56 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
enum args { arg_count, arg_index };
|
2004-06-21 09:16:14 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto index = params[arg_index];
|
2004-06-21 09:16:14 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
CHECK_PLAYER(index);
|
2015-10-06 22:26:14 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto pPlayer = TypeConversion.id_to_edict(index);
|
|
|
|
const auto pEntity = CREATE_NAMED_ENTITY(MAKE_STRING("player_weaponstrip"));
|
|
|
|
|
|
|
|
if (FNullEnt(pEntity))
|
2005-11-19 00:34:25 +00:00
|
|
|
{
|
2004-06-21 09:16:14 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
MDLL_Spawn(pEntity);
|
|
|
|
MDLL_Use(pEntity, pPlayer);
|
|
|
|
REMOVE_ENTITY(pEntity);
|
2004-06-21 09:16:14 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
*reinterpret_cast<int *>(MF_PlayerPropAddr(index, Player_CurrentWeapon)) = 0;
|
2005-11-12 00:47:34 +00:00
|
|
|
|
|
|
|
return 1;
|
2004-06-21 09:16:14 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
|
|
|
|
AMX_NATIVE_INFO fun_Exports[] =
|
|
|
|
{
|
|
|
|
{ "get_client_listen" , get_client_listening },
|
|
|
|
{ "set_client_listen" , set_client_listening },
|
|
|
|
{ "set_user_godmode" , set_user_godmode },
|
|
|
|
{ "get_user_godmode" , get_user_godmode },
|
|
|
|
{ "set_user_health" , set_user_health },
|
|
|
|
{ "give_item" , give_item },
|
|
|
|
{ "spawn" , spawn },
|
|
|
|
{ "set_user_frags" , set_user_frags },
|
|
|
|
{ "set_user_armor" , set_user_armor },
|
|
|
|
{ "set_user_origin" , set_user_origin },
|
|
|
|
{ "set_user_rendering", set_user_rendering },
|
|
|
|
{ "get_user_rendering", get_user_rendering },
|
|
|
|
{ "set_user_maxspeed" , set_user_maxspeed },
|
|
|
|
{ "get_user_maxspeed" , get_user_maxspeed },
|
|
|
|
{ "set_user_gravity" , set_user_gravity },
|
|
|
|
{ "get_user_gravity" , get_user_gravity },
|
|
|
|
{ "get_user_footsteps", get_user_footsteps },
|
|
|
|
{ "set_user_hitzones" , set_user_hitzones },
|
|
|
|
{ "get_user_hitzones" , get_user_hitzones },
|
|
|
|
{ "set_user_noclip" , set_user_noclip },
|
|
|
|
{ "get_user_noclip" , get_user_noclip },
|
|
|
|
{ "set_user_footsteps", set_user_footsteps },
|
|
|
|
{ "strip_user_weapons", strip_user_weapons },
|
|
|
|
{ nullptr , nullptr }
|
2004-02-11 15:43:26 +00:00
|
|
|
};
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
|
2004-02-27 13:59:00 +00:00
|
|
|
void PlayerPreThink(edict_t *pEntity)
|
2004-02-18 11:10:54 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto index = TypeConversion.edict_to_id(pEntity);
|
|
|
|
|
|
|
|
if (Players[index].HasSilentFootsteps())
|
|
|
|
{
|
|
|
|
pEntity->v.flTimeStepSound = 999;
|
2004-02-18 11:10:54 +00:00
|
|
|
RETURN_META(MRES_HANDLED);
|
|
|
|
}
|
|
|
|
|
|
|
|
RETURN_META(MRES_IGNORED);
|
|
|
|
}
|
|
|
|
|
2004-08-31 02:29:31 +00:00
|
|
|
int ClientConnect(edict_t *pPlayer, const char *pszName, const char *pszAddress, char szRejectReason[128])
|
2004-03-10 21:58:47 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
const auto index = TypeConversion.edict_to_id(pPlayer);
|
|
|
|
|
|
|
|
Players[index].Clear();
|
2004-03-10 21:58:47 +00:00
|
|
|
|
2004-05-03 08:55:48 +00:00
|
|
|
RETURN_META_VALUE(MRES_IGNORED, 0);
|
2004-03-10 21:58:47 +00:00
|
|
|
}
|
|
|
|
|
2018-09-08 07:41:29 +00:00
|
|
|
void TraceLine(const float *v1, const float *v2, int fNoMonsters, edict_t *shooter, TraceResult *ptr)
|
2018-08-30 17:16:19 +00:00
|
|
|
{
|
2018-09-08 07:41:29 +00:00
|
|
|
TRACE_LINE(v1, v2, fNoMonsters, shooter, ptr);
|
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
if (ptr->pHit && (ptr->pHit->v.flags & (FL_CLIENT | FL_FAKECLIENT))
|
|
|
|
&& shooter && (shooter->v.flags & (FL_CLIENT | FL_FAKECLIENT)) )
|
|
|
|
{
|
|
|
|
const auto shooterIndex = TypeConversion.edict_to_id(shooter);
|
|
|
|
const auto targetIndex = TypeConversion.edict_to_id(ptr->pHit);
|
|
|
|
|
|
|
|
if (!(Players[shooterIndex].GetBodyHits(targetIndex) & (1 << ptr->iHitgroup)))
|
|
|
|
{
|
2005-03-11 09:21:03 +00:00
|
|
|
ptr->flFraction = 1.0;
|
2018-08-30 17:16:19 +00:00
|
|
|
}
|
2004-04-27 10:08:46 +00:00
|
|
|
}
|
2018-08-30 17:16:19 +00:00
|
|
|
|
2018-09-08 07:41:29 +00:00
|
|
|
RETURN_META(MRES_SUPERCEDE);
|
2004-02-11 15:43:26 +00:00
|
|
|
}
|
|
|
|
|
2005-03-11 09:21:03 +00:00
|
|
|
|
2004-08-31 02:29:31 +00:00
|
|
|
void OnAmxxAttach()
|
2004-05-03 14:10:52 +00:00
|
|
|
{
|
|
|
|
MF_AddNatives(fun_Exports);
|
2005-08-07 13:38:34 +00:00
|
|
|
}
|
2004-07-13 21:26:38 +00:00
|
|
|
|
2018-08-30 17:16:19 +00:00
|
|
|
void OnPluginsLoaded()
|
|
|
|
{
|
|
|
|
Players.Clear();
|
2015-10-06 22:26:14 +00:00
|
|
|
|
|
|
|
TypeConversion.init();
|
2018-08-30 17:16:19 +00:00
|
|
|
|
|
|
|
g_pFunctionTable->pfnPlayerPreThink = nullptr;
|
|
|
|
g_pengfuncsTable_Post->pfnTraceLine = nullptr;
|
2004-07-13 21:26:38 +00:00
|
|
|
}
|
2018-08-30 17:16:19 +00:00
|
|
|
|
|
|
|
void ServerDeactivate()
|
2004-07-13 21:26:38 +00:00
|
|
|
{
|
2018-08-30 17:16:19 +00:00
|
|
|
g_pFunctionTable->pfnPlayerPreThink = nullptr;
|
|
|
|
g_pengfuncsTable_Post->pfnTraceLine = nullptr;
|
|
|
|
|
|
|
|
RETURN_META(MRES_IGNORED);
|
2004-02-25 20:55:38 +00:00
|
|
|
}
|