Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
MausCD authored Aug 31, 2021
1 parent 9932814 commit 5e836ca
Show file tree
Hide file tree
Showing 9 changed files with 736 additions and 0 deletions.
5 changes: 5 additions & 0 deletions SQLs/de.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('repairkit_engine', 'Reperaturkasten(Motor)', '5', '0', '1'),
('repairkit_caro', 'Reperaturkasten(Karroserie)', '5', '0', '1'),
('repairkit_noob', 'Motorbastelset', '5', '0', '1'),
('sponge', 'schwamm', '1', '0', '1')
5 changes: 5 additions & 0 deletions SQLs/en.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('repairkit_engine', 'Repairkit (engine)', '5', '0', '1'),
('repairkit_caro', 'Repairkit(body)', '5', '0', '1'),
('repairkit_noob', 'Engine kit', '5', '0', '1'),
('sponge', 'sponge', '1', '0', '1')
21 changes: 21 additions & 0 deletions __resource.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
fx_version 'cerulean'
games { 'gta5' }
author 'MausCD'
description 'This script adds Repairkits and a Sponge'
version '1.0.0'

shared_script '@es_extended/imports.lua'

client_scripts {
'@es_extended/locale.lua',
"locales/*.lua",
"config.lua",
"client.lua"
}

server_scripts {
'@es_extended/locale.lua',
"locales/*.lua",
"config.lua",
"server.lua"
}
Loading

0 comments on commit 5e836ca

Please sign in to comment.