Security HUD
System Watchdog
×
Threads Scanned
-- / --
SYS. LOAD --%
AI SHIELD ACTIVE
DMCA Policy
×

📋 DMCA Compliance

This platform and community fully complies with the Digital Millennium Copyright Act (DMCA) and international copyright laws. We take all copyright protection seriously.

🛡️ Copyright Protection

If you believe a posted item belongs to you or violates your copyright, you may file a DMCA takedown request through our official channels. Upon receiving a valid claim, the infringing content will be removed within 24 hours.

What's new
×
Fiveguard

Request qb-target suggestion rings

zeckonee1

Bronze Elite
Joined
Mar 14, 2022
Messages
8
Reaction score
5
Points
146
Location
Indonesia
im looking for the script that adds like suggestions at the stuff you can use the target/third eye at, i think nopixel has it
it adds rings at stuff you can use third eye on
drawsprite, open ur qb-target/client.lua and search DrawSprite. and go to init.lua set
Config.DrawSprite = true
Config.DrawDistance = 10.0

Config.DrawColor = {255, 255, 255, 255} (You can change the color)

Config.SuccessDrawColor = {30, 144, 255, 255}
 

plpsipp

Member
Joined
Jun 4, 2021
Messages
7
Reaction score
1
Points
146



Then in [qb]\qb-target\html\css\style.css Replace: #target-eye {
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
font-size: 3vh;
text-shadow: 0.2vh 0.2vh 0.2vh #000000;
}

#target-label-wrapper {
position: absolute;
display: flex;
align-content: center;
justify-content: center;
flex-direction: row;
left: 51.5%;
width: fit-content;
height: 100%;
top: 49.25%;
}

#target-label {
list-style: none;
font-size: 1.3vh;
font-weight: bold;
font-family: sans-serif;
color: white;
user-select: none;
white-space: nowrap;
text-shadow: 0.2vh 0.2vh 0.2vh #000000;
}



With:


#target-eye {
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
width: 2.5vw;
height: 2.5vh;
text-shadow: 0.2vh 0.2vh 0.2vh #000000;
}

#target-label-wrapper {
position: absolute;
display: flex;
align-content: center;
justify-content: center;
flex-direction: row;
left: 87vh;
width: fit-content;
height: 100%;
top: 52%;
}

#target-label {
list-style: none;
font-size: 1.7vh;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
font-style: normal;
font-variant: small-caps;
line-height: 0;
letter-spacing: 0.1px;
color: white;
user-select: none;
white-space: nowrap;
text-shadow: 0.1vh 0.1vh 0.1vh #000000;
}
 

appukuttan

Gold Elite
Joined
Oct 23, 2022
Messages
947
Reaction score
24,470
Points
316
Location
India
c



Then in [qb]\qb-target\html\css\style.css Replace: #target-eye {
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
font-size: 3vh;
text-shadow: 0.2vh 0.2vh 0.2vh #000000;
}

#target-label-wrapper {
position: absolute;
display: flex;
align-content: center;
justify-content: center;
flex-direction: row;
left: 51.5%;
width: fit-content;
height: 100%;
top: 49.25%;
}

#target-label {
list-style: none;
font-size: 1.3vh;
font-weight: bold;
font-family: sans-serif;
color: white;
user-select: none;
white-space: nowrap;
text-shadow: 0.2vh 0.2vh 0.2vh #000000;
}



With:


#target-eye {
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
width: 2.5vw;
height: 2.5vh;
text-shadow: 0.2vh 0.2vh 0.2vh #000000;
}

#target-label-wrapper {
position: absolute;
display: flex;
align-content: center;
justify-content: center;
flex-direction: row;
left: 87vh;
width: fit-content;
height: 100%;
top: 52%;
}

#target-label {
list-style: none;
font-size: 1.7vh;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
font-style: normal;
font-variant: small-caps;
line-height: 0;
letter-spacing: 0.1px;
color: white;
user-select: none;
white-space: nowrap;
text-shadow: 0.1vh 0.1vh 0.1vh #000000;
}
can you provide a preview of the outcome?
 
Top