From 041e758c8fef26d0a19b2f82221edaa2d0af1248 Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Sun, 1 Jul 2018 03:57:02 -0500 Subject: [PATCH] Created Experience by Level (markdown) --- Experience-by-Level.md | 265 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 265 insertions(+) create mode 100644 Experience-by-Level.md diff --git a/Experience-by-Level.md b/Experience-by-Level.md new file mode 100644 index 0000000..21daeb6 --- /dev/null +++ b/Experience-by-Level.md @@ -0,0 +1,265 @@ +The multiplier is hard-coded into exp.cpp and set at 3.1 for levels 61+. + +The formula for the below table is: + +Experience = (Level - 1)^3 * (Multiplier * 1000) + +If you look to use `quest::giveexp(experience)` in any of your quests, this will come in handy + +|Level|Multiplier|Experience| +|--- |--- |--- | +|1|1|0| +|2|1|1000| +|3|1|8000| +|4|1|27000| +|5|1|64000| +|6|1|125000| +|7|1|216000| +|8|1|343000| +|9|1|512000| +|10|1|729000| +|11|1|1000000| +|12|1|1331000| +|13|1|1728000| +|14|1|2197000| +|15|1|2744000| +|16|1|3375000| +|17|1|4096000| +|18|1|4913000| +|19|1|5832000| +|20|1|6859000| +|21|1|8000000| +|22|1|9261000| +|23|1|10648000| +|24|1|12167000| +|25|1|13824000| +|26|1|15625000| +|27|1|17576000| +|28|1|19683000| +|29|1|21952000| +|30|1|24389000| +|31|1.1|29700000| +|32|1.1|32770100| +|33|1.1|36044800| +|34|1.1|39530700| +|35|1.1|43234400| +|36|1.2|51450000| +|37|1.2|55987200| +|38|1.2|60783600| +|39|1.2|65846400| +|40|1.2|71182800| +|41|1.3|83200000| +|42|1.3|89597300| +|43|1.3|96314400| +|44|1.3|103000000| +|45|1.3|111000000| +|46|1.4|128000000| +|47|1.4|136000000| +|48|1.4|145000000| +|49|1.4|155000000| +|50|1.4|165000000| +|51|1.4|175000000| +|52|1.5|199000000| +|53|1.6|225000000| +|54|1.7|253000000| +|55|1.9|299000000| +|56|2.1|349000000| +|57|2.3|404000000| +|58|2.5|463000000| +|59|2.7|527000000| +|60|3|616000000| +|61|3.1|670000000| +|62|3.1|704000000| +|63|3.1|739000000| +|64|3.1|775000000| +|65|3.1|813000000| +|66|3.1|851000000| +|67|3.1|891000000| +|68|3.1|932000000| +|69|3.1|975000000| +|70|3.1|1020000000| +|71|3.1|1063300000| +|72|3.1|1109524100| +|73|3.1|1157068800| +|74|3.1|1205952700| +|75|3.1|1256194400| +|76|3.1|1307812500| +|77|3.1|1360825600| +|78|3.1|1415252300| +|79|3.1|1471111200| +|80|3.1|1528420900| +|81|3.1|1587200000| +|82|3.1|1647467100| +|83|3.1|1709240800| +|84|3.1|1772539700| +|85|3.1|1837382400| +|86|3.1|1903787500| +|87|3.1|1971773600| +|88|3.1|2041359300| +|89|3.1|2112563200| +|90|3.1|2185403900| +|91|3.1|2259900000| +|92|3.1|2336070100| +|93|3.1|2413932800| +|94|3.1|2493506700| +|95|3.1|2574810400| +|96|3.1|2657862500| +|97|3.1|2742681600| +|98|3.1|2829286300| +|99|3.1|2917695200| +|100|3.1|3007926900| +|101|3.1|3100000000| +|102|3.1|3193933100| +|103|3.1|3289744800| +|104|3.1|3387453700| +|105|3.1|3487078400| +|106|3.1|3588637500| +|107|3.1|3692149600| +|108|3.1|3797633300| +|109|3.1|3905107200| +|110|3.1|4014589900| +|111|3.1|4126100000| +|112|3.1|4239656100| +|113|3.1|4355276800| +|114|3.1|4472980700| +|115|3.1|4592786400| +|116|3.1|4714712500| +|117|3.1|4838777600| +|118|3.1|4965000300| +|119|3.1|5093399200| +|120|3.1|5223992900| +|121|3.1|5356800000| +|122|3.1|5491839100| +|123|3.1|5629128800| +|124|3.1|5768687700| +|125|3.1|5910534400| +|126|3.1|6054687500| +|127|3.1|6201165600| +|128|3.1|6349987300| +|129|3.1|6501171200| +|130|3.1|6654735900| +|131|3.1|6810700000| +|132|3.1|6969082100| +|133|3.1|7129900800| +|134|3.1|7293174700| +|135|3.1|7458922400| +|136|3.1|7627162500| +|137|3.1|7797913600| +|138|3.1|7971194300| +|139|3.1|8147023200| +|140|3.1|8325418900| +|141|3.1|8506400000| +|142|3.1|8689985100| +|143|3.1|8876192800| +|144|3.1|9065041700| +|145|3.1|9256550400| +|146|3.1|9450737500| +|147|3.1|9647621600| +|148|3.1|9847221300| +|149|3.1|10049555200| +|150|3.1|10254641900| +|151|3.1|10462500000| +|152|3.1|10673148100| +|153|3.1|10886604800| +|154|3.1|11102888700| +|155|3.1|11322018400| +|156|3.1|11544012500| +|157|3.1|11768889600| +|158|3.1|11996668300| +|159|3.1|12227367200| +|160|3.1|12461004900| +|161|3.1|12697600000| +|162|3.1|12937171100| +|163|3.1|13179736800| +|164|3.1|13425315700| +|165|3.1|13673926400| +|166|3.1|13925587500| +|167|3.1|14180317600| +|168|3.1|14438135300| +|169|3.1|14699059200| +|170|3.1|14963107900| +|171|3.1|15230300000| +|172|3.1|15500654100| +|173|3.1|15774188800| +|174|3.1|16050922700| +|175|3.1|16330874400| +|176|3.1|16614062500| +|177|3.1|16900505600| +|178|3.1|17190222300| +|179|3.1|17483231200| +|180|3.1|17779550900| +|181|3.1|18079200000| +|182|3.1|18382197100| +|183|3.1|18688560800| +|184|3.1|18998309700| +|185|3.1|19311462400| +|186|3.1|19628037500| +|187|3.1|19948053600| +|188|3.1|20271529300| +|189|3.1|20598483200| +|190|3.1|20928933900| +|191|3.1|21262900000| +|192|3.1|21600400100| +|193|3.1|21941452800| +|194|3.1|22286076700| +|195|3.1|22634290400| +|196|3.1|22986112500| +|197|3.1|23341561600| +|198|3.1|23700656300| +|199|3.1|24063415200| +|200|3.1|24429856900| +|201|3.1|24800000000| +|202|3.1|25173863100| +|203|3.1|25551464800| +|204|3.1|25932823700| +|205|3.1|26317958400| +|206|3.1|26706887500| +|207|3.1|27099629600| +|208|3.1|27496203300| +|209|3.1|27896627200| +|210|3.1|28300919900| +|211|3.1|28709100000| +|212|3.1|29121186100| +|213|3.1|29537196800| +|214|3.1|29957150700| +|215|3.1|30381066400| +|216|3.1|30808962500| +|217|3.1|31240857600| +|218|3.1|31676770300| +|219|3.1|32116719200| +|220|3.1|32560722900| +|221|3.1|33008800000| +|222|3.1|33460969100| +|223|3.1|33917248800| +|224|3.1|34377657700| +|225|3.1|34842214400| +|226|3.1|35310937500| +|227|3.1|35783845600| +|228|3.1|36260957300| +|229|3.1|36742291200| +|230|3.1|37227865900| +|231|3.1|37717700000| +|232|3.1|38211812100| +|233|3.1|38710220800| +|234|3.1|39212944700| +|235|3.1|39720002400| +|236|3.1|40231412500| +|237|3.1|40747193600| +|238|3.1|41267364300| +|239|3.1|41791943200| +|240|3.1|42320948900| +|241|3.1|42854400000| +|242|3.1|43392315100| +|243|3.1|43934712800| +|244|3.1|44481611700| +|245|3.1|45033030400| +|246|3.1|45588987500| +|247|3.1|46149501600| +|248|3.1|46714591300| +|249|3.1|47284275200| +|250|3.1|47858571900| +|251|3.1|48437500000| +|252|3.1|49021078100| +|253|3.1|49609324800| +|254|3.1|50202258700| +|255|3.1|50799898400|