43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
|
/*
|
||
|
* ============================================================================
|
||
|
*
|
||
|
* 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/>.
|
||
|
*
|
||
|
* ============================================================================
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Set a maximum knockback velocity.
|
||
|
*
|
||
|
* @param client The client.
|
||
|
* @param fVelocity Maximum knockback velocity / force.
|
||
|
*/
|
||
|
native void ZR_SetClientKnockbackMaxVelocity(int client, float fVelocity);
|
||
|
|
||
|
/**
|
||
|
* Set a custom knockback scale.
|
||
|
*
|
||
|
* @param client The client.
|
||
|
* @param fScale Custom knockback scale.
|
||
|
*/
|
||
|
native void ZR_SetClientKnockbackScale(int client, float fScale);
|