This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Houses = { | |
| {label = 'Mirror Park Blvd 1', coords = vec3(1228.86, -725.41, 60.80)}, | |
| {label = 'Mirror Park Blvd 2', coords = vec3(1222.79, -697.04, 60.80)}, | |
| {label = 'Mirror Park Blvd 3', coords = vec3(1221.39, -668.83, 63.49)}, | |
| {label = 'Mirror Park Blvd 4', coords = vec3(1206.88, -620.22, 66.44)}, | |
| {label = 'Mirror Park Blvd 5', coords = vec3(1203.69, -598.96, 68.06)}, | |
| {label = 'Mirror Park Blvd 6', coords = vec3(1200.84, -575.72, 69.14)}, | |
| {label = 'Mirror Park Blvd 7', coords = vec3(1204.48, -557.80, 69.62)}, | |
| {label = 'East Mirror Dr 1', coords = vec3(1241.99, -565.69, 69.66)}, | |
| {label = 'East Mirror Dr 2', coords = vec3(1241.38, -601.70, 69.43)}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --------------------------------------------------------------------- | |
| -- THIS FILE IS NOT USED FOR ITEMS ANY LONGER -- | |
| --------------------------------------------------------------------- | |
| QBShared = QBShared or {} | |
| QBShared.Items = {} | |
| local count = 0 | |
| print ('[QBCore] Converting Inventory Items') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RegisterNetEvent('qb-doorlock:server:updateState', function(doorID, locked, src, usedLockpick, unlockAnyway, enableSounds, enableAnimation, sentSource) | |
| local door = exports.ox_doorlock:getDoorFromName(doorID) | |
| local state = locked and 1 or 0 | |
| local lockpick = usedLockpick or false | |
| TriggerEvent('ox_doorlock:setState', door.id, state, lockpick) | |
| end) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| while true do | |
| if GetPedStealthMovement(PlayerPedId()) then | |
| SetPedStealthMovement(PlayerPedId(), 0) | |
| end | |
| wait(1) | |
| end |