-
Notifications
You must be signed in to change notification settings - Fork 22
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
e3a01f9
commit 1974f4a
Showing
8 changed files
with
70 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
fx_version "bodacious" | ||
games {'gta5'} | ||
author 'Iakkoise' | ||
fx_version("bodacious") | ||
games({ "gta5" }) | ||
author("Iakkoise") | ||
|
||
this_is_a_map 'yes' | ||
version '0.0.4' | ||
this_is_a_map("yes") | ||
version("1.0.0") |
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,4 +1,4 @@ | ||
fx_version "adamant" | ||
game 'gta5' | ||
this_is_a_map "yes" | ||
version '0.0.4' | ||
fx_version("adamant") | ||
game("gta5") | ||
this_is_a_map("yes") | ||
version("1.0.0") |
8 changes: 4 additions & 4 deletions
8
server-data/resources/[maps]/pablito_restauracja/fxmanifest.lua
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,4 +1,4 @@ | ||
fx_version "adamant" | ||
game 'gta5' | ||
this_is_a_map "yes" | ||
version '0.0.4' | ||
fx_version("adamant") | ||
game("gta5") | ||
this_is_a_map("yes") | ||
version("1.0.0") |
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
21 changes: 10 additions & 11 deletions
21
server-data/resources/[wasabi]/wasabi_oxshops/configuration/config.lua
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,27 +1,26 @@ | ||
Config = {} | ||
Config.Shops = { | ||
['ambulance'] = { -- Job name | ||
label = 'Hospital Shop', | ||
["ambulance"] = { -- Job name | ||
label = "Hospital Shop", | ||
blip = { | ||
enabled = true, | ||
coords = vec3(309.415375, -561.784607, 43.282104), | ||
sprite = 61, | ||
color = 8, | ||
scale = 0.7, | ||
string = 'ambulance' | ||
string = "ambulance", | ||
}, | ||
locations = { | ||
stash = { | ||
string = '[E] - Access Inventory', | ||
string = "[E] - Access Inventory", | ||
coords = vec3(309.415375, -561.784607, 43.282104), | ||
range = 3.0 | ||
range = 3.0, | ||
}, | ||
shop = { | ||
string = '[E] - Access Shop', | ||
string = "[E] - Access Shop", | ||
coords = vec3(308.782410, -592.061523, 43.282104), | ||
range = 4.0 | ||
} | ||
} | ||
range = 4.0, | ||
}, | ||
}, | ||
}, -- Copy and paste this shop to create more | ||
|
||
} | ||
} |
13 changes: 6 additions & 7 deletions
13
server-data/resources/[wasabi]/wasabi_oxshops/configuration/strings.lua
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,8 +1,7 @@ | ||
Strings = { | ||
sell_price = 'Sell Price', | ||
amount_input = 'Amount', | ||
inventory = 'Inventory', | ||
success = 'Success', | ||
item_stocked_desc = 'You stocked an item for $%s!', | ||
|
||
} | ||
sell_price = "Sell Price", | ||
amount_input = "Amount", | ||
inventory = "Inventory", | ||
success = "Success", | ||
item_stocked_desc = "You stocked an item for $%s!", | ||
} |
38 changes: 19 additions & 19 deletions
38
server-data/resources/[wasabi]/wasabi_oxshops/fxmanifest.lua
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,24 +1,24 @@ | ||
fx_version 'cerulean' | ||
game 'gta5' | ||
lua54 'yes' | ||
fx_version("cerulean") | ||
game("gta5") | ||
lua54("yes") | ||
|
||
description 'Wasabi OX Inventory Player Owned Shops' | ||
author 'wasabirobby#5110' | ||
version '1.0.0' | ||
description("Wasabi OX Inventory Player Owned Shops") | ||
author("wasabirobby#5110") | ||
version("1.0.0") | ||
|
||
shared_scripts { | ||
'@ox_lib/init.lua', | ||
'configuration/*.lua' | ||
} | ||
shared_scripts({ | ||
"@ox_lib/init.lua", | ||
"configuration/*.lua", | ||
}) | ||
|
||
client_scripts { | ||
'client/*.lua' | ||
} | ||
client_scripts({ | ||
"client/*.lua", | ||
}) | ||
|
||
server_scripts { | ||
'server/*.lua' | ||
} | ||
server_scripts({ | ||
"server/*.lua", | ||
}) | ||
|
||
dependencies { | ||
'ox_inventory' | ||
} | ||
dependencies({ | ||
"ox_inventory", | ||
}) |
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