Advertisement
Guest User

sv_craftwos.lua

a guest
Dec 5th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. --[[-------------------------------------------------------------------]]--[[
  2.  
  3. Copyright wiltOS Technologies LLC, 2019
  4.  
  5. Contact: www.wiltostech.com
  6. ----------------------------------------]]--
  7.  
  8. wOS = wOS or {}
  9. wOS.ALCS = wOS.ALCS or {}
  10. wOS.ALCS.Config = wOS.ALCS.Config or {}
  11. wOS.ALCS.Config.Crafting = wOS.ALCS.Config.Crafting or {}
  12.  
  13.  
  14. --Your MySQL Data ( Fill in if you are using MySQL Database )
  15. --DO NOT GIVE THIS INFORMATION OUT! Malicious users can connect to your database with it
  16. wOS.ALCS.Config.Crafting.CraftingDatabase = wOS.ALCS.Config.Crafting.CraftingDatabase or {}
  17. wOS.ALCS.Config.Crafting.CraftingDatabase.Host = ""
  18. wOS.ALCS.Config.Crafting.CraftingDatabase.Port = 3306
  19. wOS.ALCS.Config.Crafting.CraftingDatabase.Username = ""
  20. wOS.ALCS.Config.Crafting.CraftingDatabase.Password = ""
  21. wOS.ALCS.Config.Crafting.CraftingDatabase.Database = ""
  22. wOS.ALCS.Config.Crafting.CraftingDatabase.Socket = ""
  23.  
  24.  
  25. --How often do you want to save player crafting ( in seconds )
  26. wOS.ALCS.Config.Crafting.CraftingDatabase.SaveFrequency = 60
  27.  
  28. --Do you want to use MySQL Database to save your data?
  29. --PlayerData ( text files in your data folder ) are a lot less intensive but lock you in on one server
  30. --MySQL Saving lets you sync with many servers that share the database, but has the potential to increase server load due to querying
  31. wOS.ALCS.Config.Crafting.ShouldCraftingUseMySQL = false
  32.  
  33. --How long should we wait before doing a respawn wave of items? ( seconds )
  34. wOS.ALCS.Config.Crafting.ItemSpawnFrequency = 180
  35.  
  36. --How much of the lootspawns should be active? ( 0 to 1 )
  37. wOS.ALCS.Config.Crafting.LootSpawnPercent = 1
  38.  
  39. --How long should it take before the items despawn? ( seconds )
  40. wOS.ALCS.Config.Crafting.ItemDespawnTime = 170
  41.  
  42. wOS.ALCS.Config.Crafting.SaberExperienceTable = {}
  43.  
  44. wOS.ALCS.Config.Crafting.SaberExperienceTable[ "user" ] = {
  45. PlayerKill = 20,
  46. NPCKill = 5,
  47. }
  48.  
  49. wOS.ALCS.Config.Crafting.SaberExperienceTable[ "Spieler" ] = {
  50. PlayerKill = 20,
  51. NPCKill = 5,
  52. }
  53.  
  54. wOS.ALCS.Config.Crafting.SaberExperienceTable[ "Donator" ] = {
  55. PlayerKill = 40,
  56. NPCKill = 10,
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement