Advertisement
MDGTutorials

Startup.txt

Jun 24th, 2012
2,685
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. # This script file is run automatically when the server is launched.
  2. # It contains commands on the same format as you would type them in the command console.
  3. # It is always processed as if it is run by a logged-in user.
  4. # It is run even if the remote-admin interface is disabled.
  5. #
  6. # When editing this file, you can check that it is syntactically correct by performing 'admin.runScript Startup.txt' from
  7. # the command console, and check the result.
  8. #
  9. #
  10. # This is a good place to put one-time configurations of the server's gamemode (friendly fire on/off etc).
  11. #
  12. #
  13. # Example:
  14. #
  15. #vars.hardCore true
  16. #vars.friendlyFire true
  17. #
  18. #Default server settings.
  19.  
  20. #Set your server to hardcore mode
  21. vars.hardCore true
  22.  
  23. #Turn on friendly fire
  24. vars.friendlyFire true
  25.  
  26. #Turn auto Balance teams on or off
  27. vars.teamBalance true
  28.  
  29. #turn killcam on/off (show the position of who killed you after you die)
  30. vars.killCam true
  31.  
  32. #Turn the minimap on or off
  33. vars.miniMap false
  34.  
  35. #Turn the crosshair on or off (note that this also turns of the
  36. crosshair for the UAV)
  37. vars.crossHair false
  38.  
  39. #Turn 3dspotting on or off (shows arrows above enemy heads for you and
  40. your teammates when you see an enemy)
  41. vars.3dSpotting true
  42.  
  43. #Turn minimap spotting on or off (displays enemies you or your teammates see on the minimap)
  44. vars.miniMapSpotting false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement