Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.2 KB

README.md

File metadata and controls

41 lines (28 loc) · 1.2 KB

Hacking script

NoPixel inspired hacking script by xFutte. I'll offer support in my Discord server.

Features

  • Multiple hack stages which easily can be increased or decreased
  • Easy to configure amount of time per stage in the game

Preview

image

Note: Above screenshots are not from the same stage

Setup for qb-bankrobbery

In the qb-bankrobbery resource, navigate to 'client/fleeca.lua' and insert TriggerEvent('futte-bankhack:hide') inside the OnHackSucces function. This should end up looking as follows:

local function OnHackDone(success)
  TriggerEvent('futte-bankhack:hide')
  Config.OnHackDone(success, closestBank)
end

Afterwards, replace

TriggerEvent("mhacking:show")
TriggerEvent("mhacking:start", math.random(6, 7), math.random(12, 15), OnHackDone)

with

TriggerEvent("futte-bankhack:show")
TriggerEvent("futte-bankhack:start", math.random(6, 7), math.random(12, 15), OnHackDone)