This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/backend/looped/weapons/increase_damage.cpp

33 lines
702 B
C++
Raw Normal View History

#include "backend/looped_command.hpp"
#include "natives.hpp"
namespace big
{
class increased_damage : looped_command
{
using looped_command::looped_command;
Hash ped_weapon;
virtual void on_tick() override
{
if (g.weapons.increased_damage != 1)
{
Hash weapon{};
WEAPON::GET_CURRENT_PED_WEAPON(self::ped, &weapon, 0);
if (weapon != ped_weapon)
{
WEAPON::SET_WEAPON_DAMAGE_MODIFIER(weapon, 1);
ped_weapon = weapon;
}
WEAPON::SET_WEAPON_DAMAGE_MODIFIER(weapon, g.weapons.increased_damage);
}
}
};
increased_damage
g_increased_damage("incrdamage", "Damage Override", "Sets your damage to whatever you want", g.weapons.increase_damage);
}