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.

12 lines
247 B
C++
Raw Normal View History

2022-02-08 23:06:33 -05:00
#include "backend/looped/looped.hpp"
#include "natives.hpp"
2022-02-08 23:06:33 -05:00
namespace big
{
void looped::weapons_infinite_mag()
{
if (g->weapons.infinite_mag) {
WEAPON::SET_PED_INFINITE_AMMO_CLIP(PLAYER::PLAYER_PED_ID(), g->weapons.infinite_mag);
2022-02-08 23:06:33 -05:00
}
}
}