当前位置: 首页>>代码示例>>Python>>正文


Python MESSENGER_ACTION_IDS.battleChatCommandFromActionID方法代码示例

本文整理汇总了Python中messenger_common_chat2.MESSENGER_ACTION_IDS.battleChatCommandFromActionID方法的典型用法代码示例。如果您正苦于以下问题:Python MESSENGER_ACTION_IDS.battleChatCommandFromActionID方法的具体用法?Python MESSENGER_ACTION_IDS.battleChatCommandFromActionID怎么用?Python MESSENGER_ACTION_IDS.battleChatCommandFromActionID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在messenger_common_chat2.MESSENGER_ACTION_IDS的用法示例。


在下文中一共展示了MESSENGER_ACTION_IDS.battleChatCommandFromActionID方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _getCommandVehMarker

# 需要导入模块: from messenger_common_chat2 import MESSENGER_ACTION_IDS [as 别名]
# 或者: from messenger_common_chat2.MESSENGER_ACTION_IDS import battleChatCommandFromActionID [as 别名]
 def _getCommandVehMarker(self):
     command = _ACTIONS.battleChatCommandFromActionID(self._commandID)
     result = ''
     if not command:
         LOG_ERROR('Command is not found', self._commandID)
     else:
         result = command.vehMarker
     return result
开发者ID:webiumsk,项目名称:WOT-0.9.12-CT,代码行数:10,代码来源:battle_chat_cmd.py

示例2: _getCommandVehMarker

# 需要导入模块: from messenger_common_chat2 import MESSENGER_ACTION_IDS [as 别名]
# 或者: from messenger_common_chat2.MESSENGER_ACTION_IDS import battleChatCommandFromActionID [as 别名]
 def _getCommandVehMarker(self):
     command = _ACTIONS.battleChatCommandFromActionID(self._commandID)
     result = ""
     if not command:
         LOG_ERROR("Command is not found", self._commandID)
     elif command.vehMarker is not None:
         result = command.vehMarker
     return result
开发者ID:aevitas,项目名称:wotsdk,代码行数:10,代码来源:bw_chat2battle_chat_cmd.py

示例3: createCoolDownError

# 需要导入模块: from messenger_common_chat2 import MESSENGER_ACTION_IDS [as 别名]
# 或者: from messenger_common_chat2.MESSENGER_ACTION_IDS import battleChatCommandFromActionID [as 别名]
def createCoolDownError(actionID):
    command = _ACTIONS.adminChatCommandFromActionID(actionID)
    if command:
        return _AdminCommandCoolDownError()
    command = _ACTIONS.battleChatCommandFromActionID(actionID)
    if command:
        return _BattleCommandCoolDownError(command)
    if _ACTIONS.isRateLimitedBroadcastFromClient(actionID):
        coolDown = _LIMITS.BROADCASTS_FROM_CLIENT_COOLDOWN_SEC
    elif actionID == _ACTIONS.FIND_USERS_BY_NAME:
        coolDown = _LIMITS.FIND_USERS_BY_NAME_REQUEST_COOLDOWN_SEC
    elif actionID == _ACTIONS.GET_VOIP_CREDENTIALS:
        coolDown = _LIMITS.VOIP_CREDENTIALS_REQUEST_COOLDOWN_SEC
    else:
        coolDown = None
    return _ActionCoolDownError(actionID, coolDown)
开发者ID:Infernux,项目名称:Projects,代码行数:18,代码来源:errors.py

示例4: getCommandText

# 需要导入模块: from messenger_common_chat2 import MESSENGER_ACTION_IDS [as 别名]
# 或者: from messenger_common_chat2.MESSENGER_ACTION_IDS import battleChatCommandFromActionID [as 别名]
 def getCommandText(self):
     command = _ACTIONS.battleChatCommandFromActionID(self._commandID)
     if not command:
         LOG_ERROR('Command is not found', self._commandID)
         return ''
     i18nKey = I18N_INGAME_GUI.chat_shortcuts(command.msgText)
     if i18nKey is not None:
         if self.isOnMinimap():
             text = i18n.makeString(i18nKey, cellName=self._getCellName())
         elif self.hasTarget():
             text = i18n.makeString(i18nKey, target=self._getTarget())
         else:
             text = i18n.makeString(i18nKey, **self._protoData)
     else:
         text = command.msgText
     return text
开发者ID:kblw,项目名称:wot_client,代码行数:18,代码来源:battle_chat_cmd.py


注:本文中的messenger_common_chat2.MESSENGER_ACTION_IDS.battleChatCommandFromActionID方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。