Advertisement
Guest User

Untitled

a guest
May 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.94 KB | None | 0 0
  1. Only directives that start with a # are taken in consideration
  2. Anything else is treated as a comment
  3. For the directives that accept a boolean value (on/off), 0 is off, 1 is on
  4.  
  5. !!!WARNING!!!
  6. Make a backup of this file, before messing with it. In case it gets corrupted, the game might
  7. not start at all, etc.
  8.  
  9. Login settings:
  10.  
  11. Having a Username and Password defined can be a security problem. Use if you are comfortable
  12. in people that can get to your machine knowing this information
  13. #username = ""
  14. #password = ""
  15.  
  16. video modes:
  17. 1 = 640x480 16bpp
  18. 2 = 640x480 32bpp
  19. 3 = 800x600 16bpp
  20. 4 = 800x600 32bpp
  21. 5 = 1024x768 16bpp
  22. 6 = 1024x768 32bpp
  23. 7 = 1152x864 16bpp
  24. 8 = 1152x864 32bpp
  25. 9 = 1280x1024 16bpp
  26. 10 = 1280x1024 32bpp
  27.  
  28. full screen can be 0 (windowed) or 1 (full screen)
  29. if it is windowed, it will use the desktop BPP
  30.  
  31. #video_mode= 6
  32. #full_screen= 0
  33.  
  34. The no_adjust_shadows directive, if set on 1, tells the engine not to disable the shadows if
  35. the frame rate is too low.
  36. #no_adjust_shadows= 1
  37.  
  38. Do NOT turn on the shadows if you have a low end machine, and/or if you are using a 16BPP mode
  39. 16BPP modes, on old video cards (up to GF3) do not support a stencil buffer, so having shadows
  40. will make the game unplayable. If this is the case, use 0 instead of 1, in the shadows_on string
  41.  
  42. #shadows_on= 1
  43.  
  44. If you want to use some better quality shadows, enable the shadow mapping. It will use more ressources
  45. than the old shadows, but will look prettier:
  46.  
  47. #use_shadow_mapping= 1
  48.  
  49. The clouds shadows are projected on the ground, and the game looks nicer with them on.
  50. There is a small (about 10) speed penality, if you let it on, so you might want to disable
  51. them if you have an old video board.
  52.  
  53. #clouds_shadows= 1
  54.  
  55. The reflections can now be turned off without using poor_man.
  56. Set the following to 0 to just disable reflections.
  57. #show_reflection= 1
  58.  
  59. Set this to 0 to disable showing the FPS in the corner
  60. #show_fps= 1
  61.  
  62. Setting this to a non-zero value will throttle EL back only when it's
  63. grabbing far more CPU time than it really needs to render a scene smoothly.
  64. This shouldn't affect slower systems at all, as they need all the CPU
  65. time that they can get to render nicely.
  66. #limit_fps= 0
  67.  
  68. If you REALLY have a VERY poor machine, try to set the next variable on 1
  69. You will notice a drastical drop in quality (no reflections, no clouds shadows, and the texture
  70. filtering is set to NEAREST), but you might get a performance increase.
  71. It is highly discouraged to turn it on, tho.
  72.  
  73. #poor_man= 0
  74.  
  75. If you have a LOT of memory, you can set use_vertex_array to a number greater then 0 to
  76. increase performance. This works well in crowded areas, but can use 130M or more of
  77. memory. Not recommended for machines with less then 384M of memory, 512M of memory is
  78. suggested for this feature. The higher the number, the faster a system needs to be. If
  79. your system lags when lots of player appear, then consider lowering the number.
  80.  
  81. #use_vertex_array = 1
  82.  
  83. Mipmaps is a texture effect that blurs the texture a bit - it may look smoother and better, or it may look worse
  84. depending on your graphics driver settings and the like. It might also improve performance.
  85. To enable mipmaps in the client set the following parameter to 1:
  86.  
  87. #use_mipmaps = 0
  88.  
  89. Some systems will not support the new point based particles in EL. If your client complaints
  90. about not having the point based particles extension, set the following to 0:
  91.  
  92. #use_point_particles= 0
  93.  
  94. If you experience a significant slowdown when particles are nearby, you should consider lowering
  95. the percentage of particles that are displayed. You can set the particles percentage between 0 and 100:
  96.  
  97. #particles_percentage = 100
  98.  
  99. You can increase the mouse sensitivity and cursor changing by adjusting the mouse_limit to
  100. lower numbers, but usually the FPS will drop as well!
  101. #mouse_limit= 2
  102.  
  103. The following two directives are for configuring the camera rotation speed, when you press
  104. left/right arrows (this is the normal mode), or shift+left/right arrows (fine mode)
  105. Increase for a faster camera turning speed, decrease for a smoother animation.
  106.  
  107. #normal_camera_rotation_speed= 20
  108. #fine_camera_rotation_speed = 5.0
  109.  
  110. To prevent your player from moving by accident when you are sitting check sit_lock to 1
  111. and enable it
  112.  
  113. #sit_lock = 0
  114.  
  115. Set to 0 if you don't want the item window to be opened when dropping things
  116. #item_window_on_drop = 1
  117.  
  118. Set to 1 to see the digital clock
  119. #view_digital_clock= 0
  120.  
  121. Lets you relocate your quickbar by using leftclick+ctrl. leftclick+shift determines whether the quickbar should be horisontal
  122. or vertical (default) and leftclick+ctrl+shift resets the quickbar.
  123. #relocate_quickbar = 0
  124.  
  125. Shows your stats in the hud (only works in resolutions > 640x480)
  126. #show_stats_in_hud= 1
  127.  
  128. Settting both show_stats_in_hud and show_statbars_in_hud to 1 will display experience bars for
  129. all your skills on the right side of the screen.
  130. #show_statbars_in_hud= 1
  131.  
  132. Shows help text, that tells about the function of a button:
  133. #show_help_text= 1
  134.  
  135. Set the time before the client will go afk automatically (time in minutes). If 0 the client will not go afk automatically
  136. and you'll have to set the client AFK yourself.
  137. #auto_afk_time= 5
  138.  
  139. Set the default afk message:
  140. #afk_message = "Automessage: I am currently away from my Mac"
  141.  
  142. If afk_local is set, when you go AFK, local chat messages are counted and saved as well as PMs
  143. #afk_local= 1
  144.  
  145. Global ignores is a list with people that are well known for being nasty, so we put them into
  146. a list (global_ignores.txt). Now, if you want, you can configure the client to load that list on
  147. start up, so you will have some sort of additional protection against those nasty people.
  148. By default, this feature is turned on
  149.  
  150. #use_global_ignores = 1
  151.  
  152. Gloabal filters are a list of words that people have found offensive and can be replaced locally.
  153. Set the following to 0 if you don't want to use the default word filtering.
  154. #use_global_filters = 0
  155.  
  156. Set the following text to whatever you want filtered words to be replaced by.
  157. #text_filter_replace = smeg
  158.  
  159. The following directive allows you to choose wether or not you want that each time when you
  160. ignore someone, his/her/it's name to be saved on your local ignores list, so you will
  161. permanently ignore that person (unless/until you manually remove the name from the
  162. local_ignores.txt file)
  163.  
  164. #save_ignores = 1
  165.  
  166. Indicate if and how you want text messages to be logged to file. A distinction is made between
  167. server messages, which are informational messages like "slow down" or "you failed to harvest the
  168. [whatever]", and chat messages like local chat, PMs and GMs. Valid options for log_chat are
  169.  
  170. 0: don't log anything at all
  171. 1: log chat to chat_log.txt, but don't log server messages
  172. 2: log both chat and server messages to chat_log.txt
  173. 3: log chat to chat_log.txt, and server messages to srv_log.txt
  174.  
  175. #log_chat = 2
  176.  
  177. You can adjust the size of the text used for the players name tags on the screen. A value
  178. of 1.0 is the default, and you can make the text bigger or smaller by raising or lowering the values.
  179.  
  180. #name_text_size= 1
  181. Reserved for future usage
  182. #name_font = 0
  183.  
  184. You can adjust the size of the chat text on the screen. A value of 1.0 is the default, and
  185. you can make the text bigger or smaller by raising or lowering the values.
  186.  
  187. #chat_text_size= 1
  188. Reserved for future usage
  189. #chat_font = 0
  190.  
  191. Set enable_sound to 1 to turn on sound effects, or to 0 if you don't want the EL client to take
  192. over your sound card, or if you have sound problems that might crash the client.
  193. #enable_sound= 0
  194.  
  195. Setting enable_music to 1 will make the game play background music. Note that the music
  196. files themselves are not distributed with the game, and are available as a separate download.
  197. #enable_music= 0
  198.  
  199. You can change the music or sound gain (volume) with the following parameters. 0.0 means muted,
  200. 1.0 means full volume:
  201.  
  202. #sound_gain= 0.5
  203. #music_gain= 0.2
  204.  
  205. Here is where you give the path to your favorite browser. Due to the large diversity of browsers
  206. used, no default browser is selected, but you can easily change it in-game in the
  207. configuration tool, or here by adding a # before the browser command you prefer, and removing it
  208. on the next line:
  209. #browser = ""
  210.  
  211. Note that, because of Micro$oft's infinite wisdom, invoking a command is done differently
  212. in Win9* and in Windows NT Æ ©, so you have to manually select how to invoke your browser.
  213. Be sure to have only ONE selected browser, otherwise the current browser thingy is likely not
  214. to work.
  215.  
  216. For Windows NT/2K/XP
  217. browser = "start iexplore.exe"
  218.  
  219. For Win9*
  220. If you don't use quotation marks, the spaces will be stripped.
  221.  
  222. browser = "c:\Program Files\Internet Explorer\iexplore.exe"
  223.  
  224. For Linux:
  225. Just put a # before the browser you use, and make sure there there are not two or more browsers
  226. selected. That is, deselect the windows browser
  227. browser = konqueror
  228. browser = opera
  229. browser = mozilla
  230. browser = netscape
  231.  
  232. Choose your language - all languages available are located in the ./languages/ folder in your eternal lands directory.
  233. The languages are however easily extendable and if you wish, you can translate the client into your language by editing
  234. the files found in the languages directory.
  235. #language= "en"
  236.  
  237. This option allows you to specify a directory other than the current directory to load data from.
  238. This needs to be set to where you installed EL.
  239. For Windows users, the default is "c:\Program Files\Eternal Lands\".
  240. For Gentoo users, the ebuild installs in /usr/share/games/eternal-lands.
  241. #data_dir = "d:\Eternal Lands"
  242.  
  243. Set render_fog to 1 to show fog in the game.
  244. #render_fog= 1
  245.  
  246. Setting use_vertex_buffers to 1 will make EL use vertex buffer objects to speed up the rendering
  247. process, at the expense of using more video memory.
  248. #use_vertex_buffers= 1
  249.  
  250. If compass_north = 1 (the default), the compass needle works like a real compass, i.e. the needle
  251. always points to the north. If it is zero, the needle points in the direction your character is
  252. facing, and the north is in the direction of the N on the on-screen compass.
  253. #compass_north = 1
  254.  
  255. If caps_filter is set, messages that are entirely in upper case are automatically converted to
  256. lower case.
  257. #caps_filter = 0
  258.  
  259. The value for windowed_chat determines how text messages are displayed. Valid options are:
  260.  
  261. 0: Simply print all text on the screen
  262. 1: Tabbed chat: text messages are separated based on the type of message (e.g. server messages,
  263. guild chat, local chat, channel talk), and by selecting a tab from a bar on top of the screen
  264. only one (or all) channel or type of message is shown.
  265. 2: Windowed chat: like tabbed chat, but the text is displayed in a separate window.
  266. #windowed_chat = 1
  267.  
  268. Set write_ini_on_exit to 0 if you do NOT want changes in your settings to be saved when you close
  269. the game. You probably do not want to do this, so if you don't know what you're doing, leave it
  270. at 1.
  271. #write_ini_on_exit = 1
  272.  
  273. If ati_click_workaround is set, the game will try to work around a bug in (older?) Ati video
  274. drivers, that read out the depth buffers incorrectly. Try this option _only_ when you are not
  275. able to walk and you have an Ati video card.
  276. #ati_click_workaround = 0
  277.  
  278. Setting use_alpha_border to 1 will make EL show a nice shadow border around the in-game windows.
  279. #use_alpha_border = 1
  280.  
  281. Setting use_floating_messages to 1 will show a message floating above your characters head when
  282. you gain experience.
  283. #use_floating_messages = 1
  284.  
  285. If local_chat_separate is set and windowed_chat is set to using tabs or the chat window, then
  286. all local chat messages will be displayed in a separate tab, otherwise they will be shown in all
  287. tabs.
  288. #local_chat_separate = 0
  289.  
  290. Same as local_chat_separate, but for guild messages.
  291. #guild_chat_separate = 1
  292.  
  293. Same as local_chat_separate, but for server and other informational messages.
  294. #server_chat_separate= 1
  295.  
  296. This option is useful for EL moderators only. Same as local_chat_separate, but for moderator
  297. messages.
  298. #mod_chat_separate= 1
  299.  
  300. If highlight_tab_on_nick is set and tabbed or windowed chat is used, tabs in which your name is
  301. mentioned will be highlighted.
  302. #highlight_tab_on_nick = 1
  303.  
  304. If isometric is set to 1, the in game view will be isometric, i.e. no perspective is used. Use it
  305. when your frame rate is low, it can speed up the rendering process significantly.
  306. #isometric= 0
  307.  
  308. The perspective correction, only used when isometric is 0. The farther this value deviates from 1,
  309. the higher the perspective distortion is.
  310. #perspective= 0.4
  311.  
  312. The distance to the near clipping plane from the camera. Objects that are closer to the
  313. camera than this distance will not be displayed.
  314. #near_plane= 0.1
  315.  
  316. If buddy_log_notice is set, a message will be printed when someone on your buddy list logs on or off.
  317. #buddy_log_notice = 1
  318.  
  319. Gamma correction, the higher this value, the higher the contrast between light and dark colors.
  320. You can try to use this option when the game looks very dark on your screen, but note that it
  321. affects the entire display, not just the game window.
  322. #gamma= 1
  323.  
  324. This parameter determines the quality of the shadow maps. You should as minimum set it to 512, and it
  325. will look better with 1024, 2048 or 4096, but also consume a lot more graphics memory/resources.
  326. Valid options for shadow_map_size are
  327.  
  328. 0: 256
  329. 1: 512
  330. 2: 768
  331. 3: 1024
  332. 4: 1280
  333. 5: 1536
  334. 6: 1792
  335. 7: 2048
  336. 8: 3072
  337. 9: 4096
  338.  
  339. #shadow_map_size= 3
  340.  
  341. If use_compiled_vertex_array is set, EL will draw 3D objects using compiled vertex arrays. Some
  342. systems don't support this option well, so you can try turning it off when you notice that 3D
  343. objects aren't displayed correctly.
  344. #use_compiled_vertex_array= 0
  345.  
  346. If autoupdate is set, updates can be automatically downloaded from the server and installed. Note
  347. that this requires the game to have write permissions in your configuration directory, or the
  348. game data directory. If you are able to play the game with default settings, that is most likely
  349. not a problem, since the log files are created in either of those directories as well.
  350. all log fil
  351. #autoupdate = 1
  352.  
  353. When serverpopup is set, special server messages with channel id 255 are displayed in a separate
  354. popup window.
  355. #serverpopup = 1
  356.  
  357. Set this option to 1 if you find that clicking the mouse on the ground does not move your
  358. character. Instead of reading the depth buffer, the game will then trace the line of view to find
  359. the ground tile to move to.
  360. #use_old_clicker = 0
  361.  
  362. Set use_frame_buffer to 1 to enable frame buffer support for shadow mapping and reflections.
  363. #use_frame_buffer= 1
  364.  
  365. If windows_on_top is set, certain windows can be shown on top of the console and map interfaces.
  366. #windows_on_top= 1
  367.  
  368. #video_info_sent= 1
  369.  
  370. #use_eye_candy= 1
  371.  
  372. #enable_blood= 1
  373.  
  374. #use_lamp_halo= 0
  375.  
  376. #transparency_resolution_fix= 0
  377.  
  378. #max_ec_framerate= 45
  379.  
  380. #min_ec_framerate= 15
  381.  
  382. #light_columns_threshold= 5
  383.  
  384. #use_fancy_smoke= 1
  385.  
  386. #max_idle_cycles_per_second= 40
  387.  
  388. #note_text_size= 1
  389.  
  390. #crowd_gain= 1
  391.  
  392. #enviro_gain= 0.3
  393.  
  394. #actor_gain= 1
  395.  
  396. #walking_gain= 0.4
  397.  
  398. #gamewin_gain= 1
  399.  
  400. #client_gain= 1
  401.  
  402. #dim_sounds_on_rain= 0
  403.  
  404. #view_analog_clock= 1
  405.  
  406. #use_alpha_banner= 0
  407.  
  408. #opaque_window_backgrounds= 0
  409.  
  410. #customupdate= 1
  411.  
  412. #special_effects= 1
  413.  
  414. #time_warning_hour= -1
  415.  
  416. #time_warning_sun= -1
  417.  
  418. #time_warning_day= -1
  419.  
  420. #continent_map_boundaries= 1
  421.  
  422. #anisotropic_filter= 2
  423.  
  424. #warn_gain= 1
  425.  
  426. #render_skeleton= 0
  427.  
  428. #render_mesh= 1
  429.  
  430. #use_cursor_on_animal= 1
  431.  
  432. #use_display_actors= 1
  433.  
  434. #use_actor_bbox_check= 1
  435.  
  436. #use_render_mesh_shader= 1
  437.  
  438. #use_set_transformation_buffers= 1
  439.  
  440. #use_build_actor_bounding_box= 1
  441.  
  442. #use_model_attach_and_detach_mesh= 1
  443.  
  444. #use_render_attached_meshs= 1
  445. #always_pathfinding= 1
  446. #water_shader_quality= 2
  447. #use_keypress_dialog_boxes= 1
  448.  
  449. #use_full_dialogue_window= 1
  450. #use_ext_gpu_program_parameters= 0
  451. #use_new_selection= 1
  452. #use_harvesting_eye_candy= 1
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.  
  467.  
  468.  
  469.  
  470.  
  471.  
  472.  
  473.  
  474.  
  475.  
  476.  
  477.  
  478.  
  479.  
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492.  
  493.  
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501.  
  502.  
  503.  
  504.  
  505.  
  506.  
  507.  
  508.  
  509.  
  510.  
  511.  
  512.  
  513.  
  514.  
  515.  
  516.  
  517.  
  518.  
  519.  
  520.  
  521.  
  522.  
  523.  
  524.  
  525.  
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532.  
  533.  
  534.  
  535.  
  536.  
  537.  
  538.  
  539.  
  540.  
  541.  
  542.  
  543.  
  544.  
  545.  
  546.  
  547.  
  548.  
  549.  
  550.  
  551.  
  552.  
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562.  
  563.  
  564.  
  565.  
  566.  
  567.  
  568.  
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  
  590.  
  591.  
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599.  
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640. #skybox_show_sky= 1
  641.  
  642. #skybox_show_clouds= 1
  643.  
  644. #skybox_show_stars= 1
  645.  
  646. #skybox_show_moons= 1
  647.  
  648. #skybox_show_sun= 1
  649.  
  650. #follow_cam= 0
  651.  
  652. #fol_cam_behind= 1
  653.  
  654. #extended_cam= 1
  655.  
  656. #ext_cam_auto_zoom= 0
  657.  
  658. #follow_strength= 0.1
  659.  
  660. #const_speed= 1
  661.  
  662. #lin_speed= 10
  663.  
  664. #quad_speed= 10
  665.  
  666. #far_plane= 131
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674.  
  675.  
  676.  
  677.  
  678.  
  679.  
  680.  
  681.  
  682.  
  683.  
  684.  
  685.  
  686.  
  687.  
  688.  
  689.  
  690. #min_tilt_angle= 30
  691.  
  692. #max_tilt_angle= 90
  693.  
  694.  
  695.  
  696.  
  697.  
  698.  
  699.  
  700.  
  701.  
  702.  
  703. #far_reflection_plane= 100
  704.  
  705. #normal_camera_deceleration= 1
  706.  
  707.  
  708. #skybox_update_every_frame= 0
  709.  
  710. #seconds_between_shadows_updates= 10
  711.  
  712. #use_draw_range_elements= 1
  713.  
  714. #show_game_seconds= 0
  715.  
  716.  
  717.  
  718. #skybox_update_delay= 10
  719.  
  720. #rotate_minimap= 1
  721.  
  722. #disable_sound= 0
  723.  
  724. #sound_device= ""
  725.  
  726. #afk_snd_warning= 0
  727.  
  728. #minimap_scale= 0.7
  729.  
  730. #use_animation_program= 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement