コード例 #1
0
 def __init__(self, emoteId):
     SCTerminal.__init__(self)
     self.emoteId = emoteId
     if not self.__ltHasAccess():
         self.text = '?'
     else:
         self.text = EmoteList[self.emoteId]
コード例 #2
0
 def __init__(self, emoteId):
     SCTerminal.__init__(self)
     self.emoteId = emoteId
     if not self.__ltHasAccess():
         self.text = '?'
     else:
         self.text = EmoteList[self.emoteId]
コード例 #3
0
 def __init__(self, emoteId):
     SCTerminal.__init__(self)
     self.emoteId = emoteId
     # look up the emote name that should be displayed
     if not self.__ltHasAccess():
         self.text = '?'
     else:
         self.text = EmoteList[self.emoteId]
コード例 #4
0
 def __init__(self, textId):
     SCTerminal.__init__(self)
     self.textId = textId
     self.text = SpeedChatStaticText[self.textId]
コード例 #5
0
 def __init__(self, textId):
     SCTerminal.__init__(self)
     gmHandler = SpeedChatGMHandler.SpeedChatGMHandler()
     self.textId = textId
     self.text = gmHandler.getPhrase(textId)
コード例 #6
0
 def __init__(self, textId):
     SCTerminal.__init__(self)
     gmHandler = SpeedChatGMHandler.SpeedChatGMHandler()
     self.textId = textId
     self.text = gmHandler.getPhrase(textId)
コード例 #7
0
 def __init__(self, textId):
     SCTerminal.__init__(self)
     self.textId = textId
     self.text = CustomSCStrings[self.textId]
コード例 #8
0
ファイル: SCCustomTerminal.py プロジェクト: mting314/Toontown
 def __init__(self, textId):
     SCTerminal.__init__(self)
     self.textId = textId
     self.text = CustomSCStrings[self.textId]
コード例 #9
0
 def __init__(self, textId):
     SCTerminal.__init__(self)
     self.textId = textId
     self.text = SpeedChatStaticText[self.textId]