-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06ec627
commit a649c54
Showing
5 changed files
with
66 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,13 @@ | ||
Config = {} | ||
|
||
-- Visualización del qb-target a los dispensadores | ||
Config.label = 'Dispensador de agua' | ||
Config.icon = 'fas fa-droplet' | ||
Config.qbTargetIcon = 'fas fa-droplet' -- icon for the option | ||
Config.qbTargetDistance = 1.4 -- distance | ||
|
||
-- Label para progressbar | ||
Config.labelAction = 'Bebiendo agua...' | ||
Config.VerifyNearby = false -- if true, will check you are veery nearby of the water dispenser | ||
Config.amountThirst = math.random(10, 15) -- how much a cup of water will fill | ||
Config.TimeInMS = 5500 -- time for exec the action (5.5s) | ||
|
||
-- Cuanto debe llenar | ||
Config.amountThirst = math.random(10, 15) | ||
|
||
-- Cuanto debe tardar para beber agua | ||
Config.TimeInMS = 5500 -- 5.5s | ||
|
||
-- Props dispensadores | ||
Config.props = { | ||
Config.props = { -- on which props will work this | ||
'prop_watercooler', | ||
'prop_watercooler_dark' | ||
} | ||
|
||
Config.OutOfService = 'Este dispensador de agua se encuentra fuera de servicio' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,15 @@ | ||
fx_version 'cerulean' | ||
game 'gta5' | ||
|
||
author 'imkuroneko' | ||
description 'Sistema de dispensador de agua' | ||
version '1.0.0' | ||
|
||
server_scripts { | ||
'config.lua', | ||
'server.lua', | ||
} | ||
|
||
client_scripts { | ||
'config.lua', | ||
'client.lua', | ||
} | ||
|
||
dependencies { | ||
'qb-target' | ||
} | ||
fx_version 'cerulean' | ||
game 'gta5' | ||
lua54 'yes' | ||
-- =========================================================== | ||
description 'Complemento para utilizar dispensadores de agua' | ||
author 'KuroNeko' | ||
-- =========================================================== | ||
version '1.1.0' | ||
|
||
-- =========================================================== | ||
shared_scripts { '@ox_lib/init.lua', 'config.lua' } | ||
server_scripts { 'server.lua' } | ||
client_scripts { 'client.lua' } | ||
files { 'locales/es.json' } | ||
dependencies { 'qb-target' } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"qbtarget_label" : "Dispensador de agua", | ||
"action" : "Bebiendo agua...", | ||
"not_available" : "Este dispensador de agua está ocupado o no se encuentra disponible", | ||
"drinked_water_ok" : "Te has hidratado un poco...", | ||
"drinked_water_cancelled" : "Has dejado de beber el agua" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters