Замедление при получении урона

Koder ;D

Участник
Сообщения
55
Реакции
7
Игра - CS:GO.
Можно ли выключить торможение от урона, когда в тебя попадает противник? Я знаю, что есть модуль для VIP выносливость от R1KO, но можно ли отключить торможение для всех игроков и как?
 

Drumanid

Нестандартное звание
Сообщения
1,862
Реакции
1,748
Можешь помочь? Не знаю, что надо вырезать или вставить, чтобы он работал.
Че то вроде когда-то кто-то говорил что этот модуль может крашнуть сервер...
PHP:
//------------------------------------------------------------------------------
// GPL LISENCE (short)
//------------------------------------------------------------------------------
/*
* Copyright (c) 2016 R1KO

* 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/>.
*/

public Plugin myinfo =
{
    name = "Endurance",
    author = "R1KO (skype: vova.andrienko1)",
    version = "1.0.0"
};

#include <sourcemod>

int m_flVelocityModifier;

public void OnPluginStart()
{
    if((m_flVelocityModifier = FindSendPropInfo("CCSPlayer", "m_flVelocityModifier")) == -1)
        SetFailState("No found offset: m_flVelocityModifier");
}

public Action OnPlayerRunCmd(int iClient)
{
    if(IsPlayerAlive(iClient) && GetEntDataFloat(iClient, m_flVelocityModifier) < 1.0)
        SetEntDataFloat(iClient, m_flVelocityModifier, 1.0, true);
}
 

Вложения

  • Endurance.sp
    1.4 КБ · Просмотры: 7
  • Endurance.smx
    3.8 КБ · Просмотры: 8
Последнее редактирование:

SAPSAN 隼

Не было б печали, если бы ключи мне дали!
Сообщения
820
Реакции
776

Вложения

  • VIP_Endurance_1.0.0.smx
    4 КБ · Просмотры: 5
  • VIP_Endurance_1.0.0.sp
    1.4 КБ · Просмотры: 10

Похожие темы

Сверху Снизу