get_base_exp(PlayerLv)->
case PlayerLv of
1->30;
2->30;
3->60;
4->100;
5->160;
6->240;
7->330;
8->440;
9->570;
10->710;
11->880;
12->1060
end.
到以下:
get_base_exp(PlayerLv)->
case PlayerLv of
1 -> 30;
2 -> 30;
3 -> 60;
4 -> 100;
5 -> 160;
6 -> 240;
7 -> 330;
8 -> 440;
9 -> 570;
10 -> 710;
11 -> 880;
12 -> 1060
end.