Skip to content

Commit

Permalink
No More Key Tables
Browse files Browse the repository at this point in the history
  • Loading branch information
GhzGarage committed Apr 9, 2021
1 parent b3611ba commit 96e5caa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
6 changes: 3 additions & 3 deletions client/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Citizen.CreateThread(function()
local WeaponData = QBCore.Shared.Weapons[GetHashKey(CurrentWeaponData.name)]
local WeaponClass = (QBCore.Shared.SplitStr(WeaponData.ammotype, "_")[2]):lower()
DrawText3Ds(data.coords.x, data.coords.y, data.coords.z, '[E] Wapen repareren, ~g~$'..Config.WeaponRepairCotsts[WeaponClass]..'~w~')
if IsControlJustPressed(0, Keys["E"]) then
if IsControlJustPressed(0, 38) then
QBCore.Functions.TriggerCallback('weapons:server:RepairWeapon', function(HasMoney)
if HasMoney then
CurrentWeaponData = {}
Expand All @@ -261,7 +261,7 @@ Citizen.CreateThread(function()
DrawText3Ds(data.coords.x, data.coords.y, data.coords.z, 'The repairshop is this moment ~r~NOT~w~ useble..')
else
DrawText3Ds(data.coords.x, data.coords.y, data.coords.z, '[E] to take weapon back')
if IsControlJustPressed(0, Keys["E"]) then
if IsControlJustPressed(0, 38) then
TriggerServerEvent('weapons:server:TakeBackWeapon', k, data)
end
end
Expand All @@ -271,7 +271,7 @@ Citizen.CreateThread(function()
DrawText3Ds(data.coords.x, data.coords.y, data.coords.z, 'You dont have a weapon in ur hands..')
elseif data.RepairingData.CitizenId == PlayerData.citizenid then
DrawText3Ds(data.coords.x, data.coords.y, data.coords.z, '[E] to take weapon back')
if IsControlJustPressed(0, Keys["E"]) then
if IsControlJustPressed(0, 38) then
TriggerServerEvent('weapons:server:TakeBackWeapon', k, data)
end
end
Expand Down
11 changes: 0 additions & 11 deletions config.lua
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
Keys = {
["ESC"] = 322, ["F1"] = 288, ["F2"] = 289, ["F3"] = 170, ["F5"] = 166, ["F6"] = 167, ["F7"] = 168, ["F8"] = 169, ["F9"] = 56, ["F10"] = 57,
["~"] = 243, ["1"] = 157, ["2"] = 158, ["3"] = 160, ["4"] = 164, ["5"] = 165, ["6"] = 159, ["7"] = 161, ["8"] = 162, ["9"] = 163, ["-"] = 84, ["="] = 83, ["BACKSPACE"] = 177,
["TAB"] = 37, ["Q"] = 44, ["W"] = 32, ["E"] = 38, ["R"] = 45, ["T"] = 245, ["Y"] = 246, ["U"] = 303, ["P"] = 199, ["["] = 39, ["]"] = 40, ["ENTER"] = 18,
["CAPS"] = 137, ["A"] = 34, ["S"] = 8, ["D"] = 9, ["F"] = 23, ["G"] = 47, ["H"] = 74, ["K"] = 311, ["L"] = 182,
["LEFTSHIFT"] = 21, ["Z"] = 20, ["X"] = 73, ["C"] = 26, ["V"] = 0, ["B"] = 29, ["N"] = 249, ["M"] = 244, [","] = 82, ["."] = 81,
["LEFTCTRL"] = 36, ["LEFTALT"] = 19, ["SPACE"] = 22, ["RIGHTCTRL"] = 70,
["HOME"] = 213, ["PAGEUP"] = 10, ["PAGEDOWN"] = 11, ["DELETE"] = 178,
["LEFT"] = 174, ["RIGHT"] = 175, ["TOP"] = 27, ["DOWN"] = 173,
}

Config = Config or {}

Config.DurabilityBlockedWeapons = {
Expand Down

0 comments on commit 96e5caa

Please sign in to comment.