Advertisement
Guest User

Untitled

a guest
Aug 29th, 2014
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. #this is an example config file for TerrariaServer.exe
  2. #use the command 'TerrariaServer.exe -config serverconfig.txt' to use this configuration or run start-server.bat
  3. #please report crashes by emailing crashlog.txt to support@terraria.org
  4.  
  5. #the following is a list of available command line parameters:
  6.  
  7. #-config <config file> Specifies the configuration file to use.
  8. #-port <port number> Specifies the port to listen on.
  9. #-players <number> / -maxplayers <number> Sets the max number of players
  10. #-pass <password> / -password <password> Sets the server password
  11. #-world <world file> Load a world and automatically start the server.
  12. #-autocreate <#> Creates a world if none is found in the path specified by -world. World size is specified by: 1(small), 2(medium), and 3(large).
  13. #-banlist <path> Specifies the location of the banlist. Defaults to "banlist.txt" in the working directory.
  14. #-worldname <world name> Sets the name of the world when using -autocreate.
  15. #-secure Adds addition cheat protection to the server.
  16. #-noupnp Disables automatic port forwarding
  17.  
  18. #Set’s the max number of players allowed on a server. Value must be between 1 and 255
  19. maxplayers=4
  20.  
  21. #Load a world and automatically start the server.
  22. world=C:\Users\P\Documents\My Games\Terraria\Worlds\abc.wld
  23.  
  24. #Set the port number
  25. port=7777
  26.  
  27. #Set the server password
  28. password=
  29.  
  30. #Set the message of the day
  31. motd=test
  32.  
  33. #Sets the folder where world files will be stored
  34. worldpath=C:\Users\P\Documents\My Games\Terraria\Worlds
  35.  
  36. #Creates a new world if none is found. World size is specified by: 1(small), 2(medium), and 3(large).
  37. #autocreate=3
  38.  
  39. #Sets the name of the world when using autocreate
  40. #worldname=World
  41.  
  42. #The location of the banlist. Defaults to "banlist.txt" in the working directory.
  43. #banlist=banlist.txt
  44.  
  45. #Adds addition cheat protection.
  46. secure=1
  47.  
  48. #Sets the server language 1:English, 2:German, 3:Italian, 4:French, 5:Spanish
  49. lang=1
  50.  
  51. #Automatically forward ports with uPNP
  52. upnp=1
  53.  
  54. #Reduces enemy skipping but increases bandwidth usage. The lower the number the less skipping will happen, but more data is sent. 0 is off.
  55. #npcstream=60
  56.  
  57. #Default system priority 0:Realtime, 1:High, 2:AboveNormal, 3:Normal, 4:BelowNormal, 5:Idle
  58. priority=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement