| | |
| | | import PlayerActivity
|
| | | import PlayerTeHui
|
| | | import FBCommon
|
| | | import HighLadderTube
|
| | | import PlayerBindJadeWheel
|
| | | import BossHurtMng
|
| | | import PlayerAction
|
| | | import PlayerAttrFruit
|
| | |
| | | PlayerDogz.OnPlayerLogin(curPlayer)
|
| | | # 骑宠
|
| | | FamilyRobBoss.OnPlayerLogin(curPlayer)
|
| | | # 绑玉转盘
|
| | | PlayerBindJadeWheel.OnDay(curPlayer)
|
| | |
|
| | | # 上线查询一次充值订单
|
| | | curPlayer.SendDBQueryRecharge()
|
| | |
| | | PlayerControl.NotifyCode(curPlayer, "04BBF813-7A30-47A8-927DE1ACCC4F378E")
|
| | | return
|
| | |
|
| | | #===============================================================================
|
| | | # isFreedomTransBuff = SkillCommon.GetPlayerBuffBySkillTypeID(curPlayer, ShareDefine.Def_FreedomTransBuffID)
|
| | | # if not PlayerControl.IsPlayerInFight(curPlayer):
|
| | | # |
| | | # if (transportType == ChConfig.Def_Transport_Type_BigMap) or (not isFreedomTransBuff):
|
| | | # #传送支付处理
|
| | | # |
| | | # if not PayForTransport(curPlayer, transportType, isAutoBuy):
|
| | | # return
|
| | | #===============================================================================
|
| | | #是任务传送,VIP等级不够,且传送符不足,不处理
|
| | | if transportType == ChConfig.Def_Transport_Type_Mission and \
|
| | | not TransportVipLvRestrict(curPlayer, transportType) and \
|
| | |
| | | # @param transportType 传送类型
|
| | | # @return 是否vip等级限制
|
| | | def TransportVipLvRestrict(curPlayer, transportType):
|
| | | |
| | | #大地图标记传送不能体验无限飞buff功能
|
| | | if transportType != ChConfig.Def_Transport_Type_BigMap:
|
| | | if SkillCommon.GetPlayerBuffBySkillTypeID(curPlayer, ShareDefine.Def_FreedomTransBuffID):
|
| | | #有无限飞buff
|
| | | return True
|
| | | return PlayerVip.GetPrivilegeValue(curPlayer, ChConfig.VIPPrivilege_FreeTransport)
|
| | |
|
| | |
|