7、修改获得的经验
文件位置data\exp.xml
<exp cmd="crash_block" first="20" value="1" />
<exp cmd="dig_inclusion" first="50" value="2" />
<exp cmd="new_recipe" first="50" value="50" />
<exp cmd="kill_animal" first="20" value="10" />
<exp cmd="kill_monster" first="100" value="50" />
<exp cmd="craft_recipe" first="20" value="3" />
<exp cmd="build_block" first="10" value="2" />
这里的first="20" value="1";就是首次和以后每次获得的经验,稍改大就行了,不然4级一下就到了,就要倒计时了
8、修改升级需要的经验
文件位置data\char_levels.txt
1 0 1
2 100 1
3 500 1
4 1000 2
5 2000 2
6 4000 2
7 8000 2
8 16000 2
9 32000 2
10 64000 2
11 128000 2
12 256000 2
13 512000 2
14 1024000 2
15 2048000 2
16 4096000 2
17 8192000 2
18 16384000 2
19 32768000 2
20 65536000 2
第一个数字是级别,中间的是需要达到的经验,最后一个不知道是什么意思
同样的,4级以前,别改太小,不然倒计时来的早
9、修改配方
文件位置data\recipes.xml,比如火把
<recipe name="torch" ingredients="resin-2,wood-5" produce="torch=4" group="5" require="any-2-deep" save="false" on_read_quest="build_torch" />
produce="torch=4",意思就是一次能造4个火把,因为能修改资源,除了木板、铁块什么需求量很大的物资意外,也没什么可改的
10、修改商店
文件位置data\craft_resources.xml,比如石块
<resource name="stone" title="%StoneT" desc="%StoneD" file="gfx\level_tiles\craft_res\craft_stone_01" build="stone" application="minning" properties="wall" shop_count="5" shop_cost="1" />
这个shop_count="5" shop_cost="1",表示1个金币买5个,因为资源能修改,其实也不怎么需要改