Commit Graph

61 Commits

Author SHA1 Message Date
_Not_ d7f6a6f5e7 Merge pull request #1835 from seltonmt012/perf/multichar-delete-indexes
perf(esx_multicharacter): index the columns used by character deletion
2026-08-14 19:43:12 -05:00
_Not_ b5cbfb9841 Merge pull request #1856 from seltonmt012/fix/billing-target-length
fix(es_extended): widen the identifier columns that are too short
2026-08-07 21:52:38 -05:00
Ihsan 3aa3bf27d6 fix(legacy.sql): add missing bank_savings entry to addon_account and remove redundant banker job inserts 2026-08-01 20:52:52 +05:30
Selt ad195a6516 fix(es_extended): widen rented_vehicles.owner to hold an identifier
The column is varchar(22), which is a leftover from Steam identifiers.
esx_vehicleshop writes a player identifier into it, and on a
multicharacter server those are 46 characters long, so renting a vehicle
out fails.

The stock vehicle is deleted from cardealer_vehicles before the insert
runs, so the dealer loses the car and the customer never gets a rental
contract. Neither side is told anything, because the handler dies on the
insert.

esx_vehicleshop's own esx_vehicleshop.sql already declares varchar(60).
2026-07-30 01:22:37 +02:00
Selt 6c50d22615 fix(es_extended): widen billing.target to hold an identifier
The column is varchar(40) but esx_billing writes an identifier into it, and
those are 46 characters once multicharacter is on, so the insert fails with
1406 and the handler dies before notifying either player. The other two
identifier columns in the same table are already varchar(60).
2026-07-28 03:06:20 +02:00
Selt d3aaab0692 perf(esx_multicharacter): index the columns used by character deletion
Deleting a character runs one DELETE per table that has an identifier/owner
column, all in a single transaction. Only users.identifier is indexed; the other
core tables (billing, owned_vehicles, user_licenses, society_moneywash,
addon_account_data, addon_inventory_items, datastore_data) have no usable index on
the delete column, so each DELETE is a full table scan and they all hold locks at
once.

Measured on 200k rows per table (MariaDB 12.3.2): the transaction went from about
1573 ms to about 22 ms once the seven columns are indexed, EXPLAIN going from
type=ALL scanning ~200k rows to a single-row index lookup per table. The addon and
datastore tables were the worst because their composite indexes do not lead with
the delete column, so they cannot serve WHERE owner = ?.

Adds the indexes to legacy.sql for fresh installs and a migration for existing
databases. The migration checks INFORMATION_SCHEMA for an index that leads with the
column (SEQ_IN_INDEX = 1) and only creates one where it is missing, so it is a no-op
on databases that already have it and re-running is guarded by the migration key.
2026-07-27 19:21:31 +02:00
Kenshin13 b9ca12a65d feat: add esx job types 2025-10-01 22:16:13 -05:00
Kenshin13 fc49dcbcb4 feat(es_extended): add SSN 2025-08-16 00:22:50 +02:00
Fezz 9d6e3d72e8 Update legacy.sql 2025-07-30 12:44:39 +01:00
Ilias Rbayti 86c5e64d9f replace id PK with model 2024-11-05 08:16:41 +01:00
Ilias Rbayti 93e9fca766 refactor(SQL/legacy): Add primary key to vehicles table 2024-11-02 17:30:10 +01:00
zRxnx 5a443fa400 fix(SQL): fixed missing column
Fixed missing column for esx_banking
2024-01-21 15:12:45 +01:00
thefourCraft c9f0bb0e7f Merge branch 'esx-framework:main' into production 2023-04-12 13:55:06 +03:00
P Gergő a00183deba Refactor: Metadata. meta to metadata 2023-03-12 18:32:56 +01:00
P Gergő 9d16575791 Why do we have 2 sql? 2023-02-22 14:12:37 +01:00
thefourCraft 509e27befc Merge branch 'esx-framework:main' into production 2023-02-21 11:24:30 +02:00
TheFantomas f65359c79a fix(es_extended/sql): default value of field position 2023-02-05 10:51:10 +01:00
Naifen || Developer 06c45f928e Update(DefaultSpawn): Easier now 2023-02-03 14:40:15 +01:00
thefourCraft c984939412 Update legacy.sql 2023-01-30 08:40:41 +02:00
Csoki d6fe06d9f5 feat(modules): add npwd support 2023-01-22 13:02:06 +01:00
Benzo 4267f1d915 Squashed commit of the following:
commit fffe62c047
Merge: 35899761 b7e5351f
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Wed Jan 18 14:16:02 2023 +0100

    Merge pull request #838 from Rav3n95/develop

    refactor(esx_banking)

commit 35899761ba
Merge: b09776b4 1d06e246
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Wed Jan 18 13:56:51 2023 +0100

    Merge pull request #834 from lexinor/patch-2

    refactor(esx_service/server/main.lua): Added some new globalstate stuff and fixed stuff

commit b09776b4c5
Merge: 3c4f81f9 18c4d704
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Wed Jan 18 13:51:46 2023 +0100

    Merge pull request #837 from esx-framework/esx_phone_removing

    build: remove esx_phone

commit 3c4f81f989
Merge: 3bc649d7 935eb8f2
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Wed Jan 18 13:40:43 2023 +0100

    Merge pull request #843 from PoPoGH/main

    Create fr.lua

commit 935eb8f2d6
Author: PoPo <76515395+PoPoGH@users.noreply.github.com>
Date:   Wed Jan 18 00:07:23 2023 +0100

    Update fr.lua

commit 06d17a6ddf
Author: PoPo <76515395+PoPoGH@users.noreply.github.com>
Date:   Wed Jan 18 00:06:03 2023 +0100

    add french locale

    some improvements

commit 811636cb58
Author: PoPo <76515395+PoPoGH@users.noreply.github.com>
Date:   Tue Jan 17 19:35:14 2023 +0100

    Add French Language

commit 3b7e4281dc
Author: PoPo <76515395+PoPoGH@users.noreply.github.com>
Date:   Tue Jan 17 15:09:10 2023 +0100

    Create fr.lua

commit b7e5351fcb
Author: Csoki <feketetibi71@gmail.com>
Date:   Mon Jan 16 13:38:55 2023 +0100

    fix(esx_banking/client): cant open if player death

    add 'esx:onPlayerDeath' event

commit 618eafc9a1
Author: Csoki <feketetibi71@gmail.com>
Date:   Mon Jan 16 13:26:22 2023 +0100

    Update README.md

    -remove: ox target support
    -format

commit 81c95b1a2b
Merge: 472f33bc 2e8871cc
Author: Csoki <feketetibi71@gmail.com>
Date:   Mon Jan 16 13:22:33 2023 +0100

    Merge branch 'develop' of https://github.com/Rav3n95/esx-legacy into pr/838

commit 472f33bcaf
Author: Csoki <feketetibi71@gmail.com>
Date:   Mon Jan 16 13:21:31 2023 +0100

    refactor(esx_banking/client): refactor some if  conditions

commit 8258d3fb6e
Author: P Gergő <paldi95@gmail.com>
Date:   Sat Jan 14 22:48:06 2023 +0100

    or 10

    fix: distance condition

commit 2e8871cc95
Author: P Gergő <paldi95@gmail.com>
Date:   Sat Jan 14 22:48:06 2023 +0100

    or 10

commit c70cd30922
Author: P Gergő <paldi95@gmail.com>
Date:   Sat Jan 14 22:39:06 2023 +0100

    refactor(esx_banking)

commit 3bc649d76b
Merge: 3568d2bf d300c1f0
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Sat Jan 14 19:36:08 2023 +0100

    Merge pull request #832 from Flambaa/feat/tr-locale

    feat(esx_accsessories): Add tr locales/translation

commit 18c4d704e1
Author: Jean-Baptiste Devic <jean.baptiste.d06@gmail.com>
Date:   Sat Jan 14 13:52:41 2023 +0100

    build: remove esx_phone

commit 3568d2bf07
Merge: 00c0006e c503b078
Author: Csoki <feketetibi71@gmail.com>
Date:   Sat Jan 14 10:59:55 2023 +0100

    Merge pull request #835 from esx-framework/tony-stark-17-patch-1

    Send lastJob data to client

commit c503b07805
Author: Tony Stark <76168122+tony-stark-17@users.noreply.github.com>
Date:   Sat Jan 14 13:24:55 2023 +0530

    Send lastJob data to client

commit 1d06e246ab
Author: Alessandro Alterno <28725795+lexinor@users.noreply.github.com>
Date:   Fri Jan 13 22:47:26 2023 +0100

    Added some new globalstate stuff and fixed stuff

    - esx:playerDropped event was not working properly, source was not working, changed it to playerId
    - Added GlobalState[name] to make it easier to track onduty counters

commit d300c1f09a
Author: Flamba <denizakgxll@gmail.com>
Date:   Thu Jan 12 23:06:46 2023 +1100

    feat(esx_accsessories): Add tr locales/translation

commit 00c0006e93
Merge: cef3d217 d822a902
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Wed Jan 11 00:41:02 2023 +0100

    Merge pull request #830 from fivemland/fix-779-2

    fix(esx_property): some fixes and refactor

commit d822a90273
Author: Csoki <feketetibi71@gmail.com>
Date:   Wed Dec 28 23:27:40 2022 +0100

    fix(esx_multicharacter): update 'hu' locales

    # add missing locales
    # add new locales PR #777

commit 58360836e7
Author: Csoki <feketetibi71@gmail.com>
Date:   Wed Dec 28 23:13:09 2022 +0100

    feat(esx_property): remove unused variables

commit 5ad4c1b2c0
Author: Csoki <feketetibi71@gmail.com>
Date:   Wed Dec 28 23:03:45 2022 +0100

    fix(esx_property): move 'es' locales to correct location

commit d1e64919ff
Author: Csoki <feketetibi71@gmail.com>
Date:   Wed Dec 28 22:56:50 2022 +0100

    feat(esx_property): update native names

commit cef3d2172f
Merge: 8030c9f9 99c8d116
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Mon Jan 9 23:31:05 2023 +0100

    Merge pull request #794 from fivemland/society-refactor

    refactor(esx_society)

commit 8030c9f98f
Merge: fda62491 78200cee
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Mon Jan 9 22:51:56 2023 +0100

    Merge pull request #829 from Gellipapa/fix-2

    fix(ex_extended locales.lua) fix nil value if change locales

commit 99c8d116b7
Author: Csoki <feketetibi71@gmail.com>
Date:   Mon Jan 9 22:51:27 2023 +0100

    fix

commit 78200cee9f
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Mon Jan 9 22:47:23 2023 +0100

    fix nil value if change locales

commit 83833eb20c
Merge: 25016e8b fda62491
Author: Csoki <feketetibi71@gmail.com>
Date:   Mon Jan 9 22:44:46 2023 +0100

    Merge branch 'develop' into society-refactor

commit fda62491f4
Merge: e10494a3 163dd3b0
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Mon Jan 9 22:27:09 2023 +0100

    Merge pull request #799 from TheFantomas/main

    New year licenses 🎈 🎈 🎈

commit e10494a382
Merge: 24d45560 53d2aa56
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Mon Jan 9 22:08:00 2023 +0100

    Merge pull request #601 from AstroNext/AstroNext

    refactor(esx_menu_default/client/main.lua): Change isControlePress to ESX.RegisterInput

commit 24d4556019
Merge: 191088c8 f5e0115e
Author: Jean-Baptiste <jean.baptiste.d06@gmail.com>
Date:   Mon Jan 9 19:41:21 2023 +0100

    Merge pull request #823 from TheFantomas/main

    Add Feature Request and General Support

