diff --git a/.idea/discord.xml b/.idea/discord.xml index 30bab2a..d8e9561 100644 --- a/.idea/discord.xml +++ b/.idea/discord.xml @@ -1,7 +1,7 @@ - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ecc2971 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# G-DrugSelling + +G-DrugSelling is a script for FiveM QBCore for selling drugs (or any items) via vehicle and/or walk up, or target, at configurable coordinates. \ No newline at end of file diff --git a/client/main.lua b/client/main.lua new file mode 100644 index 0000000..e69de29 diff --git a/config.lua b/config.lua new file mode 100644 index 0000000..58ce239 --- /dev/null +++ b/config.lua @@ -0,0 +1 @@ +Config = {} \ No newline at end of file diff --git a/fxmanifest.lua b/fxmanifest.lua new file mode 100644 index 0000000..0301575 --- /dev/null +++ b/fxmanifest.lua @@ -0,0 +1,25 @@ +fx_version 'cerulean' + +game 'gta5' + +author 'Giana - github.com/Giana' +description 'g-drugselling' + +shared_scripts { + 'config.lua' +} + +client_scripts { + 'client/main.lua' +} + +server_scripts { + 'server/main.lua' +} + +dependencies { + 'qb-core', + 'qb-target' +} + +lua54 'yes' \ No newline at end of file diff --git a/server/main.lua b/server/main.lua new file mode 100644 index 0000000..e69de29