User Tools

Site Tools


server:running_the_server:etc_crossfire_configuration_files

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
server:running_the_server:etc_crossfire_configuration_files [2018/03/03 09:52] – Complete rework of the forbid file description and shutdown file added karlserver:running_the_server:etc_crossfire_configuration_files [2025/04/18 13:08] (current) – external edit 127.0.0.1
Line 6: Line 6:
 List of client IPs and user names to ban. Probably only useful if the user owns and deploys a dedicated IP. List of client IPs and user names to ban. Probably only useful if the user owns and deploys a dedicated IP.
  
 +Read also about the DM command [[:dm_commands#banish]] .
 ===== dm_file ===== ===== dm_file =====
-List of NAMES : PASSWORDS : HOSTS for Dungeon Masters. Each field accepts the wildcard (*) . *:*:* should allow everyone from everywhere to gain [[server:hosting#DM]] status using any password. +List of NAMES : PASSWORDS : HOSTS for Dungeon Masters. \\ 
 +Each field accepts the wildcard (*) as __single__ char\\  
 +''*:*:*'' should allow everyone from everywhere to gain [[server:hosting#DM]] status using any password. \\ 
 +The HOST field seems to be a full IPv4 address like ''127.0.0.1'' 
  
 +Entries that do __not__ work :
 +  * ''*:*:127*'' to allow anyone from IPv4 address 127.* ( localhost )
 +  * ''*:*:127.*''
 +  * ''*:*:127.0.0.*''
 +  * ''*:*:127.*.*.*''
 +  * ''*:*:local*''
 +  * ''*:*:localhost''
 +
 +  * ''*:*A:*'' to allow anyone from anywhere with a password that matches 'A' at the end 
 +  * ''*:A*:*'' to allow anyone from anywhere with a password that matches 'A' at the start
 +  * ''*:A*A:*'' to allow anyone from anywhere with a password that matches 'A' at the start and at the end
 +
 +  * ''A*:*:*'' to allow every user whose player name starts with an 'A' with any passwort from everywhere
 +  * ''*A:*:*'' to allow every user whose player name ends with an 'A' with any passwort from everywhere
 +  * ''A*A:*:*'' to allow every user whose player name ends with an 'A' with any passwort from everywhere
 +
 +:!: Not sure, when it comes to IPv6 addresses, which are not separated by a dot but by a colon ... 
 ===== exp_table ===== ===== exp_table =====
 Large comma separated list of numbers to reach levels. The default ends at level 115. Just add some more numbers, and there will be higher levels :?: or delete some zeros at the end of thy numbers, and become a hero very fast. \\ Large comma separated list of numbers to reach levels. The default ends at level 115. Just add some more numbers, and there will be higher levels :?: or delete some zeros at the end of thy numbers, and become a hero very fast. \\
Line 99: Line 120:
 Large file with around 40 possible entries; now has it it's own page here on the wiki : [[settings]] . Large file with around 40 possible entries; now has it it's own page here on the wiki : [[settings]] .
  
-Known setting variable names, listed in alphabetical order :  +Known setting variable names, listed in alphabetical order 
-  - balanced_stat_loss true +//True// and //False// entries are case insensitive read by [[https://linux.die.net/man/3/strcasecmp|strcasecmp]] \\ and may be replaced by their counterparts //On// and //Off// . \\ 
-  - casting_time false +Function that processes those : //load_settings// in //server/server/init.c// . \\ 
-  - create_home_portals      TRUE +''if (!strcasecmp(cp,"off") || !strcasecmp(cp,"false"))'' \\ 
-  - death_penalty_levels 1 +''if (!strcasecmp(cp,"on") || !strcasecmp(cp,"true"))''  \\ 
-  - death_penalty_percentage 10 +  - [[settings#balanced_stat_loss]] TRUE | FALSE 
-  - dm_mail monster@monstermail.monster +  - [[settings#casting_time]] TRUE | FALSE 
-  - dynamiclevel 5 +  - [[settings#create_home_portals]] TRUE | FALSE 
-  - explore_mode false+  - [[settings#death_penalty_levels]] Integer 0 - 255 
 +  - [[settings#death_penalty_percentage]] Integer 0 - 100 
 +  - [[settings#dm_mail]] monster@monstermail.master 
 +  - [[settings#dynamiclevel]] Integer 0 | >= 1 ( old : 0 | lesser equal , see [[dev:weather]] ) 
 +  - [[settings#explore_mode]] TRUE | FALSE
   - [[settings#fastclock]] Zero (0) or positive integer (1)    - [[settings#fastclock]] Zero (0) or positive integer (1) 
-  - item_power_factor 1.+  - [[settings#item_power_factor]] FLOAT >= 
-  - log_timestamp TRUE +  - [[settings#log_timestamp]] TRUE | FALSE 
-  - log_timestamp_format %y-%m-%d %H:%M:%S +  - [[settings#log_timestamp_format]] Default: %y/%m/%d %H:%M:%S Year/Month/Day Hour:Minute:Second 
-  - metaserver_comment Test server port 11100 +  - [[settings#metaserver_comment]] Your comment, ex //Test server port 11111// 
-  - metaserver_host 1.2.3.4 +  - [[settings#metaserver_host]] Your.Hostname.Where or your IP  
-  - metaserver_notification on +  - [[settings#metaserver_notification]] On | Off 
-  - metaserver_port 13326 +  - [[settings#metaserver_port]] Integer  1 - 65535, default 13326 
-  - metaserver_server crossfire.real-time.com +  - [[settings#metaserver_server]] crossfire.real-time.com 
-  - motd motd +  - [[settings#motd]] FILENAME, relative path, of the [[#MOTD|Motto-of-the-Day]] file 
-  - no_player_stealing       TRUE +  - [[settings#no_player_stealing]]       TRUE | FALSE 
-  - permanent_experience_percentage 96 +  - [[settings#permanent_experience_percentage]] Integer 0 - 100 
-  - pk_luck_penalty 10 +  - [[settings#pk_luck_penalty]] sint16 -100 - 100 
-  - port 11100 +  - [[settings#port]] Your Port Number, Integer 1 - 65535, since incl. v1.11.0, until at least v1.12 1 - 32765, with a check if user root and below 1024 
-  - real_wiz true +  - [[settings#real_wiz]] TRUE | FALSE 
-  - recycle_tmp_maps false +  - [[settings#recycle_tmp_maps]] TRUE | FALSE 
-  - resurrection false +  - [[settings#resurrection]] TRUE | FALSE 
-  - search_items true +  - [[settings#search_items]] TRUE | FALSE 
-  - set_friendly_fire 5 +  - [[settings# set_friendly_fire]] Integer 1 - 100 
-  - set_title true +  - [[settings#set_title]] True | FALSE 
-  - spell_encumbrance true +  - [[settings#spell_encumbrance]] TRUE | FALSE 
-  - spell_failure_effects true +  - [[settings#spell_failure_effects]] TRUE | FALSE 
-  - spellpoint_level_depend true +  - [[settings#spellpoint_level_depend]] TRUE | FALSE 
-  - stat_loss_on_death false +  - [[settings#stat_loss_on_death]] TRUE | FALSE 
-  - who_format %N %T%t%n Level %l Flags %h%d%a%b%n <%M> +  - [[settings#who_format]] String to print for the player command [[:player_commands#who]] , ex. %N %T%t%n Level %l Flags %h%d%a%b%n <%M> 
-  - who_wiz_format %N %T%t%h%d%b%nLevel %l <%m>(@%i)(%c) +  - [[settings#who_wiz_format]] String to print for the [[:dm_commands|DM]] command [[:player_commands#who]] %N %T%t%h%d%b%nLevel %l <%m>(@%i)(%c) 
-  - worldmapstartx 100 +  - [[settings# worldmapstartx]] Integer >= 0 
-  - worldmapstarty 100 +  - [[settings#worldmapstarty]] Integer >= 0 
-  - worldmaptilesizex 50 +  - [[settings#worldmaptilesizex]] Integer >= 1 
-  - worldmaptilesizey 50 +  - [[settings# worldmaptilesizey]] Integer >= 1 
-  - worldmaptilesx 30 +  - [[settings#worldmaptilesx]] Integer >= 1 
-  - worldmaptilesy 30+  - [[settings#worldmaptilesy]] Integer >= 1
  
server/running_the_server/etc_crossfire_configuration_files.1520092360.txt.gz · Last modified: (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki