diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-02-21 11:06:09 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-02-21 11:06:09 +0100 |
| commit | 5e1a86d0c9a3f7c54cc1d4f9d3dfa16c28c174a6 (patch) | |
| tree | ecbeb37c7795262f0681ab76e3dee4fbb4635236 | |
| parent | 2ba82da84b1b53f3f907ffe1869276f38345bf79 (diff) | |
| download | mitjafelicijan.com-5e1a86d0c9a3f7c54cc1d4f9d3dfa16c28c174a6.tar.gz | |
Added DCSS online post sane defaults
| -rw-r--r-- | _posts/2024-02-21-dcss-online-rc-defaults.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/_posts/2024-02-21-dcss-online-rc-defaults.md b/_posts/2024-02-21-dcss-online-rc-defaults.md new file mode 100644 index 0000000..cf12109 --- /dev/null +++ b/_posts/2024-02-21-dcss-online-rc-defaults.md | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | --- | ||
| 2 | title: "Sane default for Dungeon Crawl Stone Soup Online edition" | ||
| 3 | permalink: /dcss-online-rc-defaults.html | ||
| 4 | date: 2024-02-21T06:35:11+02:00 | ||
| 5 | layout: post | ||
| 6 | type: note | ||
| 7 | draft: false | ||
| 8 | tags: [dcss] | ||
| 9 | --- | ||
| 10 | |||
| 11 | I mostly play Dungeon Crawl Stone Soup online on Ohio, USA: cbro.berotato.org server and | ||
| 12 | when you start playing you can select the version you want to play. Each instance also | ||
| 13 | has `rc` file that can customize the way the game behave. | ||
| 14 | |||
| 15 | This is my sane defaults config. It zooms in the game without needing to zoom in the | ||
| 16 | browser and it also adds a bit of delays in exploring and it stops at fight. | ||
| 17 | |||
| 18 | ```ini | ||
| 19 | autofight_stop = 80 | ||
| 20 | explore_auto_rest = true | ||
| 21 | explore_delay = 20 | ||
| 22 | |||
| 23 | tile_cell_pixels = 48 | ||
| 24 | tile_font_crt_size = 24 | ||
| 25 | tile_font_stat_size = 24 | ||
| 26 | tile_font_msg_size = 24 | ||
| 27 | tile_font_tip_size = 24 | ||
| 28 | tile_font_lbl_size = 24 | ||
| 29 | tile_map_pixels = 0 | ||
| 30 | tile_filter_scaling = false | ||
| 31 | ``` | ||
| 32 | |||
| 33 | All the possible options are documented in the [Dungeon Crawl Stone Soup Options | ||
| 34 | Guide](https://github.com/crawl/crawl/blob/master/crawl-ref/docs/options_guide.txt) | ||
| 35 | file. | ||