commit 191088c818
Merge: 58e48df5 21535af0
Author: Jean-Baptiste <jean.baptiste.d06@gmail.com>
Date:   Mon Jan 9 19:36:46 2023 +0100

    Merge pull request #827 from esx-framework/main

    make dev up to date

commit 58e48df514
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Mon Jan 9 11:25:42 2023 +0100

    Revert "Only show Default Inventory if Config enabled."

    This reverts commit 1abd1fb5b4.

commit ee09e06f1d
Merge: aa3032cf 23705a13
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Mon Jan 9 10:09:29 2023 +0000

    Merge pull request #824 from Rav3n95/develop

    Fix for #821

commit aa3032cf23
Merge: b62be9ea c75e3a14
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Mon Jan 9 10:08:40 2023 +0000

    Merge pull request #826 from iSentrie/patch-8

    fix(esx_lscustom): Added 5th engine level

commit c75e3a1400
Author: iSentrie <xvender7@gmail.com>
Date:   Mon Jan 9 11:29:25 2023 +0200

    Added 5th engine level

    Fix for vehicles that has 5 engine upgrades, example `shinobi`
    Prevents errors

commit 23705a135f
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Sun Jan 8 18:31:48 2023 +0100

    Forgotten print

commit dd634b66cc
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Sun Jan 8 18:30:58 2023 +0100

    Fixes

commit f5e0115e1e
Author: TheFarFantomas <thefarfantomas@gmail.com>
Date:   Sun Jan 8 17:55:09 2023 +0100

    Add tag

commit 8b9fb47eb0
Author: TheFarFantomas <thefarfantomas@gmail.com>
Date:   Sun Jan 8 17:53:29 2023 +0100

    Support

commit 15d8a337a9
Author: TheFarFantomas <thefarfantomas@gmail.com>
Date:   Sun Jan 8 17:50:40 2023 +0100

    Feature request

commit 163dd3b01c
Merge: ff5d728d b62be9ea
Author: TheFantomas <117121911+TheFantomas@users.noreply.github.com>
Date:   Sun Jan 8 17:33:26 2023 +0100

    Merge branch 'develop' into main

commit b62be9ea91
Merge: 13be7514 3ce03968
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 16:09:36 2023 +0000

    Merge pull request #813 from zinzin92/main

    Create fr.lua

commit 13be751437
Merge: ddd19d0f effd9858
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 16:07:54 2023 +0000

    Merge pull request #778 from johnsoul777/main

    Fix Translate Saving

commit ddd19d0ff1
Merge: c501f3f5 c4cc9843
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 16:04:27 2023 +0000

    Merge pull request #811 from BeansFL/patch-3

    Update de.lua

commit c501f3f565
Merge: 86d03e7b 56992cd8
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 16:03:55 2023 +0000

    Merge pull request #810 from BeansFL/patch-1

    Update de.lua

commit 86d03e7bc9
Merge: ae8d408b e9e761b0
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 16:02:40 2023 +0000

    Merge pull request #816 from Zan1456/patch-3

    Create ui_hu.html

commit ae8d408b2f
Merge: 7f53c705 de666f1b
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 16:01:08 2023 +0000

    Merge pull request #815 from Zan1456/patch-2

    Create questions_hu.js

commit 7f53c70502
Merge: 63c06c0b ba4820c0
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 15:58:58 2023 +0000

    Merge pull request #814 from Zan1456/patch-1

    Update hu.lua

commit 63c06c0b96
Merge: 8c47f5fa 36d05607
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 15:56:01 2023 +0000

    Merge pull request #812 from BeansFL/patch-4

    Update de.lua

commit 8c47f5fa56
Merge: 46fc5f43 81306d50
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 15:51:11 2023 +0000

    Merge pull request #789 from Cartman117/patch-1

    fix(esx_mechanicjob): Translation & Spawn vehicle from garage

commit 46fc5f4326
Merge: ba08825e 842f221b
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 15:49:02 2023 +0000

    Merge pull request #798 from Mojito-Fivem/patch-1

    Update readme.md

commit ba08825eef
Merge: a8c424f7 2a659184
Author: JackDUpModZ <83776161+JackDUpModZ@users.noreply.github.com>
Date:   Sun Jan 8 15:48:49 2023 +0000

    Merge pull request #793 from fivemland/vehicleshop-refactor

    refactor(esx_vehicleshop)

commit a8c424f738
Merge: 90c97779 1abd1fb5
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Sun Jan 8 10:56:03 2023 +0100

    Merge pull request #818 from Kuuzoo/patch-1

    Only show Default Inventory if Config enabled.

commit 90c97779cb
Merge: 53629668 77de399b
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Sun Jan 8 10:55:38 2023 +0100

    Merge pull request #808 from QB-Extended/main

    feat(es_extended): add message to event

commit 1abd1fb5b4
Author: Kuuzoo <81863846+Kuuzoo@users.noreply.github.com>
Date:   Fri Jan 6 23:01:10 2023 +0100

    Only show Default Inventory if Config enabled.

    On Itme Remove/Add the Default Inventory will now only show if enabled in the es_extended Config!

commit e9e761b065
Author: Zan <62830223+Zan1456@users.noreply.github.com>
Date:   Fri Jan 6 11:46:26 2023 +0100

    Create ui_hu.html

commit de666f1b92
Author: Zan <62830223+Zan1456@users.noreply.github.com>
Date:   Fri Jan 6 11:46:02 2023 +0100

    Create questions_hu.js

commit ba4820c0a2
Author: Zan <62830223+Zan1456@users.noreply.github.com>
Date:   Fri Jan 6 11:42:08 2023 +0100

    Update hu.lua

commit 3ce03968db
Author: Zinzin92 <kevin-descours@outlook.fr>
Date:   Thu Jan 5 12:16:02 2023 +0100

    Create fr.lua

commit 36d05607eb
Author: BeansFL <106496863+BeansFL@users.noreply.github.com>
Date:   Thu Jan 5 03:26:47 2023 +0100

    Update de.lua

commit c4cc9843d5
Author: BeansFL <106496863+BeansFL@users.noreply.github.com>
Date:   Thu Jan 5 03:09:31 2023 +0100

    Update de.lua

commit 56992cd8bc
Author: BeansFL <106496863+BeansFL@users.noreply.github.com>
Date:   Thu Jan 5 02:57:03 2023 +0100

    Update de.lua

commit 77de399b99
Author: Mycroft <kaseyfitton@hotmail.co.uk>
Date:   Wed Jan 4 19:58:43 2023 +0000

    fix: more race condition fixing

commit 3892aa9b8f
Author: Mycroft <kaseyfitton@hotmail.co.uk>
Date:   Wed Jan 4 18:59:30 2023 +0000

    fix: society race conditions

commit 43fe788a2b
Author: Mycroft <kaseyfitton@hotmail.co.uk>
Date:   Wed Jan 4 18:52:48 2023 +0000

    refactor(esx_society): allow registering society with exports

commit c732d79263
Author: Mycroft <kaseyfitton@hotmail.co.uk>
Date:   Wed Jan 4 18:50:34 2023 +0000

    tweak(esx_society): better readme

commit e9e4fa0205
Author: Mycroft <kaseyfitton@hotmail.co.uk>
Date:   Wed Jan 4 00:17:51 2023 +0000

    fix(es_extended): print formatting

commit 5b2509b2fa
Author: Mycroft <kaseyfitton@hotmail.co.uk>
Date:   Tue Jan 3 23:14:27 2023 +0000

    feat(es_extended): add message to event

commit ff5d728d29
Merge: 63215f7e e0f55fc5
Author: TheFantomas <117121911+TheFantomas@users.noreply.github.com>
Date:   Mon Jan 2 21:01:20 2023 +0100

    Merge branch 'develop' into main

commit 63215f7e2d
Author: TheFarFantomas <thefarfantomas@gmail.com>
Date:   Mon Jan 2 19:00:01 2023 +0100

    Edit date in esx_identity

commit 25441de8b3
Author: TheFarFantomas <thefarfantomas@gmail.com>
Date:   Mon Jan 2 18:57:43 2023 +0100

    New year licenses

commit 842f221b34
Author: Liam Dormon <66041893+Mojito-Fivem@users.noreply.github.com>
Date:   Mon Jan 2 17:06:59 2023 +0000

    Update readme.md

commit effd985898
Author: AL1ƎN <72218928+johnsoul777@users.noreply.github.com>
Date:   Fri Dec 30 15:56:21 2022 +0100

    Create es.js

commit 0bc5589679
Merge: 92b111cb 17f96a74
Author: AL1ƎN <72218928+johnsoul777@users.noreply.github.com>
Date:   Fri Dec 30 15:55:12 2022 +0100

    Merge branch 'esx-framework:main' into main

commit 25016e8b4d
Author: Csoki <feketetibi71@gmail.com>
Date:   Fri Dec 30 12:06:18 2022 +0100

    refactor(esx_society): main/server.lua

commit a759b4d74b
Author: Csoki <feketetibi71@gmail.com>
Date:   Fri Dec 30 12:06:00 2022 +0100

    fix(esx_society): invalid job bug

commit 93d8a11aaf
Author: Csoki <feketetibi71@gmail.com>
Date:   Fri Dec 30 11:28:11 2022 +0100

    feat(esx_policejob): add esx_proprty dependency

commit 88bbaa1282
Author: Csoki <feketetibi71@gmail.com>
Date:   Fri Dec 30 11:27:10 2022 +0100

    fix(esx_society): fix invalid job bug

commit d572f1acb0
Author: Csoki <feketetibi71@gmail.com>
Date:   Fri Dec 30 11:15:36 2022 +0100

    feat(esx_society): add missing locales

commit 2a659184d6
Author: Csoki <feketetibi71@gmail.com>
Date:   Fri Dec 30 10:41:57 2022 +0100

    refactor(esx_vehicleshop): main/client.lua

commit 6212076bd4
Author: Csoki <feketetibi71@gmail.com>
Date:   Fri Dec 30 10:24:19 2022 +0100

    fix(esx_vehicleshop): 'hu' locales

commit fbbd6eb66a
Author: Csoki <feketetibi71@gmail.com>
Date:   Fri Dec 30 10:01:51 2022 +0100

    refactor(esx_vehicleshop): server/main.lua

commit 43f44a052f
Author: Csoki <feketetibi71@gmail.com>
Date:   Fri Dec 30 09:43:27 2022 +0100

    refactor(esx_vehicleshop): GeneratePlate(), IsPlateTaken()

commit 81306d503b
Author: Cartman117 <121615906+Cartman117@users.noreply.github.com>
Date:   Thu Dec 29 14:02:01 2022 +0100

    fix(esx_mechanicjob): French translation

commit e6481e106e
Author: Cartman117 <121615906+Cartman117@users.noreply.github.com>
Date:   Thu Dec 29 13:42:48 2022 +0100

    fix(esx_mechanicjob): Spawn vehicule from garage

    If Config.EnableSocietyOwnedVehicles = true, spawning vehicule from garage wasn't possible because element.value = 'vehicle_list' but we want vehicule's informations (element2.value)

commit 92b111cbc0
Author: AL1ƎN <72218928+johnsoul777@users.noreply.github.com>
Date:   Wed Dec 28 12:44:39 2022 +0100

    Fix Translate Saving

    Fix Translate Saving

commit 53d2aa56ee
Author: Amir_Lynx <60301485+AmirLynx@users.noreply.github.com>
Date:   Sat Oct 29 17:26:49 2022 +0330

    change isControlePress to registerInput
2023-01-18 15:01:23 +01:00
Jean-Baptiste Devic 5362966833 fix(sql):vehicle_sold table
temporary fix of the database
requires a rewrite
2023-01-03 21:14:26 +01:00
Jean-Baptiste 033b4557e1 Merge branch 'main' into develop 2023-01-03 18:59:19 +01:00
JackDUpModZ ada07355c1 Merge pull request #771 from bitpredator/main
fix:(boat license missing)
2022-12-28 00:02:50 +00:00
Benzo f64076f05b fixed sql.. reverted someones untested change.. 2022-12-27 22:36:42 +01:00
Benzo 70000a99d2 fix(legacy.sql) fixing sql error 2022-12-27 22:22:32 +01:00
Benzo d3aa7e48b4 Squashed commit of the following:
commit 2f61c8b047
Merge: 87dce0d3 a92e8456
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Tue Dec 27 19:59:25 2022 +0100

    Merge pull request #773 from esx-framework/tony-stark-17-patch-2

    refactor: Pass character data to client

commit 87dce0d3ec
Merge: 89d35947 46de4fcb
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Tue Dec 27 19:55:19 2022 +0100

    Merge pull request #774 from TheFantomas/main

    refactor(es_extended/client/main.lua): Remove unused variables and so…

commit 46de4fcb2c
Author: TheFarFantomas <thefarfantomas@gmail.com>
Date:   Tue Dec 27 17:10:15 2022 +0100

    refactor(es_extended/client/main.lua): Remove unused variables and some comments

commit a92e8456fe
Author: Tony Stark <76168122+tony-stark-17@users.noreply.github.com>
Date:   Mon Dec 26 17:15:55 2022 +0530

    Update main.lua

commit 471e19fb53
Author: Tony Stark <76168122+tony-stark-17@users.noreply.github.com>
Date:   Mon Dec 26 16:14:37 2022 +0530

    refactor: Pass character data to client

commit 89d35947c7
Merge: 66ec0972 634a5c74
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Thu Dec 22 00:56:10 2022 +0100

    Merge pull request #766 from esx-framework/revert-751-develop

    Revert "refactor playerclass and default hud settings"

commit 634a5c740f
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Thu Dec 22 00:52:49 2022 +0100

    Revert "refactor playerclass and default hud settings"

commit 66ec0972a3
Merge: 619571cf d719a536
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Thu Dec 22 00:08:55 2022 +0100

    Merge pull request #763 from TheFarFantomas/patch-1

    Update esx_multicharacter dependencies

commit 619571cfae
Merge: 1eee8138 c1e344e9
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Thu Dec 22 00:06:27 2022 +0100

    Merge pull request #751 from Rav3n95/develop

    refactor playerclass and default hud settings

commit 1eee81382f
Merge: 5089accb c4e6712c
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Wed Dec 21 23:51:34 2022 +0100

    Merge pull request #589 from SirLamaGott/main

    feat(esx_skin): update player weight on spawn

commit 5089accb66
Merge: 90c5454f bfbaea5d
Author: Gellipapa <gellerthorvath0@gmail.com>
Date:   Wed Dec 21 23:50:31 2022 +0100

    Merge pull request #764 from bitpredator/main

    fix:(Italian language correction)

commit d719a53666
Author: TheFarFantomas <120812953+TheFarFantomas@users.noreply.github.com>
Date:   Wed Dec 21 21:12:38 2022 +0100

    Update esx_multicharacter dependencies

commit bfbaea5d90
Author: bitpredator <67551273+bitpredator@users.noreply.github.com>
Date:   Wed Dec 21 18:24:25 2022 +0100

    fix:(Italian language correction)

    in the Italian translation some strings were not present

commit 90c5454f13
Merge: b7097cb9 86ced8e9
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Wed Dec 21 15:50:04 2022 +0100

    Merge pull request #761 from paarbo/develop

    fix(legacy.sql): english labels

commit 86ced8e996
Merge: b7097cb9 ccfa9195
Author: paarbo <35691223+paarbo@users.noreply.github.com>
Date:   Wed Dec 21 11:39:39 2022 +0000

    Merge pull request #1 from paarbo/tr-fr-bk

    Translated bank related labels

commit ccfa9195e0
Author: paarbo <35691223+paarbo@users.noreply.github.com>
Date:   Wed Dec 21 11:38:30 2022 +0000

    Translated bank related labels

commit b7097cb90d
Merge: 51bd2c70 c59f6547
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Tue Dec 20 22:16:07 2022 +0100

    Merge pull request #760 from esx-framework/tony-stark-17-patch-2

    Remove Unused code

commit 51bd2c70bb
Merge: 1e4f2293 cf24e721
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Tue Dec 20 21:49:02 2022 +0100

    Merge pull request #759 from tony-stark-17/tony-stark-17-patch-1

    feat: add canClose to context menu

commit c59f654755
Author: Tony Stark <76168122+tony-stark-17@users.noreply.github.com>
Date:   Tue Dec 20 23:26:09 2022 +0530

    Remove Unused code

commit cf24e7212d
Author: Tony Stark <76168122+tony-stark-17@users.noreply.github.com>
Date:   Tue Dec 20 23:13:09 2022 +0530

    Update Multicharacter to fix issue of closing context menu

commit 54088abcb6
Author: Tony Stark <76168122+tony-stark-17@users.noreply.github.com>
Date:   Tue Dec 20 23:10:06 2022 +0530

    Add canClose function to context menu

    Added a canClose parameter so that the user cannot close the menu by pressing ESC instead has to be force closed via code.

commit d0d2c84186
Author: Tony Stark <76168122+tony-stark-17@users.noreply.github.com>
Date:   Tue Dec 20 23:07:36 2022 +0530

    Update UI for canClose function

