1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
# File: user.prf
#
# This file defines "override" actions of various kinds
#
# This file includes, if appropriate, various "sub-files"
#
# See "lib/help/command.txt" and "src/files.c" for more information.
#
## Option -- Force the use of original commands
#X:rogue_like_commands
## Option -- Force the use of roguelike commands
#Y:rogue_like_commands
##### System Specific Subfiles #####
?:[IOR [EQU $SYS xaw] [EQU $SYS x11]]
%:user-x11.prf
?:[EQU $SYS gcu]
%:user-gcu.prf
?:[EQU $SYS ami]
%:user-ami.prf
?:[EQU $SYS mac]
%:user-mac.prf
?:[IOR [EQU $SYS win] [EQU $SYS dos] [EQU $SYS ibm]]
%:user-win.prf
?:[EQU $SYS emx]
%:user-emx.prf
?:[EQU $SYS acn]
%:user-acn.prf
##### Race Specific Subfiles #####
?:[EQU $CLASS Human]
%:Human.prf
?:[EQU $CLASS Half-Elf]
%:Half-Elf.prf
?:[EQU $CLASS Elf]
%:Elf.prf
?:[EQU $CLASS Hobbit]
%:Hobbit.prf
?:[EQU $CLASS Gnome]
%:Gnome.prf
?:[EQU $CLASS Dwarf]
%:Dwarf.prf
?:[EQU $CLASS Half-Orc]
%:Half-Orc.prf
# "Half-Troll.prf" is too long for stupid 8.3 filenames,
# so try to load the shortened filename too.
?:[EQU $CLASS Half-Troll]
%:Half-Troll.prf
%:H-Troll.prf
?:[EQU $CLASS Dunadan]
%:Dunadan.prf
?:[EQU $CLASS High-Elf]
%:High-Elf.prf
##### Class Specific Subfiles #####
?:[EQU $CLASS Warrior]
%:Warrior.prf
?:[EQU $CLASS Mage]
%:Mage.prf
?:[EQU $CLASS Priest]
%:Priest.prf
?:[EQU $CLASS Rogue]
%:Rogue.prf
?:[EQU $CLASS Ranger]
%:Ranger.prf
?:[EQU $CLASS Paladin]
%:Paladin.prf
?:1
|