| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- local GuildLvCfg = {
- [1]={
- ['Id']=1,
- ['ExpRequire']=5000,
- ['PeopleLimit']=35,
- ['ActiveLimit']=7000,
- ['PeopleAdd']=2,
- ['ActiveAdd']=500,
- },
- [2]={
- ['Id']=2,
- ['ExpRequire']=8000,
- ['PeopleLimit']=37,
- ['ActiveLimit']=7500,
- ['PeopleAdd']=2,
- ['ActiveAdd']=500,
- },
- [3]={
- ['Id']=3,
- ['ExpRequire']=16000,
- ['PeopleLimit']=39,
- ['ActiveLimit']=8000,
- ['PeopleAdd']=2,
- ['ActiveAdd']=500,
- },
- [4]={
- ['Id']=4,
- ['ExpRequire']=30000,
- ['PeopleLimit']=41,
- ['ActiveLimit']=8500,
- ['PeopleAdd']=2,
- ['ActiveAdd']=500,
- },
- [5]={
- ['Id']=5,
- ['ExpRequire']=50000,
- ['PeopleLimit']=43,
- ['ActiveLimit']=9000,
- ['PeopleAdd']=2,
- ['ActiveAdd']=500,
- },
- [6]={
- ['Id']=6,
- ['ExpRequire']=90000,
- ['PeopleLimit']=45,
- ['ActiveLimit']=9500,
- ['PeopleAdd']=2,
- ['ActiveAdd']=500,
- },
- [7]={
- ['Id']=7,
- ['ExpRequire']=120000,
- ['PeopleLimit']=47,
- ['ActiveLimit']=10000,
- ['PeopleAdd']=2,
- ['ActiveAdd']=500,
- },
- [8]={
- ['Id']=8,
- ['ExpRequire']=0,
- ['PeopleLimit']=50,
- ['ActiveLimit']=10500,
- ['PeopleAdd']=3,
- ['ActiveAdd']=500,
- },
- }
- return GuildLvCfg
|