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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
##############################################################################
# bnetd_default_user - Default values for user accounts #
#----------------------------------------------------------------------------#
# #
# When a value is not stored in a player's account file, the value is taken #
# from this file instead. #
# #
##############################################################################
##############################################################################
# Game record section #
#----------------------------------------------------------------------------#
# Brood War stats
"Record\\SEXP\\0\\last game result"="NONE"
"Record\\SEXP\\0\\last game"="0"
"Record\\SEXP\\0\\disconnects"="0"
"Record\\SEXP\\0\\losses"="0"
"Record\\SEXP\\0\\wins"="0"
"Record\\SEXP\\1\\last game result"="NONE"
"Record\\SEXP\\1\\last game"="0"
"Record\\SEXP\\1\\high rank"="0"
"Record\\SEXP\\1\\rank"="0"
"Record\\SEXP\\1\\high rating"="0"
"Record\\SEXP\\1\\rating"="0"
"Record\\SEXP\\1\\disconnects"="0"
"Record\\SEXP\\1\\losses"="0"
"Record\\SEXP\\1\\wins"="0"
# Starcraft stats
"Record\\Star\\0\\last game result"="NONE"
"Record\\Star\\0\\last game"="0"
"Record\\Star\\0\\disconnects"="0"
"Record\\Star\\0\\losses"="0"
"Record\\Star\\0\\wins"="0"
"Record\\Star\\1\\last game result"="NONE"
"Record\\Star\\1\\last game"="0"
"Record\\Star\\1\\high rank"="0"
"Record\\Star\\1\\rank"="0"
"Record\\Star\\1\\high rating"="0"
"Record\\Star\\1\\rating"="0"
"Record\\Star\\1\\disconnects"="0"
"Record\\Star\\1\\losses"="0"
"Record\\Star\\1\\wins"="0"
# Starcraft Shareware stats
"Record\\SSHR\\0\\last game result"="NONE"
"Record\\SSHR\\0\\last game"="0"
"Record\\SSHR\\0\\disconnects"="0"
"Record\\SSHR\\0\\losses"="0"
"Record\\SSHR\\0\\wins"="0"
# Diablo Retail stats
"BNET\\Record\\DRTL\\0\\level"="0"
"BNET\\Record\\DRTL\\0\\class"="99"
"BNET\\Record\\DRTL\\0\\diablo kills"="0"
"BNET\\Record\\DRTL\\0\\strength"="0"
"BNET\\Record\\DRTL\\0\\magic"="0"
"BNET\\Record\\DRTL\\0\\dexterity"="0"
"BNET\\Record\\DRTL\\0\\vitality"="0"
"BNET\\Record\\DRTL\\0\\gold"="0"
# WarCraft II BNE stats
"Record\\W2BN\\0\\last game result"="NONE"
"Record\\W2BN\\0\\last game"="0"
"Record\\W2BN\\0\\disconnects"="0"
"Record\\W2BN\\0\\losses"="0"
"Record\\W2BN\\0\\wins"="0"
"Record\\W2BN\\1\\last game result"="NONE"
"Record\\W2BN\\1\\last game"="0"
"Record\\W2BN\\1\\high rank"="0"
"Record\\W2BN\\1\\rank"="0"
"Record\\W2BN\\1\\high rating"="0"
"Record\\W2BN\\1\\rating"="0"
"Record\\W2BN\\1\\disconnects"="0"
"Record\\W2BN\\1\\losses"="0"
"Record\\W2BN\\1\\wins"="0"
# FIXME: what is 2 for?
"Record\\W2BN\\3\\last game result"="NONE"
"Record\\W2BN\\3\\last game"="0"
"Record\\W2BN\\3\\high rank"="0"
"Record\\W2BN\\3\\rank"="0"
"Record\\W2BN\\3\\high rating"="0"
"Record\\W2BN\\3\\rating"="0"
"Record\\W2BN\\3\\disconnects"="0"
"Record\\W2BN\\3\\losses"="0"
"Record\\W2BN\\3\\wins"="0"
# #
##############################################################################
##############################################################################
# Default profile info #
#----------------------------------------------------------------------------#
# No good defaults for these :)
"profile\\description"=""
"profile\\location"=""
"profile\\age"=""
"profile\\sex"=""
# These 3 are ignored in the template, but they make it easier
# to use this file by hand to create a new account...
"BNET\\acct\\username"="bnetd_default_user"
"BNET\\acct\\userid"="0"
"BNET\\acct\\passhash1"="67452301efcdab8998badcfe10325476c3d2e1f0"
# This can be used to give the user a different chat icon.
# for example, this will make the icon be "bnetd"
#"BNET\\flags\\initial"="0x00000008"
#"BNET\\fakeclienttag"="SEXP"
# #
##############################################################################
##############################################################################
# Authorization flags (comments show defaults) #
#----------------------------------------------------------------------------#
# "BNET\\auth\\admin"="false"
# "BNET\\auth\\announce"="false"
# "BNET\\auth\\botlogin"="false"
# "BNET\\auth\\operator"="false"
# "BNET\\auth\\normallogin"="true"
# "BNET\\auth\\changepass"="true"
# "BNET\\auth\\changeprofile"="true"
# "BNET\\auth\\createnormalgame"="true"
# "BNET\\auth\\joinnormalgame"="true"
# "BNET\\auth\\createladdergame"="true"
# "BNET\\auth\\joinladdergame"="true"
# "BNET\\auth\\lock"="false"
# Specific channels can be specified to override the
# channel defaults and the plain operator setting:
# (use the long channel name)
# "BNET\\auth\\operator\\example channel"="false"
"BNET\\auth\\botlogin"="true"
"BNET\\auth\\operator"="true"
# #
##############################################################################
|