Gubner
April 21, 2022, 12:00am
1
Description:
This resource is an ATM Hacking script for QBCore and ESX Framework. For this resource, I wrote a new minigame based on Matermind .
Preview:
Video
Download:
QBCore
ESX (Update by @Topic_Elite )
Dependencies:
qb-core
qb-target
-or-
ESX
bt-target
7 Likes
Why this video link look sus lol
1 Like
Amongus?
Script looks interesting either way!
1 Like
Is an ESX version possible?
Really nice work with details by animations
2 Likes
Is an ESX version possible?
Really nice work with details by animations
I have sent an ESX version to the creator, he just needs to publish it ;).
2 Likes
The ESX version is now available, see post
1 Like
LDPNZ
April 23, 2022, 5:22am
9
Hey tried to load this in my server as I love the look of it but for some reason I canât get the target/3rd eye to work on the ATMâs just wondering if I am missing something. Any help would be great thanks.
Gubner
April 23, 2022, 12:15pm
10
Which version are you using? The QBCore version requires that you have qb-target, and the ESX version requires bt-target.
LDPNZ
April 24, 2022, 2:19am
11
I am using QB and have the updated qb-target files the BM also doesnât show for me it could be something I am doing wrong I am new to this.
Gubner
April 24, 2022, 12:40pm
12
Send me a message and I can try to help - we were all new to this at some point
1 Like
is there edited bt-target for esx including
event = âdecrypto:client:starthackâ,
icon = âfa-solid fa-mobile-screen-buttonâ,
label = âHack ATMâ,
thanks for your help
It is possible to make this script esx ready? bt-target loaded and installed but nothing happened
same here i think we need to edit bt -targer client
i find the solution
add this to bt-target
function AddTargetModel(AddTargetATMModels)
options = {
{
event = "decrypto:client:starthack",
icon = "fa-solid fa-mobile-screen-button",
label = 'Hack ATM',
}
}
end
exports(âAddTargetModelâ, AddTargetATMModels)
then stand near the ATM and use ( left Alt control )
enjoy broâŚ
hmm it doesnt work for me
maybe ucan send me ur version? really dont know what im doing wrong
bt-target-main (1).rar (4.1 KB)
this bt-targer edited try it
If you have the latest version of bt-target, then the export function is already inside. It is important that bt-target is started first.
local Models = {}
local Zones = {}
Citizen.CreateThread(function()
RegisterKeyMapping("+playerTarget", "Player Targeting", "keyboard", "LMENU") --Removed Bind System and added standalone version
RegisterCommand('+playerTarget', playerTargetEnable, false)
RegisterCommand('-playerTarget', playerTargetDisable, false)
TriggerEvent("chat:removeSuggestion", "/+playerTarget")
TriggerEvent("chat:removeSuggestion", "/-playerTarget")
end)
if Config.ESX then
Citizen.CreateThread(function()
while ESX == nil do
TriggerEvent('esx:getSharedObject', function(obj) ESX = obj end)
Citizen.Wait(0)
end
PlayerJob = ESX.GetPlayerData().job
This file has been truncated. show original
LDPNZ
April 26, 2022, 7:34am
20
Thank you bud but I managed to get it working the only thing I changed was in the configs.product.lua where your readme file shows [âblackmarketâ] = {
[1] ={
name = âstolencardâ
},
},
I changed it to [âblackmarketâ] = {
[1] ={
name = âstolencardâ
},
},
I just noticed that the rest of the lua files had it this way so copied that and it works beautiful now thank you so much for being responsive to a noob.