Debux Workshop
TebexDiscord
  • Debux Documentation
  • Infos
    • Discord customer role
    • Get the update
    • Escrow & Open Source
  • Scripts
    • Multicharacter
      • Installation
      • Configuration
    • Spawn Selector
      • Installation
      • Configuration
    • Crew & Family
      • Configuration
      • Installation
Powered by GitBook
On this page
  1. Scripts
  2. Crew & Family

Configuration


Config = {}

Config.Mysql = "mysql-async" -- mysql-async, oxmysql, ghmattimysql
Config.CreateCrewPrice = 12300
Config.Money = "cash" -- cash or bank
Config.Inventory = "default" -- default, ox_inventory, other
Config.ClientFinishTask = true
Config.MessageLimit = 75
Config.Comands = {
    ["OpenCrewMenu"] = "crew",
}

Config.Log = true 
-- > Log settings are located in shared > server.lua please check

Config.Langs = {
    ["MaxLength"] = "Character limit exceeded!",
    ["NoMoney"] = "Insufficient money",
    ["CrewCreated"] = "Crew successfully created",
    ["ReuestJoin"] = "Request for Participation Sent",
    ["NoJoin"] = "You're already a crew member.",
    ["DeleteCrew"] = "Since you own the crew, the crew is completely shut down.",
    ["LeaveCrew"] = "You've left Crew.",
    ["OwnerRank"] = "You cannot update someone with Owner rank",
    ["NoPermission"] = "Your authority is insufficient to do so",
    ["YouCant"] = "You Can't Do This",
    ["Succes"] = "The procedure was successfully performed.",
    ["Limit"] = "You can't edit this data that fast!",
    ["EmptyText"] = "There are empty spaces ! please check the header or message area.",
    ["NewAnnounce"] = "One of your team broadcast an announcement.",
    ["CrewTask"] = "Congratulations to your team for completing a mission!",
}

Config.Tasks = {
	["FishTask"] = { --Trigger Name (check readme.lua)
		Name = "Catch 50 Fish with a fishing rod!",
		Detail = "articipate in our challenge and win a great prize! Just catch 50 fish using a medium-sized setup. Show your fishing skills and claim your reward. Cast your line, reel in those fish, and secure your victory!!",
		MissionCount = 50, -- How many times should this mission be completed, for example, if it is completed after killing 5 men, the missioncount should be 5
		Award = 40, -- xp count 100xp = 1lvl
	},
	["BuyTask"] = { --Trigger Name (check readme.lua)
		Name = "5 item buy from the market!",
		Detail = " Shop by selecting 5 items from the live market and unlock a series of delightful rewards!",
		MissionCount = 5, -- How many times should this mission be completed, for example, if it is completed after killing 5 men, the missioncount should be 5
		Award = 30, -- xp count 100xp = 1lvl
	},
	["KillTask"] = { --Trigger Name (check readme.lua)
		Name = "Kill 2 people with one gun!",
		Detail = "Take down two opponents using your tactical skills and weaponry to earn valuable XP and unlock the path to your well-deserved reward.",
		MissionCount = 2, -- How many times should this mission be completed, for example, if it is completed after killing 5 men, the missioncount should be 5
		Award = 20, -- xp count 100xp = 1lvl
	},
	["StepsTask"] = { --Trigger Name (check readme.lua)
		Name = "Take a total of 3500 steps!",
		Detail = "Taking steps is very healthy, so keep your health by taking steps and complete this task by taking 5000 steps!",
		MissionCount = 3500, -- How many times should this mission be completed, for example, if it is completed after killing 5 men, the missioncount should be 5
		Award = 25, -- xp count 100xp = 1lvl
	},
	["SpendTask"] = { --Trigger Name (check readme.lua)
		Name = "Spend an hour at Uwu Cafe!",
		Detail = "Have fun and socialize at Uwu cafe and complete this mission in return, it will be a lot of fun for you!",
		MissionCount = 60, -- How many times should this mission be completed, for example, if it is completed after killing 5 men, the missioncount should be 5
		Award = 15, -- xp count 100xp = 1lvl
	},
}

Config.Markers = {
	Stash = {
		Type = 21,
		Size = {
			x = 1.0,
			y = 1.0,
			z = 0.5,
		},
		Color = {
			r = 50,
			g = 200,
			b = 50,
		},
	},
}
PreviousCrew & FamilyNextInstallation

Last updated 1 year ago