用记事本打开游戏目录\data\scripts\playerprofile.lua文件,将下列内容:
if not table.contains(CHARACTERLIST, character) then
return true -- mod character
end
return false
替换为:
if not table.contains(CHARACTERLIST, character) then
return true -- mod character
end
return true
即可解锁全人物进行游戏 就是把最后的false改成true
就是这样