KO
|
EN
gitlite — search
Search
#java
#javascript
#php
#rust
#docker
#python
#hacktoberfest
#c-plus-plus
#css
#sqlite
#es6
#react
skm-stealshoes
★ 30
Open GitHub ↗
QBCore Stealing Shoe Script
Download README (.md)
Explore Similar Repositories
zoom-compose
:
An Android zoom library for Jetpack Compose using pinch to zoom and double tap gestures from a Modifier
the-world-engine.ts
:
three.js based, unity like game engine for browser
VCC-Generator
:
VCC-Generator is a python script that generate VCC for testing purposes only
prql-vscode
:
VS Code extension for PRQL lang
Blind-ECG-Restoration-by-Operational-Cycle-GANs
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
skm-stealshoes
?
Download (.md)
# QBCore steal shoe simple script The main problem with this script is you can steal unlimited shoes from a person because it doesn't check if the target have shoes or not. If you know how to solve this, make a pull ❤️ Preview: https://streamable.com/rh8mp2 # Step 1 Add the item in qb-core/shared/items.lua ['weapon_shoe'] = {['name'] = 'weapon_shoe', ['label'] = 'Shoes', ['weight'] = 900, ['type'] = 'weapon', ['ammotype'] = nil, ['image'] = 'shoes.png', ['unique'] = true, ['useable'] = false, ['description'] = 'I promise those are not stolen!'}, # Step 2 Search in your inventory this event "inventory:client:UseWeapon" and then add this: ``` elseif weaponName == "weapon_shoe" then GiveWeaponToPed(ped, GetHashKey(weaponName), ammo, false, false) SetPedAmmo(ped, GetHashKey(weaponName), 2) SetCurrentPedWeapon(ped, GetHashKey(weaponName), true) TriggerEvent('qb-hud:client:ToggleWeaponMode', true) TriggerServerEvent('QBCore:Server:RemoveItem', weaponName, 1) TriggerEvent('weapons:client:SetCurrentWeapon', weaponData, shootbool) currentWeapon = weaponName ``` # Step 3 Add the image in your inventory script!  # ⚠️ATTENTION⚠️ You will need a shoe model!