263 【主界面】头像系统(内政-幻境阁系统)-服务端(形象、头像 增加关联武将皮肤解锁方式4;)
| | |
| | | if unlockWay == 3: # 关联武将
|
| | | heroID = unlockValue
|
| | | return True if PlayerHero.GetHeroActivite(curPlayer, heroID) else False
|
| | | |
| | | if unlockWay == 4: # 关联武将皮肤
|
| | | skinID = unlockValue
|
| | | return True if PlayerHero.GetHeroSkinState(curPlayer, skinID) else False
|
| | | return False
|
| | |
|
| | | def RefreshFaceAttr(curPlayer):
|
| | |
| | | if unlockWay == 3: # 关联武将
|
| | | heroID = unlockValue
|
| | | return True if PlayerHero.GetHeroActivite(curPlayer, heroID) else False
|
| | | if unlockWay == 4: # 关联武将皮肤
|
| | | skinID = unlockValue
|
| | | return True if PlayerHero.GetHeroSkinState(curPlayer, skinID) else False
|
| | |
|
| | | return False
|
| | |
|