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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
# File: message.prf
#
# This file defines the default message colors.
#
# This file includes, if appropriate, various "sub-files".
#
# See "lib/help/command.txt" and "src/files.c" for more information.
#
# Format:
# M:<message-type>:<color>
#
# Possible colors:
# d = Dark
# w = White
# s = Slate
# o = Orange
# r = Red
# g = Green
# b = Blue
# u = Umber
# D = Light Dark
# W = Light Slate
# v = Violet
# y = Yellow
# R = Light Red
# G = Light Green
# B = Light Blue
# U = Light Umber
# MSG_GENERIC
M:0:w
# MSG_HIT
M:1:w
# MSG_MISS
M:2:w
# MSG_FLEE
M:3:w
# MSG_DROP
M:4:w
# MSG_KILL
M:5:w
# MSG_LEVEL
M:6:w
# MSG_DEATH
M:7:w
# MSG_STUDY
M:8:w
# MSG_TELEPORT
M:9:w
# MSG_SHOOT
M:10:w
# MSG_QUAFF
M:11:w
# MSG_ZAP
M:12:w
# MSG_WALK
M:13:w
# MSG_TPOTHER
M:14:w
# MSG_HITWALL
M:15:w
# MSG_EAT
M:16:w
# MSG_STORE1
M:17:w
# MSG_STORE2
M:18:w
# MSG_STORE3
M:19:w
# MSG_STORE4
M:20:w
# MSG_DIG
M:21:w
# MSG_OPENDOOR
M:22:w
# MSG_SHUTDOOR
M:23:w
# MSG_TPLEVEL
M:24:w
# MSG_BELL
M:25:o
# MSG_NOTHING_TO_OPEN
M:26:w
# MSG_LOCKPICK_FAIL
M:27:w
# MSG_STAIRS
M:28:w
?:1
|