Skip to content

Commit

Permalink
Merge pull request #510 from bitpredator/develop
Browse files Browse the repository at this point in the history
chore: (ox_doorlock) update to version 1.14.3
  • Loading branch information
bitpredator authored Sep 9, 2023
2 parents ddc9158 + b4ed859 commit 5706ad7
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 19 deletions.
14 changes: 0 additions & 14 deletions server-data/easyadmin_permissions.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion server-data/resources/[ox]/ox_doorlock/client/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ RegisterNetEvent('ox_doorlock:setState', function(id, state, source, data)
local sound = state == 0 and door.unlockSound or door.lockSound or 'door_bolt'
local soundId = GetSoundId()

PlaySoundFromCoord(soundId, sound, door.coords.x, door.coords.y, door.coords.z, 'DLC_OXDOORLOCK_SET', true, 0, false)
PlaySoundFromCoord(soundId, sound, door.coords.x, door.coords.y, door.coords.z, 'DLC_OXDOORLOCK_SET', false, 0, false)
ReleaseSoundId(soundId)
ReleaseNamedScriptAudioBank('dlc_oxdoorlock/oxdoorlock')
else
Expand Down
2 changes: 1 addition & 1 deletion server-data/resources/[ox]/ox_doorlock/fxmanifest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ game 'gta5'

--[[ Resource Information ]]--
name 'ox_doorlock'
version '1.14.1'
version '1.14.3'
license 'GPL-3.0-or-later'
author 'Overextended'
repository 'https://github.com/overextended/ox_doorlock'
Expand Down
18 changes: 18 additions & 0 deletions server-data/resources/[ox]/ox_doorlock/locales/pt-br.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"unlocked_door": "Porta Destrancada",
"locked_door": "Porta Trancada",
"lock_door": "[E] Trancar Porta",
"unlock_door": "[E] Destrancar Porta",
"door_lock": "Fechadura",
"passcode": "Senha",
"lockpick_broke": "Sua lockpick quebrou",
"pick_lock": "Usar Lockpick",
"add_lock": "Adicionar Fechadura",
"edit_lock": "Editar Fechadura",
"remove_lock": "Remover Fechadura",
"cannot_unlock": "Não foi possivel destrancar a porta",
"cannot_lock": "Não foi possível trancar a porta",
"create_modify_lock": "Criar uma fechadura, ou modificar uma existente",
"add_door_textui": "**Criar nova fechadura** \nInteragir com [LMB] \nCancelar com [RMB]",
"command_closest": "Abra a interface mais próximo da fechadura"
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ end
GetPlayer = Ox.GetPlayer

function GetCharacterId(player)
return player.charid
return player.charId
end

function IsPlayerInGroup(player, groups)
Expand Down
6 changes: 4 additions & 2 deletions server-data/resources/[ox]/ox_doorlock/server/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function DoesPlayerHaveItem(player, items, alwaysRemove)
for i = 1, #items do
local item = items[i]
local itemName = item.name or item
local data = ox_inventory:Search(playerId, 1, itemName, item.metadata)[1]
local data = ox_inventory:Search(playerId, 'slots', itemName, item.metadata)[1]

if data and data.count > 0 then
if alwaysRemove or item.remove then
Expand Down Expand Up @@ -233,7 +233,9 @@ local function isAuthorised(playerId, door, lockpick)
return authorised
end

MySQL.query(LoadResourceFile(cache.resource, 'sql/ox_doorlock.sql'))
local sql = LoadResourceFile(cache.resource, 'sql/ox_doorlock.sql')

if sql then MySQL.query(sql) end

MySQL.ready(function()
while Config.DoorList do Wait(100) end
Expand Down

0 comments on commit 5706ad7

Please sign in to comment.