Craig Cooney wrote: > > + Level Points Required > + ----------------------------- > + 1 10,000 > + 2 20,000 > + 3 30,000 > + 4 40,000 > + 5 50,000 > + 6 70,000* > + 7 90,000 > + 8 110,000 > + 9 130,000 > + 10 150,000 > + 11 180,000* > + 12 210,000 > + 13 240,000 > + 14 270,000 > + 15 300,000 > + 16 340,000* > + 17 380,000 > + 18 420,000 > + 19 460,000 > + 20 500,000 > + 21 550,000* > + Interesting note: This can be calculated in such a way as to avoid having to complete experience tables for all the levels... int get_exp(char level) { if (level <= 0) return 0; return (get_exp(level - 1) + ((level + 4) / 5) * 10000); } Regards, Peter +------------------------------------------------------------+ | Ensure that you have read the CircleMUD Mailing List FAQ: | | http://qsilver.queensu.ca/~fletchra/Circle/list-faq.html | +------------------------------------------------------------+
This archive was generated by hypermail 2b30 : 04/11/01 PDT