- 好友
- 0
- 在线时间
- 0 小时
- 最后登录
- 2023-3-21
平民

- UID
- 2875098
- 第纳尔
- 81
- 精华
- 0
- 互助
- 0
- 荣誉
- 0
- 贡献
- 0
- 魅力
- 0
- 注册时间
- 2017-9-11
 鲜花( 0)  鸡蛋( 0)
|

楼主 |
发表于 2022-5-9 20:19:27
|
显示全部楼层
// Token: 0x060040BC RID: 16572 RVA: 0x0010F060 File Offset: 0x0010D260
private bool conversation lord can recruit on condition()
{
if (Hero.MainHero.MapFaction.Leader == Hero.MainHero)
{
MBTextManager.SetTextVariable("RECRUIT START", new TextObject("{=Fr7wzk97}I am the rightful ruler of this land. I would like your support.", null), false);
}
else if (Hero.MainHero.MapFaction == Hero.OneToOneConversationHero.MapFaction)
{
StringHelpers.SetCharacterProperties("CURRENT LIEGE", Hero.OneToOneConversationHero.MapFaction.Leader.CharacterObject, null, false);
MBTextManager.SetTextVariable("RECRUIT START", "{=V7qF7uas}I should lead our people, not {CURRENT LIEGE.NAME}.", false);
}
else
{
StringHelpers.SetCharacterProperties("NEW LIEGE", Hero.MainHero.MapFaction.Leader.CharacterObject, null, false);
MBTextManager.SetTextVariable("RECRUIT START", new TextObject("{=UwPs3wmj}My liege {NEW LIEGE.NAME} would welcome your support. Join us!", null), false);
}
return true;
}
而且这里也没看到怎么修改 |
|