2
0

config.lua 466 B

123456789101112131415161718192021222324252627282930313233343536
  1. return {
  2. role = arg[2] or 'client',
  3. remote = arg[3] or '127.0.0.1',
  4. groupSize = 1,
  5. bounds = 5,
  6. maxPlayers = 32,
  7. syncRate = .02,
  8. inputRate = .02,
  9. emoji = {
  10. 'thumbsup',
  11. 'thumbsdown',
  12. 'rockhand',
  13. 'paperhand',
  14. 'scissorshand',
  15. 'poop',
  16. 'thinking',
  17. 'angry',
  18. 'heart',
  19. 'star',
  20. 'fuckyou',
  21. 'cry',
  22. 'joy',
  23. 'smirk',
  24. 'gg',
  25. 'okhand',
  26. 'moneybags',
  27. 'redquestion',
  28. 'exclamation',
  29. 'zzz',
  30. '1',
  31. '2',
  32. '3',
  33. 'wave',
  34. 'pray'
  35. }
  36. }