Alucard

Supertuxkart (60Hz)

Sep 12th, 2011
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <stkconfig version="8" >
  3.  
  4. <!-- Audio Settings
  5. sfx_on : Whether sound effects are enabled or not (true or false)
  6. music_on : Whether musics are enabled or not (true or false)
  7. sfx_volume : Volume for sound effects, see openal AL_GAIN for interpretation
  8. music_volume : Music volume from 0.0 to 1.0 -->
  9. <Audio
  10. sfx_on="true"
  11. music_on="true"
  12. sfx_volume="1.000000"
  13. music_volume="0.700000"
  14. />
  15.  
  16. <!-- Race Setup Settings
  17. numkarts : Default number of karts. -1 means use all
  18. numlaps : Default number of laps.
  19. difficulty : Default race difficulty. 0=easy, 1=medium, 2=hard
  20. game_mode : Game mode. 0=standard, 1=time trial, 2=follow the leader, 3=3 strikes -->
  21. <RaceSetup
  22. numkarts="4"
  23. numlaps="4"
  24. difficulty="0"
  25. game_mode="0"
  26. />
  27.  
  28. <!-- Kart to select by default (the last used kart) -->
  29. <kart value="" />
  30.  
  31. <!-- Video Settings
  32. width : Screen/window width in pixels
  33. height : Screen/window height in pixels
  34. prev_width : Previous screen/window width
  35. prev_height : Previous screen/window height
  36. steering_animations : Display steering animations in race
  37. show_fps : Display frame per seconds
  38. max_fps : Maximum fps, should be at least 60
  39. renderer : Type of the renderer. -->
  40. <Video
  41. width="800"
  42. height="600"
  43. fullscreen="false"
  44. prev_width="1024"
  45. prev_height="768"
  46. prev_fullscreen="true"
  47. gfx="true"
  48. steering_animations="true"
  49. show_fps="false"
  50. max_fps="120"
  51. renderer="0"
  52. />
  53.  
  54. <!-- Information about last server used -->
  55. <server_adress value="localhost" />
  56.  
  57. <!-- Information about last server used -->
  58. <server_port value="2305" />
  59.  
  60. <!-- Graphics Quality Settings
  61. anisotropic : Whether anisotropic filtering is allowed to be used (true or false)
  62. trilinear : Whether trilinear filtering is allowed to be used (true or false) -->
  63. <GFX
  64. anisotropic="true"
  65. trilinear="true"
  66. />
  67.  
  68. <crashed value="false" />
  69.  
  70. <!-- Enable logging of stdout and stderr to logfile -->
  71. <log_errors value="false" />
  72.  
  73. <!-- If the kart is driving backwards faster than this value,
  74. switch automatically to reverse camera (set to 0 to disable). -->
  75. <reverse_look_threshold value="0" />
  76.  
  77. <!-- Name of the .items file to use. -->
  78. <item_style value="items" />
  79.  
  80. <!-- Last selected kart group -->
  81. <kart_group value="standard" />
  82.  
  83. <!-- Last selected track group -->
  84. <track_group value="standard" />
  85.  
  86. <!-- Name of the last track used. -->
  87. <last_track value="jungle" />
  88.  
  89. <!-- Name of the skin to use -->
  90. <skin_file value="Peach.stkskin" />
  91.  
  92. <!-- The server used for addon. -->
  93. <server_addons value="http://download.tuxfamily.org/stkaddons/0.7/" />
  94.  
  95. <!-- Represents one human player -->
  96. <Player
  97. name="Guest"
  98. guest="true"
  99. use_frequency="3"
  100. />
  101.  
  102. <!-- Represents one human player -->
  103. <Player
  104. name="alucard"
  105. guest="false"
  106. use_frequency="1"
  107. />
  108.  
  109. </stkconfig>
Advertisement
Add Comment
Please, Sign In to add comment