Advertisement
Guest User

px_chars/server/config.lua @ store.phynix.gg

a guest
Jun 21st, 2023
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. Config = {
  2. nameBlacklist = { -- if ANY part of a name contains these characters, it will be rejected, i.e.
  3.  
  4. },
  5. uniqueNamesOnly = true, -- names must be unique, i.e., two characters cannot share the same EXACT name (case insensitive)
  6. disableSpecialChars = true, -- names cannot contain special characters, e.g. @, !, ^, %, $, etc.
  7. nameMustContainVowel = true, -- all names must contain a vowel
  8. consoleOutput = true, -- output debug text to console
  9.  
  10. -- nationality settings are only used if useCustomNationality = false in shared/config.lua
  11. urlNationalityAPI = "https://countriesnow.space/api/v0.1/countries/", -- API url
  12. useNationalityAPI = true, -- use nationality API, otherwise add your own below
  13. -- if not using API, choose your nationalities below
  14. nationalities = {
  15. {
  16. value = "USA",
  17. label = "United States"
  18. }
  19. },
  20.  
  21. -- base locations to spawn in
  22. baseSpawnLocations = {
  23. {
  24. coords = vector4(435.68, -645.97, 28.73, 85.0),
  25. name = "Los Santos"
  26. },
  27. {
  28. coords = vector4(177.596, 6636.183, 31.638, 130.0),
  29. name = "Paleto Bay"
  30. },
  31. {
  32. coords = vector4(1501.02, 3776.2, 33.5, 206.0),
  33. name = "Sandy Shores"
  34. }
  35. },
  36.  
  37. -- if jailed, this will be your only option
  38. jailSpawn = {
  39. coords = vector3(1766.39, 2569.34, 45.72),
  40. name = "Bolingbroke Penitentiary"
  41. },
  42.  
  43. -- allow respawning at last location
  44. allowRespawnLastLocation = true
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement