Skip to content

Commit

Permalink
Change framework
Browse files Browse the repository at this point in the history
  • Loading branch information
ThymonA committed Aug 12, 2020
1 parent e0a72a9 commit 25d57ae
Show file tree
Hide file tree
Showing 31 changed files with 1,664 additions and 2,175 deletions.
11 changes: 11 additions & 0 deletions configs/client_config.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
----------------------- [ FXCore ] -----------------------
-- GitLab: https://git.thymonarens.nl/ThymonA/fx_core/
-- GitHub: https://github.com/ThymonA/FXCore/
-- License: GNU General Public License v3.0
-- https://choosealicense.com/licenses/gpl-3.0/
-- Author: ThymonA
-- Name: FXCore
-- Version: 1.0.0
-- Description: Custom FiveM Framework
----------------------- [ FXCore ] -----------------------
Config.OS = 'windows'
18 changes: 18 additions & 0 deletions configs/server_config.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
----------------------- [ FXCore ] -----------------------
-- GitLab: https://git.thymonarens.nl/ThymonA/fx_core/
-- GitHub: https://github.com/ThymonA/FXCore/
-- License: GNU General Public License v3.0
-- https://choosealicense.com/licenses/gpl-3.0/
-- Author: ThymonA
-- Name: FXCore
-- Version: 1.0.0
-- Description: Custom FiveM Framework
----------------------- [ FXCore ] -----------------------
Config.OS = 'windows'
Config.Webhooks = {
['connecting'] = {
'https://discordapp.com/api/webhooks/.......'
}
}

Config.FallbackWebhook = ''
26 changes: 26 additions & 0 deletions configs/shared_config.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
----------------------- [ FXCore ] -----------------------
-- GitLab: https://git.thymonarens.nl/ThymonA/fx_core/
-- GitHub: https://github.com/ThymonA/FXCore/
-- License: GNU General Public License v3.0
-- https://choosealicense.com/licenses/gpl-3.0/
-- Author: ThymonA
-- Name: FXCore
-- Version: 1.0.0
-- Description: Custom FiveM Framework
----------------------- [ FXCore ] -----------------------
Config = {}
Config.IdentifierType = 'license'
Config.DefaultAvatar = 'https://i.imgur.com/dj637t5.png'
Config.Langauge = 'nl'

Colors = {
Green = 3066993,
Grey = 9807270,
Red = 15158332,
Orange = 15105570,
Blue = 3447003,
Purple = 10181046,
Yellow = 15844367,
DarkGreen = 2600544,
DarkRed = 12597547
}
43 changes: 0 additions & 43 deletions data/database.lua

This file was deleted.

55 changes: 29 additions & 26 deletions fxmanifest.lua
Original file line number Diff line number Diff line change
@@ -1,43 +1,46 @@
----------------------- [ ꜰxᴄᴏʀᴇ ] -----------------------
-- ɢɪᴛʟᴀʙ: https://git.tigodev.com/Tigo/fx_core
-- ɢɪᴛʜᴜʙ: https://github.com/TigoDevelopment/FXCore
-- ʟɪᴄᴇɴꜱᴇ: GNU General Public License v3.0
----------------------- [ FXCore ] -----------------------
-- GitLab: https://git.thymonarens.nl/ThymonA/fx_core/
-- GitHub: https://github.com/ThymonA/FXCore/
-- License: GNU General Public License v3.0
-- https://choosealicense.com/licenses/gpl-3.0/
-- ᴅᴇᴠᴇʟᴏᴘᴇʀ: TigoDevelopment
-- ᴘʀᴏᴊᴇᴄᴛ: FXCore
-- ᴠᴇʀꜱɪᴏɴ: 1.0.0
-- ᴅᴇꜱᴄʀɪᴘᴛɪᴏɴ: FiveM Framework
----------------------- [ ꜰxᴄᴏʀᴇ ] -----------------------

-- Author: ThymonA
-- Name: FXCore
-- Version: 1.0.0
-- Description: Custom FiveM Framework
----------------------- [ FXCore ] -----------------------
fx_version 'adamant'

game 'gta5'

description 'FXCore Framework'
name 'FXCore'
author 'TigoDevelopment'
contact '[email protected]'
description 'Custom FiveM Framework'
author 'ThymonA'
contact '[email protected]'
url 'https://github.com/ThymonA/FXCore'

version '1.0.0'

server_scripts {
'lib/utils.lua',
'shared/functions.lua',

'vendors/class.lua',
'vendors/stacktrace.lua',
'vendors/MySQL.lua',
'vendors/regex.lua',
'vendors/class.lua',

'shared/common.lua',
'configs/shared_config.lua',
'configs/server_config.lua',

'lib/mysql.lua',
'lib/error.lua',
'lib/resource.lua',
'lib/module.lua',
'lib/database.lua',
'lib/database/job.lua',
'lib/database/user.lua',
'shared/common.lua',
'shared/functions.lua',

'data/database.lua',
'libs/events.lua',
'libs/modules.lua',
'libs/resources.lua',

'server/functions.lua',
'server/main.lua'
}

modules {
'identifiers',
'logs'
}
Loading

0 comments on commit 25d57ae

Please sign in to comment.