Game Modding | Call of Duty: Black Ops 3 | Scripting
ModmeBot:
Thread By: ReviveMePlz
So I've done a bit of research as to how it was handled in older games (BO2 just notified "abort_reload" to the client) but as reloading while sprinting is in the game by default I am not sure how I would go about terminating the reload. I have made a little function below already if that helps
Any help or ideas are greatly appreciated
ModmeBot:
Reply By: Symbo
what about the opposite?
if(player IsReloading())
{
player AllowSprint(false);
}
ModmeBot:
Reply By: ReviveMePlz
Symbo
what about the opposite? if(player IsReloading()){player AllowSprint(false);}