123456789101112131415161718192021222324252627282930313233343536 |
- return {
- role = arg[2] or 'client',
- remote = arg[3] or '127.0.0.1',
- groupSize = 1,
- bounds = 5,
- maxPlayers = 32,
- syncRate = .02,
- inputRate = .02,
- emoji = {
- 'thumbsup',
- 'thumbsdown',
- 'rockhand',
- 'paperhand',
- 'scissorshand',
- 'poop',
- 'thinking',
- 'angry',
- 'heart',
- 'star',
- 'fuckyou',
- 'cry',
- 'joy',
- 'smirk',
- 'gg',
- 'okhand',
- 'moneybags',
- 'redquestion',
- 'exclamation',
- 'zzz',
- '1',
- '2',
- '3',
- 'wave',
- 'pray'
- }
- }
|