Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/g drugselling #1

Merged
merged 17 commits into from
Feb 19, 2023
Next Next commit
Base
  • Loading branch information
Giana committed Feb 16, 2023
commit 49cdbddd6633ee291edf4e3f613d3f446ddd81c1
2 changes: 1 addition & 1 deletion .idea/discord.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Empty file added client/main.lua
Empty file.
1 change: 1 addition & 0 deletions config.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Config = {}
25 changes: 25 additions & 0 deletions fxmanifest.lua
Original file line number Diff line number Diff line change
@@ -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'
Empty file added server/main.lua
Empty file.