commit 1e4f2293c2
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Tue Dec 20 21:52:30 2022 +0800

    context implementation (policejob) (#758)

commit 6ffecabaf2
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Mon Dec 19 20:52:58 2022 +0100

    esx_basicneeds rework -Kuuzoo

commit ad8c7e9d28
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Mon Dec 19 18:02:05 2022 +0100

    preparing for esx_hud

commit c2c8b7881b
Merge: 6b113751 024a1a42
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Mon Dec 19 17:47:28 2022 +0100

    Merge pull request #756 from ITKewai/main

    esx_identity: fix NUI not loading on low-end pc

commit 6b11375109
Merge: a9826590 88b5aee1
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Mon Dec 19 14:45:06 2022 +0100

    Merge pull request #755 from wobozkyng/develop

    fix(es_extended/client/functions.lua): fix swapped SetVehicleExtra enabled parameter

commit c1e344e9b5
Author: P Gergő <paldi95@gmail.com>
Date:   Mon Dec 19 14:30:47 2022 +0100

    Fuck property

commit ea22899afd
Author: P Gergő <paldi95@gmail.com>
Date:   Mon Dec 19 14:23:28 2022 +0100

    Disable few hud component

commit 024a1a4247
Author: IT-Kewai <44037081+ITKewai@users.noreply.github.com>
Date:   Sun Dec 18 15:09:18 2022 +0100

    esx_identity: fix NUI not loading on low-end pc

commit 88b5aee197
Author: wobozkyng <42249669+wobozkyng@users.noreply.github.com>
Date:   Sun Dec 18 20:54:33 2022 +0700

    fix(es_extended/client/functions.lua): fix swapped SetVehicleExtra enabled parameter

commit 9c3c225b11
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Fri Dec 16 17:20:54 2022 +0100

    refactor playerclass

commit a982659021
Merge: caccbe49 a9562d97
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Fri Dec 16 16:44:57 2022 +0100

    Merge pull request #750 from CommunityRP-FiveM-Server/develop

    fix typo

commit a9562d97d4
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Fri Dec 16 16:44:22 2022 +0100

    fix typo

commit caccbe492d
Merge: 7fa27711 9a5bef10
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Fri Dec 16 11:52:38 2022 +0100

    Merge pull request #748 from esx-framework/tony-stark-17-patch-1

    fix: Fixed notification issue when xPlayer is nil

commit 7fa27711db
Merge: aa8362e7 bdcd5330
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Fri Dec 16 11:51:05 2022 +0100

    Merge pull request #749 from lexinor/patch-2

    refactor([SQL]/legacy.sql) : Changed PK in vehicle_sold

commit bdcd53307a
Author: Alessandro Alterno <28725795+lexinor@users.noreply.github.com>
Date:   Fri Dec 16 10:38:05 2022 +0100

    Changed PK in vehicle_sold

commit 9a5bef1099
Author: Tony Stark <76168122+tony-stark-17@users.noreply.github.com>
Date:   Fri Dec 16 09:34:45 2022 +0530

    Update main.lua

commit 44a0021b7b
Author: Tony Stark <76168122+tony-stark-17@users.noreply.github.com>
Date:   Fri Dec 16 09:21:19 2022 +0530

    fix: Moved checks to if xPlayer isn't nil

commit aa8362e77c
Merge: 3dd19f54 ca0c535e
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 21:26:47 2022 +0100

    Merge pull request #747 from fivemland/refactor-weapons

    refactor: es_extended weapon functions

commit ca0c535ea9
Author: Csoki <feketetibi71@gmail.com>
Date:   Thu Dec 15 20:44:38 2022 +0100

    refactor: es_extended weapon functions

commit 3dd19f5442
Merge: 0da03b1d 3f5a0901
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 17:24:04 2022 +0100

    Merge pull request #733 from wobozkyng/main

    refactor(es_extended\client\main.lua): entity check VehicleProperties Statebag handler

commit 0da03b1daf
Merge: bd8c5844 213c68e3
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 16:29:40 2022 +0100

    Merge pull request #743 from fivemland/fix-739

    fix(es_extended/client/functions.lua): setVehicleProps

commit bd8c5844f9
Merge: 24cc0c98 702b64fe
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 16:29:03 2022 +0100

    Merge pull request #745 from johnsoul777/patch-4

    Create es.lua

commit 24cc0c98fc
Merge: 88fcbc69 c26c2036
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 16:27:49 2022 +0100

    Merge pull request #744 from fivemland/fix-736

    fix(esx_banking): issue #736

commit 88fcbc6965
Merge: a3bf2f92 561740f1
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 16:26:16 2022 +0100

    Merge pull request #718 from fivemland/locale-update

    refactor/feat(es_extended): small refactor and add missing locales

commit 702b64fe83
Author: AL1ƎN <72218928+johnsoul777@users.noreply.github.com>
Date:   Thu Dec 15 15:57:24 2022 +0100

    Create es.lua

commit c26c2036a5
Author: Csoki <feketetibi71@gmail.com>
Date:   Thu Dec 15 14:07:13 2022 +0100

    fix: 'no object by ID' warning

commit 82c83cf884
Author: Csoki <feketetibi71@gmail.com>
Date:   Thu Dec 15 13:59:03 2022 +0100

    esx_banking: remove unused xPlayer and event handle only if peds enabled

commit 213c68e3ee
Author: Csoki <feketetibi71@gmail.com>
Date:   Thu Dec 15 13:52:14 2022 +0100

    fix: setVehicleProps

commit a3bf2f9280
Merge: d6679300 13281e60
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 13:44:59 2022 +0100

    Merge pull request #742 from Rav3n95/main

    fix text ui again

commit 13281e6053
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 13:44:25 2022 +0100

    fix text ui again

commit 561740f1ce
Merge: bedefd7b d6679300
Author: Csoki <feketetibi71@gmail.com>
Date:   Thu Dec 15 13:43:56 2022 +0100

    Merge branch 'develop' into locale-update

commit d667930063
Merge: fbd544cc 14b852de
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 13:30:18 2022 +0100

    Merge pull request #731 from Taavi-AU/develop

    context implementation

commit fbd544cc37
Merge: 69a93dab 1248c0a5
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 13:28:24 2022 +0100

    Merge pull request #711 from bitpredator/main

    feat:(Italian language translation)

commit 69a93dab36
Merge: 555afbcb 9f072f99
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 13:27:27 2022 +0100

    Merge pull request #728 from TheFantomas/patch-2

    Update cs.lua and dont translate some things

commit 555afbcb9a
Merge: abcb11ef 44169533
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Thu Dec 15 13:25:55 2022 +0100

    Merge pull request #734 from iSentrie/patch-8

    fix(es_extended): allow set account to 0 too

commit abcb11ef5e
Merge: 89194761 227532d4
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Mon Dec 12 17:49:31 2022 +0100

    Merge pull request #735 from Mycroft-Studios/dev

    refactor(es_extended): Server sided Coord Saving + fix spawning of invalid vehicles

commit 227532d4b6
Author: Mycroft <kaseyfitton@hotmail.co.uk>
Date:   Fri Dec 9 22:17:47 2022 +0000

    fix(es_extended): dont spawn vehicle if non-existant

commit bdd56329c7
Author: Mycroft <kaseyfitton@hotmail.co.uk>
Date:   Fri Dec 9 18:15:15 2022 +0000

    tweak(es_extended): remove unused event handler

commit 51280a094c
Author: Mycroft <kaseyfitton@hotmail.co.uk>
Date:   Fri Dec 9 01:07:53 2022 +0000

    refactor(es_extended): Server sided Coord Saving

    this is as thread less design that allows both xPlayer.coords and xPlayer.getCoords to correctly function, aswell as removing the need for the client to trigger a server event
    this is once again, a change that **requires** Onesync **infinity**

commit 4416953334
Author: iSentrie <xvender7@gmail.com>
Date:   Thu Dec 8 19:03:11 2022 +0200

    allow set account to 0 too

    pretty sure i was done this fix, but someone tend to undo fixes and have broken code over and over again

commit 3f5a090125
Author: wobozkyng <42249669+wobozkyng@users.noreply.github.com>
Date:   Thu Dec 8 17:55:48 2022 +0700

    refactor(es_extended\client\main.lua): entity check VehicleProperties Statebag handler

commit 1248c0a5cd
Author: bitpredator <67551273+bitpredator@users.noreply.github.com>
Date:   Tue Dec 6 17:18:32 2022 +0100

     feat:(Italian language for esx_skin)

commit b55a603e4a
Author: bitpredator <67551273+bitpredator@users.noreply.github.com>
Date:   Tue Dec 6 16:54:16 2022 +0100

    feat:(Italian language for esx_skin)

commit 13a57c67db
Merge: 3fb93998 684752c8
Author: bitpredator <67551273+bitpredator@users.noreply.github.com>
Date:   Tue Dec 6 16:33:22 2022 +0100

    Merge branch 'esx-framework:main' into main

commit 14b852dee1
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Mon Dec 5 15:26:49 2022 +0800

    closecontext func

commit fa8b7d6068
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Mon Dec 5 15:16:40 2022 +0800

    fix _U to TranslateCap

commit 04ebf295f6
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Mon Dec 5 15:13:46 2022 +0800

    remove closeall func

commit 25b1660fef
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Mon Dec 5 15:12:46 2022 +0800

    inventory context implementation

commit d5888d3ff0
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Mon Dec 5 15:12:03 2022 +0800

    remove is menu open check

commit 88a32d6a6c
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Mon Dec 5 15:02:14 2022 +0800

    full context implementation

commit 9f072f99cf
Author: TheFantomas <117121911+TheFantomas@users.noreply.github.com>
Date:   Sun Dec 4 12:16:28 2022 +0100

    Update cs.lua and dont translate some things

commit 89194761e5
Merge: e3b33147 3f54a18b
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Sun Dec 4 04:46:57 2022 +0100

    Merge pull request #722 from Taavi-AU/main

    context menu implementation

commit e3b3314706
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Sun Dec 4 04:44:43 2022 +0100

    refactor(es_extended) removing getshared event

commit eb983f1206
Author: Benzo <102178921+Benzo00@users.noreply.github.com>
Date:   Sun Dec 4 04:44:23 2022 +0100

    refactor(es_extended) removing getshared event

commit b4cfc9cef2
Merge: 27eeea52 43e38873
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Fri Dec 2 22:32:22 2022 +0100

    Merge pull request #720 from johnsoul777/patch-2

    New update in spanish

commit 27eeea5224
Merge: 684752c8 a3d7b381
Author: P Gergő <69343477+Rav3n95@users.noreply.github.com>
Date:   Fri Dec 2 22:31:11 2022 +0100

    Merge pull request #721 from johnsoul777/patch-3

    Last update in spanish

commit 3f54a18bc5
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Thu Dec 1 21:36:16 2022 +0800

    forgot sourceItem

commit 6f4de63488
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Thu Dec 1 21:21:26 2022 +0800

    fix invalid quantity when depositing items into storage

commit e070b83afd
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Thu Dec 1 21:20:58 2022 +0800

    complete context implementation

commit 5b357be9dc
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Thu Dec 1 21:01:42 2022 +0800

    fix typo

commit 131a9fcd8c
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Thu Dec 1 20:55:09 2022 +0800

    context implementation

commit 724ac6920c
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Thu Dec 1 20:21:08 2022 +0800

    context implementation

commit 90fd8dd22e
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Thu Dec 1 20:17:59 2022 +0800

    complete context implementation

commit 847a0d73b9
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Thu Dec 1 20:14:08 2022 +0800

    update hasExitedMarker (context)

commit 649ca301a6
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Thu Dec 1 20:12:13 2022 +0800

    complete context implementation

commit 7282e0f8cf
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Thu Dec 1 19:54:39 2022 +0800

    context implementation

commit bf7bc4401b
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Wed Nov 30 20:35:49 2022 +0800

    add pharmacy items into config for better user friendlyness

commit 77863a229b
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Wed Nov 30 20:29:16 2022 +0800

    context implementation, replace whole

commit e3671ef0ce
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Wed Nov 30 20:22:57 2022 +0800

    context implementation

commit 805cc7ad3a
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Wed Nov 30 20:22:06 2022 +0800

    context implementation

commit e0c211d7dd
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Wed Nov 30 20:21:36 2022 +0800

    context implemenation

commit 0fca847965
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Tue Nov 29 17:57:15 2022 +0800

    context implementation

commit 429b454116
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Tue Nov 29 17:56:12 2022 +0800

    min/max config option

commit 7b7d4db48a
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Tue Nov 29 17:34:52 2022 +0800

    remove is menu open check

commit d4500ad09b
Author: Taavi <97351942+Taavi-AU@users.noreply.github.com>
Date:   Mon Nov 28 16:35:04 2022 +0800

    context implementation

commit a3d7b381d2
Author: AL1ƎN <72218928+johnsoul777@users.noreply.github.com>
Date:   Mon Nov 28 03:13:04 2022 +0100

    Last update in spanish

    Last update in spanish

commit 43e388739e
Author: AL1ƎN <72218928+johnsoul777@users.noreply.github.com>
Date:   Mon Nov 28 03:03:32 2022 +0100

    New update in spanish

    New update in spanish

commit c4e6712cb0
Merge: 33e1bb33 c560653b
Author: John Bronnert <65968077+SirLamaGott@users.noreply.github.com>
Date:   Sun Nov 27 22:04:55 2022 +0100

    Merge branch 'esx-framework:main' into main

commit bedefd7b5c
Author: Csoki <feketetibi71@gmail.com>
Date:   Sun Nov 27 21:58:04 2022 +0100

    es_extended: noclip

    # add missing locales
    # refactor noclip methods (thread only if noclip enabled)
    # format code

commit b98de6c2c4
Author: Csoki <feketetibi71@gmail.com>
Date:   Sun Nov 27 21:34:19 2022 +0100

    es_extended: refactor esx:GetVehicleType event

commit a6a411a93a
Author: Csoki <feketetibi71@gmail.com>
Date:   Sun Nov 27 21:29:20 2022 +0100

    es_extended: add missing locales - tpm

commit 9a196c3012
Author: Csoki <feketetibi71@gmail.com>
Date:   Sun Nov 27 21:24:53 2022 +0100

    esx_garage: update 'hu' locales

commit 33e1bb331c
Author: John <johnbronnert@gmail.com>
Date:   Sun Nov 27 21:16:46 2022 +0100

    fix(esx_skin): removed if statement

commit 3fb93998e6
Author: bitpredator <67551273+bitpredator@users.noreply.github.com>
Date:   Sun Nov 27 11:38:52 2022 +0100

    feat:(Italian language translation)

commit f17fc54e6b
Author: John <johnbronnert@gmail.com>
Date:   Tue Oct 25 13:51:13 2022 +0200

    feat(esx_skin): update player weight on spawn

    This updates the max weight on join, if a player has a bag.
2022-12-27 21:21:35 +01:00
bitpredator f71dcae72a fix:(boat license missing) 2022-12-23 13:18:58 +01:00
paarbo ccfa9195e0 Translated bank related labels 2022-12-21 11:38:30 +00:00
Alessandro Alterno bdcd53307a Changed PK in vehicle_sold 2022-12-16 10:38:05 +01:00
Benzo 70eddcb489 feat: banking sql 2022-09-11 03:31:18 +02:00
Mycroft 91c22ce1fb fix(legacy.sql): Heavy Bob missed a Comma 2022-09-10 04:59:52 +01:00
Heavy Bob 17bc4768b7 User Timestamps by default
This small change will allow anyone using legacy to quickly see via sql when a user account was created and when the user was last active.
2022-09-10 12:35:36 +10:00
Mycroft eddbdbe795 tweak - SQL - Better translations 2022-08-21 09:50:25 +01:00
iSentrie bdeebb4bea Update legacy.sql 2022-08-19 00:31:29 +03:00
Mycroft ff89d8cd59 Update legacy.sql 2022-08-11 10:45:23 +01:00
Mycroft 961e20deb5 fix sql 2022-08-11 10:40:59 +01:00
Mycroft f26cdad52f remove unused SQL parts 2022-08-11 09:23:30 +01:00
Mycroft f9f47e75b5 Update legacy.sql 2022-06-13 15:34:33 +01:00
Benzo 54570c36df update for esx_garage 2022-06-13 09:04:52 +02:00
Benzo 7f28d02989 fix(garage) fixed new garage sql 2022-06-09 01:59:30 +02:00
Mycroft fcfc214f15 Update legacy.sql 2022-06-06 16:17:00 +01:00
Mycroft 34fce3b87e oop 2022-06-06 16:00:15 +01:00
Mycroft 1ae04fe0a0 Update legacy.sql 2022-06-06 15:53:16 +01:00
Panda d014b51985 feat(sql): SQL Issue
changed because why are ther chars it should be null.
2022-06-06 16:51:12 +02:00
Benzo 532a865d42 feat(esx_banking) sql 2022-05-15 17:31:43 +02:00
Mycroft c9fb366efa tweak(legacy.sql): remove references to weaponshop 2022-04-25 19:23:28 +01:00
Mycroft f14c6013c5 fix (legacy.sql): remove unused weaponshop table 2022-04-25 18:52:00 +01:00
Esplike 223c8d540d SQL(esx_dmvschool) - Adds licenses
fix(esx_legacy): add missing esx_dmvschool sql
2022-04-09 12:16:49 +01:00
Mycroft 8e82543933 Version Bump for 1.6.5 2022-03-23 16:22:46 +00:00