地下城秘籍代碼及使用方法
用寫字板等軟件編輯游戲安裝目錄下的Config.cfg文件,如果以下代碼不存在,則添加如下代碼:
Development.Enabled = true
而后,請在游戲的安裝目錄下的Data文件夾下的init.py文件中,加入如下語句:
def CG(gold = 1000000):
Send(CheatMessage("c_SetGold("+str(gold)+")", Vector3.ZERO, 0))
def CSE(se = 1000000):
Send(CheatMessage("c_SetSoulEnergy("+str(se)+")", Vector3.ZERO, 0))
def CP(p = 1000000):
Send(CheatMessage("c_SetPrestige("+str(p)+")", Vector3.ZERO, 0))
def CSP(sp = 300):
Send(CheatMessage("c_SetSkillPoints("+str(sp)+")", Vector3.ZERO, 0))
def CAP(ap = 1000):
Send(CheatMessage("c_SetAttributePoints("+str(ap)+")", Vector3.ZERO, 0))
之后在游戲中,鍵入con!,而后按F1,短暫的暫停后便會打開基于Python語言的嵌入開發(fā)控制臺,輸入如下代碼便可以得到相應(yīng)效果:
CG() - 1000000 gold (金幣)
CSE() - 1000000 soul energy (靈魂能量)
CP() - 1000000 prestige (榮耀值,造地下城裝飾物得到的值)
CSP() - 300 skill points (技能值)
CAP() - 1000 attribute points (屬性值)
查看所有0條評論>>