ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/exp_table
(Generate patch)

Comparing deliantra/server/lib/exp_table (file contents):
Revision 1.1.1.1 by root, Fri Feb 3 07:14:11 2006 UTC vs.
Revision 1.4 by root, Wed Apr 28 20:51:58 2010 UTC

1# This table contains the experience values for the different levels. 1# experience table. must start with max_level n (n < 128)
2# Note the maximum theoretical value for any level is 2# followed by exactly n values, strating with 0.
3# 9223372036854775808 (2 ^ 63). However, you should put in a cap
4# a bit below that - while the code tries to be clever and not
5# do overflows, I'm not 100% confident that it would work if
6# max was set to that value.
7#
8# Note that this table starts at level 1
9#
10# The format of this table isn't very strict - the
11# code just tries to extract the numbers, so it doesn't
12# care about multiple commas, etc. Note however that
13# the comment character (#) is only valid at the
14# start of the line.
15#
16# Note that I have the different tables prefixed with #A, #B,
17# #C, etc, to make it easier to substitute the values and
18# get the desired table. Note you should make sure when you
19# do the sub, you also get rid of the space after the letter
20# (Eg, s/#A //)
21#
22# Added 2003-03-01 - the maximum level is now set in this file -
23# thus, its just a simple matter of changing the value to whatever
24# and adding on to the table to allow for whatever maximum level is
25# desired. I've made the maxlevel for all of these level 115, and
26# put in a double for each level after 110 to get to that point -
27# this should allow all players to max all skills if they so desire.
28# Note that max_level must be set before the exp table is defined,
29# so that the program knows how much space to allocate.
30#
31# Related to this - one of the following tables must be uncommented
32# for the program to work properly. I uncommented what was the
33# default table.
34 3
35max_level 115 4max_level 115
36 5
37# Old (classic) exp table: 60
38 71000
39#A 0,1000,2000,4000, 8000, 83000
40#A 16000,32000,64000,125000,250000, 96000
41#A # 10 1015000
42#A 500000,900000,1400000,2000000,2600000, 1134000
43#A 3300000,4100000,4900000,5700000,6600000, 1263000
44#A # 20 1398500
45#A 7500000,8400000,9300000,10300000,11300000, 14145000
46#A 12300000,13300000,14400000,15500000,16600000, 15210000
47#A # 30 16290000
48#A 17700000,18800000,19900000,21100000,22300000, 17400000
49#A 23500000,24700000,25900000,27100000,28300000, 18530000
50#A # 40 19695000
51#A 29500000,30800000,32100000,33400000,34700000, 20895000
52#A 36000000,37300000,38600000,39900000,41200000, 211100000
53#A # 50 221400000
54#A 42600000,44000000,45400000,46800000,48200000, 231750000
55#A 49600000,51000000,52400000,53800000,55200000, 242150000
56#A # 60 252650000
57#A 56600000,58000000,59400000,60800000,62200000, 263200000
58#A 63700000,65200000,66700000,68200000,69700000, 273850000
59#A # 70 284650000
60#A 71200000,72700000,74200000,75700000,77200000, 295500000
61#A 78700000,80200000,81700000,83200000,84700000, 306500000
62#A # 80 317650000
63#A 86200000,87700000,89300000,90900000,92500000, 328900000
64#A 94100000,95700000,97300000,98900000,100500000, 3310000000
65#A # 90
66#A 102100000,103700000,105300000,106900000,108500000,
67#A 110100000,111700000,113300000,114900000,116500000,
68#A # 100
69#A 118100000,119700000,121300000,122900000,124500000,
70#A 126100000,127700000,129300000,130900000,785400000
71#A # 110
72#A 1570800000, 3141600000, 6283200000,
73#A 12566400000, 25132800000
74#A #115 (end of table )
75
76# this is the old default table (was
770,2000,4000, 8000, 16000,32000,64000,125000,250000, 500000,
78# 10
79900000,1400000,2000000,2600000,
803300000,4100000,4900000,5700000,6600000, 7500000,
81# 20
828400000,9300000,10300000,11300000,
8312300000,13300000,14400000,15500000,16600000, 17700000,
84# 30
8518800000,19900000,21100000,22300000,
8623500000,24700000,25900000,27100000,28300000, 29500000,
87# 40
8830800000,32100000,33400000,34700000,
8936000000,37300000,38600000,39900000,41200000, 42600000,
90# 50
9144000000,45400000,46800000,48200000,
9249600000,51000000,52400000,53800000,55200000,56600000,
93# 60
9458000000,59400000,60800000,62200000,
9563700000,65200000,66700000,68200000,69700000,
9671200000, 3412000000
97# 70
9872700000,74200000,75700000,77200000,
9978700000,80200000,81700000,83200000,84700000,
10086200000,
101# 80
10287700000,89300000,90900000,92500000,
10394100000,95700000,97300000,98900000,100500000, 102100000,
104# 90
105103700000,105300000,106900000,108500000,
106110100000,111700000,113300000,114900000,116500000, 118100000,
107# 100
108119700000,121300000,122900000,124500000,
109126100000,127700000,129300000,130900000,785400000,
1101570800000 3513500000
111# 110 3615500000
1123141600000, 6283200000, 12566400000, 3718000000
11325132800000, 50265600000 3820500000
114# 115 and end of table 3923500000
115 4026500000
116#C 4130000000
117#C # New hard exp table. 4234000000
118#C 0,2000,4000, 8000, 16000,32000,64000,125000,250000, 500000, 4338500000
119#C # 10 4443000000
120#C 900000,1400000,2000000,2600000, 4548500000
121#C 3300000,4100000,4900000,5700000,6600000, 7500000, 4654000000
122#C # 20 4760500000
123#C 8500000, 9500000, 10600000, 11800000, 13000000 4867500000
124#C 14300000, 15600000, 17000000, 18500000, 20000000 4975000000
125#C # 30 5083000000
126#C 21700000, 23400000, 25200000, 27000000, 29000000 5192000000
127#C 31100000, 33300000, 35600000, 38000000, 40500000 52100000000
128#C # 40 53110000000
129#C 43200000, 46000000, 48900000, 52000000, 55200000 54120000000
130#C 58600000, 62100000, 65900000, 69800000, 73900000 55135000000
131#C # 50 56145000000
132#C 78200000, 82700000, 87500000, 92500000, 97800000 57160000000
133#C 103300000, 109100000, 115200000, 121500000, 128200000 58175000000
134#C # 60 59195000000
135#C 135300000, 142700000, 150400000, 158600000, 167100000 60210000000
136#C 176100000, 185600000, 195500000, 205900000, 216800000 61230000000
137#C # 70 62250000000
138#C 228300000, 240300000, 252900000, 266200000, 280200000 63275000000
139#C 294800000, 310200000, 326300000, 343200000, 361000000 64300000000
140#C # 80 65325000000
141#C 379700000, 399300000, 419900000, 441500000, 464200000 66350000000
142#C 488100000, 513100000, 539400000, 567000000, 596000000 67380000000
143#C # 90 68415000000
144#C 626400000, 658300000, 691900000, 727100000, 764100000 69445000000
145#C 802900000, 843700000, 886500000, 931500000, 978700000 70485000000
146#C # 100 71520000000
147#C 1028200000, 1080300000, 1134900000, 1192300000, 1252500000 72565000000
148#C 1315800000, 1382200000, 1451900000, 1525100000, 2100000000 73605000000
149#C # 110 74655000000
150#C 4200000000, 8400000000, 16800000000, 75705000000
151#C 33600000000, 67200000000 76755000000
77810000000
78870000000
79935000000
801000000000
811050000000
821150000000
831200000000
841300000000
851400000000
861450000000
871550000000
881700000000
891800000000
901900000000
912050000000
922150000000
932300000000
942450000000
952600000000
962750000000
972900000000
983100000000
993300000000
1003500000000
1013750000000
1024050000000
1034350000000
1044750000000
1055250000000
1065850000000
1076650000000
1087650000000
1099000000000
11010500000000
11113500000000
11217000000000
11323000000000
11432000000000
11547000000000
11673000000000
117120000000000
118215000000000
119430000000000
120935000000000

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines