2019-09-27 21:50:07 +02:00
|
|
|
/*
|
|
|
|
* ============================================================================
|
|
|
|
*
|
|
|
|
* Zombie:Reloaded
|
|
|
|
*
|
|
|
|
* File: knockback.zr.inc
|
|
|
|
* Type: Include
|
|
|
|
* Description: Knockback-related natives/forwards.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009-2013 Greyscale, Richard Helgeby
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* ============================================================================
|
|
|
|
*/
|
|
|
|
|
2019-09-28 16:13:59 +02:00
|
|
|
#define ZR_KNOCKBACK_CUSTOM (1<<31)
|
|
|
|
#define ZR_KNOCKBACK_SCALE (1<<1)
|
2019-09-29 01:13:55 +02:00
|
|
|
#define ZR_KNOCKBACK_LIMITFORCE (1<<2)
|
|
|
|
#define ZR_KNOCKBACK_LIMITVEL (1<<3)
|
2019-09-28 16:13:59 +02:00
|
|
|
|
2019-09-27 21:50:07 +02:00
|
|
|
/**
|
2019-09-29 01:13:55 +02:00
|
|
|
* Set a custom knockback scale.
|
2019-09-27 21:50:07 +02:00
|
|
|
*
|
|
|
|
* @param client The client.
|
2019-09-29 01:13:55 +02:00
|
|
|
* @param fScale Custom knockback scale.
|
2019-09-27 21:50:07 +02:00
|
|
|
*/
|
2019-09-29 01:13:55 +02:00
|
|
|
native void ZR_SetClientKnockbackScale(int client, float fScale);
|
2019-09-27 21:50:07 +02:00
|
|
|
|
|
|
|
/**
|
2019-09-29 01:13:55 +02:00
|
|
|
* Set a maximum knockback force per tick.
|
2019-09-27 21:50:07 +02:00
|
|
|
*
|
|
|
|
* @param client The client.
|
2019-09-29 01:13:55 +02:00
|
|
|
* @param fForce Maximum knockback force per tick.
|
2019-09-27 21:50:07 +02:00
|
|
|
*/
|
2019-09-29 01:13:55 +02:00
|
|
|
native void ZR_SetClientKnockbackMaxForce(int client, float fForce);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a maximum knockback velocity.
|
|
|
|
*
|
|
|
|
* @param client The client.
|
|
|
|
* @param fVelocity Maximum knockback velocity.
|
|
|
|
*/
|
|
|
|
native void ZR_SetClientKnockbackMaxVelocity(int client, float fVelocity);
|