Advertisement
Guest User

luaconfig

a guest
Nov 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. --[[ LUACONFIG ]]--
  2. BRICKSCRAFTING.LUACONFIG = {}
  3. BRICKSCRAFTING.LUACONFIG.AdminSystem = "ULX/FAdmin/More" -- The admin mod in use, options: "Serverguard", "ULX/FAdmin/More", "xAdmin"
  4. BRICKSCRAFTING.LUACONFIG.AdminRanks = { -- ONLY GIVE TO YOURSELF
  5. ["superadmin"] = true
  6. ["admin"] = true
  7. }
  8. BRICKSCRAFTING.LUACONFIG.UseMySQL = true-- Whether MySQL should be used or not, enter your MySQL information in lua/brickscrafting/server/brickscrafting_sql.lua
  9. BRICKSCRAFTING.LUACONFIG.MaxQuests = 1 -- The maximum quests a player can have at once
  10. BRICKSCRAFTING.LUACONFIG.Language = "english" -- The language to be used, options: "english", "russian", "german", "polish", "french"
  11. BRICKSCRAFTING.LUACONFIG.DisableSWEP = false -- Whether the storage SWEP should be given on spawn or not
  12. BRICKSCRAFTING.LUACONFIG.DarkRP = true -- Whether DarkRP is being used or not
  13. BRICKSCRAFTING.LUACONFIG.RockRespawn = 360-- How long till a rock respawns after being destroyed
  14. BRICKSCRAFTING.LUACONFIG.RockHealth = 100 -- How much health does a rock have
  15. BRICKSCRAFTING.LUACONFIG.GarbageRespawn = 300-- How long till a garbage pile respawns after being harvested
  16. BRICKSCRAFTING.LUACONFIG.BenchHealth = 0 -- How much health a crafting bench has, 0 will make it indestructible
  17. BRICKSCRAFTING.LUACONFIG.DisableShadows = true-- Disables shadows on the UI, can increase FPS
  18. BRICKSCRAFTING.LUACONFIG.StorageBind = false -- Opens the storage via a key bind, options: false, KEY_F1, KEY_F2, KEY_F3, KEY_F4, (Any of these: http://wiki.garrysmod.com/page/Enums/KEY)
  19.  
  20.  
  21.  
  22. --[[ LEVELING SYSTEM SUPPORT ]]--
  23. BRICKSCRAFTING.LUACONFIG.EnableLeveling = true -- Whether or not experience should be given for mining etc, SUPPORT FOR LEVELING SYSTEMS, DONT ENABLE IF YOU DONT HAVE ONE!
  24. BRICKSCRAFTING.LUACONFIG.ExpForMining = 40
  25. BRICKSCRAFTING.LUACONFIG.ExpForCutting = 40
  26. BRICKSCRAFTING.LUACONFIG.ExpForQuest = 3000
  27. BRICKSCRAFTING.LUACONFIG.ExpForGarbage = 50
  28.  
  29.  
  30.  
  31. --[[
  32.  
  33. DO NOT EDIT ANYTHING BELOW THIS
  34. You can edit the rest of the config in game by typing !brickscrafting
  35.  
  36. ]]--
  37.  
  38. BRICKSCRAFTING.LUACONFIG.Defaults = {}
  39. BRICKSCRAFTING.LUACONFIG.Defaults.DisplayDist3D2D = 10000
  40. BRICKSCRAFTING.LUACONFIG.Defaults.QuestResetTime = 86400
  41. BRICKSCRAFTING.LUACONFIG.Defaults.ResorceAddMax = 10000
  42. BRICKSCRAFTING.LUACONFIG.Defaults.QuestCraftGoalMax = 25
  43. BRICKSCRAFTING.LUACONFIG.Defaults.QuestResGoalMax = 10000
  44. BRICKSCRAFTING.LUACONFIG.Defaults.PickaxeSkillDifficulty = 0.1
  45. BRICKSCRAFTING.LUACONFIG.Defaults.LumberaxeSkillDifficulty = 0.1
  46. BRICKSCRAFTING.LUACONFIG.Defaults.CraftingSkillDifficulty = 0.25
  47. BRICKSCRAFTING.LUACONFIG.Defaults.RockModel = "models/brickscrafting/rock.mdl"
  48. BRICKSCRAFTING.LUACONFIG.Defaults.TreeModel = "models/props_foliage/tree_springers_01a-lod.mdl"
  49. BRICKSCRAFTING.LUACONFIG.Defaults.PickaxeModel = "models/sterling/w_crafting_pickaxe.mdl"
  50. BRICKSCRAFTING.LUACONFIG.Defaults.LumberAxeModel = "models/sterling/w_crafting_axe.mdl"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement