Skip to content

Commit

Permalink
fix: readme still isn't right
Browse files Browse the repository at this point in the history
  • Loading branch information
TonybynMp4 committed Mar 23, 2024
1 parent fc03493 commit 91a04e2
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ensure qbx_burgershot
prop = {
model = `prop_cs_bs_cup`,
bone = 28422,
pos = vec3(0.0, 0.0, 0.0,),
pos = vec3(0.0, 0.0, 0.0),
rot = vec3(0.0, 0.0, 0.0)
},
anim = {
Expand All @@ -50,7 +50,7 @@ ensure qbx_burgershot
prop = {
model = `prop_cs_bs_cup`,
bone = 28422,
pos = vec3(0.0, 0.0, 0.0,),
pos = vec3(0.0, 0.0, 0.0),
rot = vec3(0.0, 0.0, 0.0)
},
anim = {
Expand All @@ -69,7 +69,7 @@ ensure qbx_burgershot
bone = 18905,
pos = vec3(0.13, 0.05, 0.02),
rot = vec3(-50.0, 16.0, 60.0),
model = "prop_food_bs_chips"
model = 'prop_food_bs_chips'
},
anim = {
dict = 'mp_player_inteat@burger',
Expand Down Expand Up @@ -171,151 +171,151 @@ Add the pictures of the image folder to ox_inventory/web/images
weight = 50,
stack = false,
close = false,
description = "A Fluffy Pink Teddy from the Atic"
description = 'A Fluffy Pink Teddy from the Atic'
},

['toy1'] = {
label = 'Action Figure',
weight = 50,
stack = false,
close = false,
description = "An Action Figure From the late 90's"
description = 'An Action Figure From the late 90's'
},

['burger'] = {
label = 'Burger',
weight = 100,
stack = true,
close = true,
description = "A regular burger for boring people."
description = 'A regular burger for boring people.'
},

['murdermeal'] = {
label = 'Murder Meal',
weight = 50,
stack = true,
close = true,
description = "An Amazing Murder Meal with a chance of a toy."
description = 'An Amazing Murder Meal with a chance of a toy.'
},

['heartstopper'] = {
label = 'Burger Heartstopper',
weight = 500,
stack = true,
close = true,
description = "Sates Hunger."
description = 'Sates Hunger.'
},

['torpedo'] = {
label = 'Burger Torpedo',
weight = 310,
stack = true,
close = true,
description = "Sates Hunger."
description = 'Sates Hunger.'
},

['milkshake'] = {
label = 'Milkshake',
weight = 125,
stack = true,
close = true,
description = "Hand-scooped for you!"
description = 'Hand-scooped for you!'
},

['moneyshot'] = {
label = 'Burger Moneyshot',
weight = 300,
stack = true,
close = true,
description = "Sates Hunger."
description = 'Sates Hunger.'
},

['bleeder'] = {
label = 'Burger Bleeder',
weight = 250,
stack = true,
close = true,
description = "Sates Hunger."
description = 'Sates Hunger.'
},

['meatshake'] = {
label = 'Meat Shake',
weight = 125,
stack = true,
close = true,
description = "Nice'N'Chunky MeatShake remulsified just for you"
description = 'Nice'N'Chunky MeatShake remulsified just for you'
},

['meatfree'] = {
label = 'Meat-free burger',
weight = 125,
stack = true,
close = true,
description = "Sates Hunger."
description = 'Sates Hunger.'
},

['fries'] = {
label = 'Fries',
weight = 125,
stack = true,
close = true,
description = "Sates Hunger."
description = 'Sates Hunger.'
},

['rawmeat'] = {
label = 'Raw Meat',
weight = 125,
stack = true,
close = true,
description = "An Ingredient"
description = 'An Ingredient'
},

['lettuce'] = {
label = 'Lettuce',
weight = 125,
stack = true,
close = true,
description = "An Ingredient"
description = 'An Ingredient'
},

['bun'] = {
label = 'Bun',
weight = 125,
stack = true,
close = true,
description = "An Ingredient"
description = 'An Ingredient'
},

['steak'] = {
label = 'Steak',
weight = 125,
stack = true,
close = true,
description = "An Ingredient"
description = 'An Ingredient'
},

['tomato'] = {
label = 'Tomato',
weight = 125,
stack = true,
close = true,
description = "An Ingredient"
description = 'An Ingredient'
},

['mshakeformula'] = {
label = 'Milkshake Formula',
weight = 125,
stack = true,
close = true,
description = "An Ingredient"
description = 'An Ingredient'
},

['potato'] = {
label = 'Potato',
weight = 1500,
stack = true,
close = true,
description = "An Ingredient"
description = 'An Ingredient'
},
```

Expand All @@ -327,7 +327,7 @@ If you want to make the raw meat a eat-able thing i guess :) (thanks to PrinceAl
weight = 125,
stack = true,
close = true,
description = "An Ingredient"
description = 'An Ingredient'
client = {
status = { hunger = -200000 },
anim = 'eating',
Expand All @@ -343,31 +343,31 @@ If you want to make the raw meat a eat-able thing i guess :) (thanks to PrinceAl
setContainerProperties('murdermeal', {
slots = 4,
maxWeight = 2500,
whitelist = { "bleeder", "meatshake", "fries", "toy1", "toy2" }
whitelist = { 'bleeder', 'meatshake', 'fries', 'toy1', 'toy2' }
})
```

## Insert into @qbx-core/shared/jobs.lua
```lua
["burgershot"] = {
label = "Burgershot Employee",
['burgershot'] = {
label = 'Burgershot Employee',
defaultDuty = false,
offDutyPay = true,
grades = {
{
name = "Trainee",
[0] = {
name = 'Trainee',
payment = 50
},
{
name = "Employee",
[1] = {
name = 'Employee',
payment = 75
},
{
name = "Manager",
[2] = {
name = 'Manager',
payment = 125
},
{
name = "CEO",
[3] = {
name = 'CEO',
isboss = true,
payment = 150
},
Expand Down

0 comments on commit 91a04e2

Please sign in to comment.