哈里西职业&哈里西继承者名字&职业修改 并使继承者与哈里西相同
归家异途2吧
全部回复
仅看楼主
level 1
1.哈里西职业修改
GlobalData->搜HarithPossibleJobs
把4个中文选项改成你要的职业,别用女性专用职业,会没模型
public static List<string> HarithPossibleJobs = new List<string>
{
"部落勇士",
"精英教官",
"炮兵指挥",
"大独裁者"
};
2.继承者职业颜色修改位置 MissionController->GetMainMission4
HeroData heroData = ReGameController.Instance.HeroGenerator(Mathf.Clamp(ReGameController.Instance.worldData.gameDifficulty + 2, 3, 5), false, jobName, (float)(UnityEngine.Random.Range(75, 100) + 20 * ReGameController.Instance.worldData.gameDifficulty));
替换原来的 HeroData heroData = ReGameController.Instance.HeroGeneratorXXXXXXXXXX
(Mathf.Clamp(ReGameController.Instance.worldData.gameDifficulty + 2, 3, 5)把这段改成5就是固定橙色,不改就是随难度上升颜色,地狱是橙
替换完后继承者职业会与哈里西相同
3.继承者性别名字修改位置 ReGameController->HeroGenerator
哈里西继承者职业性别判断
if (jobName != null)
{
if (jobName == "精英教官")
{
heroData.sex = 0;
}
if (jobName == "火炮指挥")
{
heroData.sex = 0;
}
if (jobName == "大独裁者")
{
heroData.sex = 0;
}
else
{
heroData.sex = UnityEngine.Random.Range(0, 2);
}
}
用上面那段替换代码中的 heroData.sex = UnityEngine.Random.Range(0, 2);
哈里西继承者名字修改
if (jobName != null)
{
if (jobName == "精英教官")
{
heroData.name = "哈里西遗志";
}
if (jobName == "火炮指挥")
{
heroData.name = "哈里西遗志";
}
if (jobName == "大独裁者")
{
heroData.name = "哈里西遗志";
}
else
{
heroData.name = list[UnityEngine.Random.Range(0, list.Count)];
}
}
用上面那段替换代码中的 heroData.name = list[UnityEngine.Random.Range(0, list.Count)];
2022年03月03日 09点03分 1
level 6
正式版解密了?测试版官方加密了没法修改。
2022年03月03日 10点03分 2
@love520033 哪个论坛?
2022年03月03日 15点03分
level 3
下班回家试试
2022年03月03日 10点03分 4
level 11
泪目,文艺复兴了
2022年03月03日 11点03分 5
level 6
连继承者都可以改
2022年03月04日 02点03分 6
level 3
楼主牛逼,逝者安息
2022年03月04日 08点03分 7
level 1
电脑搜不到这个文件。。。
2022年03月04日 14点03分 8
level 7
文档又解密可以改了????
2022年03月05日 01点03分 9
level 1
您好,请问能改刷NPC 的男女比例吗,教我一下,非常感谢
2022年03月10日 17点03分 10
HeroGenerator->heroData.sex = UnityEngine.Random.Range(0, 2);
2022年03月12日 00点03分
@永恒de彼端 非常感谢,改0,2吗
2022年03月12日 12点03分
@仟寻阑珊 好像我改2,2也都是女性
2022年03月12日 14点03分
level 5
哈里西职业在哪个文件改
2022年03月12日 14点03分 13
还有需要用啥软件改
2022年03月12日 14点03分
level 1
请问自己下的DNSPY改不了 在哪下的能用?
2022年03月17日 13点03分 15
1