Advertisement
Guest User

Untitled

a guest
Jun 29th, 2023
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.51 KB | None | 0 0
  1. Config = {}
  2.  
  3. Config.ThirdEye = true -- set it to false if you are not using qb-target
  4.  
  5. Config.Cooldown = 30 -- seconds
  6. --[[
  7.     1 hour = 3600
  8.     24 hours = 86400
  9. ]]
  10.  
  11. Config.ThreeObject = 'prop_xmas_tree_int'
  12. Config.Threes = {
  13.     vector3(242.57, -881.14, 30.69),
  14. }
  15. Config.Distance = 1.7 -- distance to interact / show floating text
  16.  
  17. Config.Boxes = {
  18.     [1] = {
  19.         items = { -- which and what amount of item you can get
  20.             [1] = {name = 'water_bottle', from = 1, to = 5},
  21.             [2] = {name = 'sandwich', from = 1, to = 5},
  22.             [3] = {name = 'money', from = 250, to = 500}, -- 'money' will add money to your wallet, not actual item
  23.         },
  24.         amount = { from = 1, to = 5 }, -- how many random items you receive
  25.  
  26.         jobs = {'police', 'mechanic', }
  27.     },
  28.     [2] = {
  29.         items = {
  30.             [1] = {name = 'water_bottle', from = 1, to = 5},
  31.             [2] = {name = 'sandwich', from = 1, to = 5},
  32.         },
  33.         amount = { from = 1, to = 5 },
  34.     },
  35.     [3] = {
  36.         items = {
  37.             [1] = {name = 'water_bottle', from = 1, to = 5},
  38.             [2] = {name = 'sandwich', from = 1, to = 5},
  39.         },
  40.         amount = { from = 1, to = 5 },
  41.     },
  42. }
  43.  
  44. Config.Lang = {
  45.     press_e = 'Press ~g~E~w~ to claim the gift',
  46.     already_claimed = 'You already received your daily gift.',
  47.     received_box = 'You took a present from the tree.',
  48.  
  49.     claimed = 'You opened your present and you received some items and money.',
  50.     claimed_items = 'You opened your present and you received some items.',
  51.     claimed_money = 'You opened your presenet and you received some money.',
  52.  
  53.     third_eye = 'Catch your present'
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement