mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
|
from otp.speedchat.SCTerminal import *
|
||
|
from toontown.quest import Quests
|
||
|
from toontown.toon import NPCToons
|
||
|
TTSCToontaskMsgEvent = 'SCToontaskMsg'
|
||
|
|
||
|
def decodeTTSCToontaskMsg(taskId, toNpcId, toonProgress, msgIndex):
|
||
|
q = Quests.getQuest(taskId)
|
||
|
if q is None:
|
||
|
return
|
||
|
name = NPCToons.getNPCName(toNpcId)
|
||
|
if name is None:
|
||
|
return
|
||
|
msgs = q.getSCStrings(toNpcId, toonProgress)
|
||
|
if type(msgs) != type([]):
|
||
|
msgs = [msgs]
|
||
|
if msgIndex >= len(msgs):
|
||
|
return
|
||
|
return msgs[msgIndex]
|
||
|
|
||
|
|
||
|
class TTSCToontaskTerminal(SCTerminal):
|
||
|
|
||
|
def __init__(self, msg, taskId, toNpcId, toonProgress, msgIndex):
|
||
|
SCTerminal.__init__(self)
|
||
|
self.msg = msg
|
||
|
self.taskId = taskId
|
||
|
self.toNpcId = toNpcId
|
||
|
self.toonProgress = toonProgress
|
||
|
self.msgIndex = msgIndex
|
||
|
|
||
|
def getDisplayText(self):
|
||
|
return self.msg
|
||
|
|
||
|
def handleSelect(self):
|
||
|
SCTerminal.handleSelect(self)
|
||
|
messenger.send(self.getEventName(TTSCToontaskMsgEvent), [self.taskId,
|
||
|
self.toNpcId,
|
||
|
self.toonProgress,
|
||
|
self.msgIndex])
|