| | |
| | | for fbaoID in [101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 201, 202, 203, 204]:
|
| | | SetFabao.OnExec(curPlayer, [fbaoID])
|
| | |
|
| | | curMission = curPlayer.FindMission(1)
|
| | | if not curMission:
|
| | | GameWorld.DebugAnswer(curPlayer, "玩家没有该任务,missionID=%s" % 1)
|
| | | return
|
| | | curMission.SetProperty("OpenMap", 12)
|
| | | |
| | | # 被动
|
| | | passiveSkillList = [50900, 50902] if curPlayer.GetJob() == 1 else [55900, 55902]
|
| | | for skillID in passiveSkillList:
|
| | |
| | | ActiveHorse.OnExec(curPlayer, [i, 5])
|
| | |
|
| | | # 5.给基础属性
|
| | | curPlayer.SetBaseSTR(1000)
|
| | | curPlayer.SetBasePNE(1000)
|
| | | curPlayer.SetBasePHY(1000)
|
| | | curPlayer.SetBaseCON(1000000)
|
| | | curPlayer.SetGold(9999999)
|
| | | for attrID in xrange(201, 206):
|
| | | PlayerControl.NomalDictSetProperty(curPlayer, ChConfig.Def_PDict_AddPointValue % attrID, 10000)
|
| | | curPlayer.SetGold(99999)
|
| | |
|
| | | # 6.背包丢些东西
|
| | | MakeItemCount.OnExec(curPlayer, [10161, 50])
|
| | | MakeItemCount.OnExec(curPlayer, [260, 50])
|
| | | curPlayer.SetLV(lv)
|
| | |
|
| | | curPlayer.RefreshView()
|