general: Generate stubs for missing UD objects.
This commit is contained in:
parent
4516abf186
commit
63f52ceb9a
30 changed files with 1445 additions and 0 deletions
18
otp/avatar/DistributedAvatarUD.py
Normal file
18
otp/avatar/DistributedAvatarUD.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class DistributedAvatarUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedAvatarUD")
|
||||
|
||||
def setName(self, todo0):
|
||||
pass
|
||||
|
||||
def friendsNotify(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def checkAvOnShard(self, todo0):
|
||||
pass
|
||||
|
||||
def confirmAvOnShard(self, todo0, todo1):
|
||||
pass
|
||||
|
6
otp/distributed/AccountUD.py
Normal file
6
otp/distributed/AccountUD.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class AccountUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("AccountUD")
|
||||
|
12
otp/distributed/CentralLoggerUD.py
Normal file
12
otp/distributed/CentralLoggerUD.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class CentralLoggerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("CentralLoggerUD")
|
||||
|
||||
def sendMessage(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def logAIGarbage(self):
|
||||
pass
|
||||
|
12
otp/distributed/DistributedDistrictUD.py
Normal file
12
otp/distributed/DistributedDistrictUD.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class DistributedDistrictUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedDistrictUD")
|
||||
|
||||
def setName(self, todo0):
|
||||
pass
|
||||
|
||||
def setAvailable(self, todo0):
|
||||
pass
|
||||
|
15
otp/distributed/ObjectServerUD.py
Normal file
15
otp/distributed/ObjectServerUD.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class ObjectServerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("ObjectServerUD")
|
||||
|
||||
def setName(self, todo0):
|
||||
pass
|
||||
|
||||
def setDcHash(self, todo0):
|
||||
pass
|
||||
|
||||
def setDateCreated(self, todo0):
|
||||
pass
|
||||
|
45
otp/friends/AvatarFriendsManagerUD.py
Normal file
45
otp/friends/AvatarFriendsManagerUD.py
Normal file
|
@ -0,0 +1,45 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class AvatarFriendsManagerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("AvatarFriendsManagerUD")
|
||||
|
||||
def online(self):
|
||||
pass
|
||||
|
||||
def requestInvite(self, todo0):
|
||||
pass
|
||||
|
||||
def friendConsidering(self, todo0):
|
||||
pass
|
||||
|
||||
def invitationFrom(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def retractInvite(self, todo0):
|
||||
pass
|
||||
|
||||
def rejectInvite(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def requestRemove(self, todo0):
|
||||
pass
|
||||
|
||||
def rejectRemove(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def updateAvatarFriend(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def removeAvatarFriend(self, todo0):
|
||||
pass
|
||||
|
||||
def updateAvatarName(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def avatarOnline(self, todo0, todo1, todo2, todo3, todo4, todo5, todo6):
|
||||
pass
|
||||
|
||||
def avatarOffline(self, todo0):
|
||||
pass
|
||||
|
189
otp/friends/GuildManagerUD.py
Normal file
189
otp/friends/GuildManagerUD.py
Normal file
|
@ -0,0 +1,189 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class GuildManagerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("GuildManagerUD")
|
||||
|
||||
def online(self):
|
||||
pass
|
||||
|
||||
def guildRejectInvite(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def invitationFrom(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def requestInvite(self, todo0):
|
||||
pass
|
||||
|
||||
def memberList(self):
|
||||
pass
|
||||
|
||||
def createGuild(self):
|
||||
pass
|
||||
|
||||
def acceptInvite(self):
|
||||
pass
|
||||
|
||||
def declineInvite(self):
|
||||
pass
|
||||
|
||||
def setWantName(self, todo0):
|
||||
pass
|
||||
|
||||
def removeMember(self, todo0):
|
||||
pass
|
||||
|
||||
def changeRank(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def changeRankAvocate(self, todo0):
|
||||
pass
|
||||
|
||||
def statusRequest(self):
|
||||
pass
|
||||
|
||||
def requestLeaderboardTopTen(self):
|
||||
pass
|
||||
|
||||
def guildStatusUpdate(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def guildNameReject(self, todo0):
|
||||
pass
|
||||
|
||||
def guildNameChange(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def receiveMember(self, todo0):
|
||||
pass
|
||||
|
||||
def receiveMembersDone(self):
|
||||
pass
|
||||
|
||||
def guildAcceptInvite(self, todo0):
|
||||
pass
|
||||
|
||||
def guildDeclineInvite(self, todo0):
|
||||
pass
|
||||
|
||||
def updateRep(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def leaderboardTopTen(self, todo0):
|
||||
pass
|
||||
|
||||
def recvAvatarOnline(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def recvAvatarOffline(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def sendChat(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def sendWLChat(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def sendSC(self, todo0):
|
||||
pass
|
||||
|
||||
def sendSCQuest(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def recvChat(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def recvWLChat(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def recvSC(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def recvSCQuest(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def sendTokenRequest(self):
|
||||
pass
|
||||
|
||||
def recvTokenGenerated(self, todo0):
|
||||
pass
|
||||
|
||||
def recvTokenInviteValue(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def sendTokenForJoinRequest(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def recvTokenRedeemMessage(self, todo0):
|
||||
pass
|
||||
|
||||
def recvTokenRedeemedByPlayerMessage(self, todo0):
|
||||
pass
|
||||
|
||||
def sendTokenRValue(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def sendPermToken(self):
|
||||
pass
|
||||
|
||||
def sendNonPermTokenCount(self):
|
||||
pass
|
||||
|
||||
def recvPermToken(self, todo0):
|
||||
pass
|
||||
|
||||
def recvNonPermTokenCount(self, todo0):
|
||||
pass
|
||||
|
||||
def sendClearTokens(self, todo0):
|
||||
pass
|
||||
|
||||
def sendAvatarBandId(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def recvMemberAdded(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def notifyGuildKicksMaxed(self):
|
||||
pass
|
||||
|
||||
def recvMemberRemoved(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def recvMemberUpdateName(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def recvMemberUpdateRank(self, todo0, todo1, todo2, todo3, todo4, todo5):
|
||||
pass
|
||||
|
||||
def recvMemberUpdateBandId(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def avatarOnline(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def avatarOffline(self, todo0):
|
||||
pass
|
||||
|
||||
def reflectTeleportQuery(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def teleportQuery(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def reflectTeleportResponse(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def teleportResponse(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def requestGuildMatesList(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def updateAvatarName(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def avatarDeleted(self, todo0):
|
||||
pass
|
||||
|
42
otp/friends/PlayerFriendsManagerUD.py
Normal file
42
otp/friends/PlayerFriendsManagerUD.py
Normal file
|
@ -0,0 +1,42 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class PlayerFriendsManagerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("PlayerFriendsManagerUD")
|
||||
|
||||
def requestInvite(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def invitationFrom(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def retractInvite(self, todo0):
|
||||
pass
|
||||
|
||||
def invitationResponse(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def requestDecline(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def requestDeclineWithReason(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def requestRemove(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def secretResponse(self, todo0):
|
||||
pass
|
||||
|
||||
def rejectSecret(self, todo0):
|
||||
pass
|
||||
|
||||
def rejectUseSecret(self, todo0):
|
||||
pass
|
||||
|
||||
def updatePlayerFriend(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def removePlayerFriend(self, todo0):
|
||||
pass
|
||||
|
27
otp/snapshot/SnapshotDispatcherUD.py
Normal file
27
otp/snapshot/SnapshotDispatcherUD.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class SnapshotDispatcherUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("SnapshotDispatcherUD")
|
||||
|
||||
def online(self):
|
||||
pass
|
||||
|
||||
def requestRender(self, todo0):
|
||||
pass
|
||||
|
||||
def avatarDeleted(self, todo0):
|
||||
pass
|
||||
|
||||
def requestNewWork(self, todo0):
|
||||
pass
|
||||
|
||||
def errorFetchingAvatar(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def errorRenderingAvatar(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def renderSuccessful(self, todo0, todo1):
|
||||
pass
|
||||
|
12
otp/snapshot/SnapshotRendererUD.py
Normal file
12
otp/snapshot/SnapshotRendererUD.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class SnapshotRendererUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("SnapshotRendererUD")
|
||||
|
||||
def online(self):
|
||||
pass
|
||||
|
||||
def requestRender(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
12
otp/status/StatusDatabaseUD.py
Normal file
12
otp/status/StatusDatabaseUD.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class StatusDatabaseUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("StatusDatabaseUD")
|
||||
|
||||
def requestOfflineAvatarStatus(self, todo0):
|
||||
pass
|
||||
|
||||
def recvOfflineAvatarStatus(self, todo0, todo1):
|
||||
pass
|
||||
|
75
otp/uberdog/DistributedChatManagerUD.py
Normal file
75
otp/uberdog/DistributedChatManagerUD.py
Normal file
|
@ -0,0 +1,75 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class DistributedChatManagerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedChatManagerUD")
|
||||
|
||||
def online(self):
|
||||
pass
|
||||
|
||||
def adminChat(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def setAvatarLocation(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setAvatarCrew(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def setAvatarGuild(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def chatParentId(self, todo0):
|
||||
pass
|
||||
|
||||
def chatZoneId(self, todo0):
|
||||
pass
|
||||
|
||||
def chatFace(self, todo0):
|
||||
pass
|
||||
|
||||
def chatEmote(self, todo0):
|
||||
pass
|
||||
|
||||
def chatEmoteTarget(self, todo0):
|
||||
pass
|
||||
|
||||
def chatIndex(self, todo0):
|
||||
pass
|
||||
|
||||
def chatString(self, todo0):
|
||||
pass
|
||||
|
||||
def speedChatTo(self, todo0):
|
||||
pass
|
||||
|
||||
def speedChatFrom(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def speedChatCustomTo(self, todo0):
|
||||
pass
|
||||
|
||||
def speedChatCustomFrom(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def whisperSCTo(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def whisperSCFrom(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def whisperSCCustomTo(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def whisperSCCustomFrom(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def whisperSCEmoteTo(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def whisperSCEmoteFrom(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def whisperIgnored(self, todo0):
|
||||
pass
|
||||
|
60
otp/uberdog/OtpAvatarManagerUD.py
Normal file
60
otp/uberdog/OtpAvatarManagerUD.py
Normal file
|
@ -0,0 +1,60 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class OtpAvatarManagerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("OtpAvatarManagerUD")
|
||||
|
||||
def online(self):
|
||||
pass
|
||||
|
||||
def requestAvatarList(self, todo0):
|
||||
pass
|
||||
|
||||
def rejectAvatarList(self, todo0):
|
||||
pass
|
||||
|
||||
def avatarListResponse(self, todo0):
|
||||
pass
|
||||
|
||||
def requestAvatarSlot(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def rejectAvatarSlot(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def avatarSlotResponse(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def requestPlayAvatar(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def rejectPlayAvatar(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def playAvatarResponse(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def rejectCreateAvatar(self, todo0):
|
||||
pass
|
||||
|
||||
def createAvatarResponse(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def requestRemoveAvatar(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def rejectRemoveAvatar(self, todo0):
|
||||
pass
|
||||
|
||||
def removeAvatarResponse(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def requestShareAvatar(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def rejectShareAvatar(self, todo0):
|
||||
pass
|
||||
|
||||
def shareAvatarResponse(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
9
otp/uberdog/SpeedchatRelayUD.py
Normal file
9
otp/uberdog/SpeedchatRelayUD.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class SpeedchatRelayUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("SpeedchatRelayUD")
|
||||
|
||||
def forwardSpeedchat(self, todo0, todo1, todo2, todo3, todo4, todo5):
|
||||
pass
|
||||
|
12
otp/web/SettingsMgrUD.py
Normal file
12
otp/web/SettingsMgrUD.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class SettingsMgrUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("SettingsMgrUD")
|
||||
|
||||
def requestAllChangedSettings(self):
|
||||
pass
|
||||
|
||||
def settingChange(self, todo0, todo1):
|
||||
pass
|
||||
|
21
toontown/coderedemption/TTCodeRedemptionMgrUD.py
Normal file
21
toontown/coderedemption/TTCodeRedemptionMgrUD.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class TTCodeRedemptionMgrUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("TTCodeRedemptionMgrUD")
|
||||
|
||||
def giveAwardToToonResult(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def redeemCode(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def redeemCodeAiToUd(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def redeemCodeResultUdToAi(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def redeemCodeResult(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
6
toontown/friends/TTPlayerFriendsManagerUD.py
Normal file
6
toontown/friends/TTPlayerFriendsManagerUD.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from otp.friends.PlayerFriendsManagerUD import PlayerFriendsManagerUD
|
||||
|
||||
class TTPlayerFriendsManagerUD(PlayerFriendsManagerUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("TTPlayerFriendsManagerUD")
|
||||
|
9
toontown/rpc/AwardManagerUD.py
Normal file
9
toontown/rpc/AwardManagerUD.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectGlobalUD import DistributedObjectGlobalUD
|
||||
|
||||
class AwardManagerUD(DistributedObjectGlobalUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("AwardManagerUD")
|
||||
|
||||
def giveAwardToToon(self, todo0, todo1, todo2, todo3, todo4, todo5):
|
||||
pass
|
||||
|
6
toontown/rpc/RATManagerUD.py
Normal file
6
toontown/rpc/RATManagerUD.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectGlobalUD import DistributedObjectGlobalUD
|
||||
|
||||
class RATManagerUD(DistributedObjectGlobalUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("RATManagerUD")
|
||||
|
552
toontown/toon/DistributedToonUD.py
Normal file
552
toontown/toon/DistributedToonUD.py
Normal file
|
@ -0,0 +1,552 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class DistributedToonUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedToonUD")
|
||||
|
||||
def setDNAString(self, todo0):
|
||||
pass
|
||||
|
||||
def setGM(self, todo0):
|
||||
pass
|
||||
|
||||
def setMaxBankMoney(self, todo0):
|
||||
pass
|
||||
|
||||
def setBankMoney(self, todo0):
|
||||
pass
|
||||
|
||||
def setMaxMoney(self, todo0):
|
||||
pass
|
||||
|
||||
def setMoney(self, todo0):
|
||||
pass
|
||||
|
||||
def setMaxHp(self, todo0):
|
||||
pass
|
||||
|
||||
def setHp(self, todo0):
|
||||
pass
|
||||
|
||||
def toonUp(self, todo0):
|
||||
pass
|
||||
|
||||
def takeDamage(self, todo0):
|
||||
pass
|
||||
|
||||
def setBattleId(self, todo0):
|
||||
pass
|
||||
|
||||
def setExperience(self, todo0):
|
||||
pass
|
||||
|
||||
def setMaxCarry(self, todo0):
|
||||
pass
|
||||
|
||||
def setTrackAccess(self, todo0):
|
||||
pass
|
||||
|
||||
def setTrackProgress(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def setTrackBonusLevel(self, todo0):
|
||||
pass
|
||||
|
||||
def setInventory(self, todo0):
|
||||
pass
|
||||
|
||||
def setMaxNPCFriends(self, todo0):
|
||||
pass
|
||||
|
||||
def setNPCFriendsDict(self, todo0):
|
||||
pass
|
||||
|
||||
def setDefaultShard(self, todo0):
|
||||
pass
|
||||
|
||||
def setDefaultZone(self, todo0):
|
||||
pass
|
||||
|
||||
def setShtickerBook(self, todo0):
|
||||
pass
|
||||
|
||||
def setZonesVisited(self, todo0):
|
||||
pass
|
||||
|
||||
def setHoodsVisited(self, todo0):
|
||||
pass
|
||||
|
||||
def setInterface(self, todo0):
|
||||
pass
|
||||
|
||||
def setLastHood(self, todo0):
|
||||
pass
|
||||
|
||||
def setTutorialAck(self, todo0):
|
||||
pass
|
||||
|
||||
def setMaxClothes(self, todo0):
|
||||
pass
|
||||
|
||||
def setClothesTopsList(self, todo0):
|
||||
pass
|
||||
|
||||
def setClothesBottomsList(self, todo0):
|
||||
pass
|
||||
|
||||
def setMaxAccessories(self, todo0):
|
||||
pass
|
||||
|
||||
def setHatList(self, todo0):
|
||||
pass
|
||||
|
||||
def setGlassesList(self, todo0):
|
||||
pass
|
||||
|
||||
def setBackpackList(self, todo0):
|
||||
pass
|
||||
|
||||
def setShoesList(self, todo0):
|
||||
pass
|
||||
|
||||
def setHat(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setGlasses(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setBackpack(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setShoes(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setGardenSpecials(self, todo0):
|
||||
pass
|
||||
|
||||
def setEarnedExperience(self, todo0):
|
||||
pass
|
||||
|
||||
def setTunnelIn(self, todo0, todo1, todo2, todo3, todo4, todo5):
|
||||
pass
|
||||
|
||||
def setTunnelOut(self, todo0, todo1, todo2, todo3, todo4, todo5, todo6):
|
||||
pass
|
||||
|
||||
def setAnimState(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setEmoteState(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setEmoteAccess(self, todo0):
|
||||
pass
|
||||
|
||||
def setCustomMessages(self, todo0):
|
||||
pass
|
||||
|
||||
def setSleepAutoReply(self, todo0):
|
||||
pass
|
||||
|
||||
def setResistanceMessages(self, todo0):
|
||||
pass
|
||||
|
||||
def setPetTrickPhrases(self, todo0):
|
||||
pass
|
||||
|
||||
def setCatalogSchedule(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def setCatalog(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setMailboxContents(self, todo0):
|
||||
pass
|
||||
|
||||
def setDeliverySchedule(self, todo0):
|
||||
pass
|
||||
|
||||
def setGiftSchedule(self, todo0):
|
||||
pass
|
||||
|
||||
def setAwardMailboxContents(self, todo0):
|
||||
pass
|
||||
|
||||
def setAwardSchedule(self, todo0):
|
||||
pass
|
||||
|
||||
def setAwardNotify(self, todo0):
|
||||
pass
|
||||
|
||||
def setCatalogNotify(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def playSplashEffect(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setWhisperSCToontaskFrom(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def setSCToontask(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def reqSCResistance(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def setSCResistance(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def setSpeedChatStyleIndex(self, todo0):
|
||||
pass
|
||||
|
||||
def setTrophyScore(self, todo0):
|
||||
pass
|
||||
|
||||
def setTeleportAccess(self, todo0):
|
||||
pass
|
||||
|
||||
def checkTeleportAccess(self, todo0):
|
||||
pass
|
||||
|
||||
def battleSOS(self, todo0):
|
||||
pass
|
||||
|
||||
def teleportQuery(self, todo0):
|
||||
pass
|
||||
|
||||
def teleportResponse(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def teleportResponseToAI(self, todo0, todo1, todo2, todo3, todo4, todo5):
|
||||
pass
|
||||
|
||||
def teleportGiveup(self, todo0):
|
||||
pass
|
||||
|
||||
def teleportGreeting(self, todo0):
|
||||
pass
|
||||
|
||||
def setCogStatus(self, todo0):
|
||||
pass
|
||||
|
||||
def setCogCount(self, todo0):
|
||||
pass
|
||||
|
||||
def setCogRadar(self, todo0):
|
||||
pass
|
||||
|
||||
def setBuildingRadar(self, todo0):
|
||||
pass
|
||||
|
||||
def setCogLevels(self, todo0):
|
||||
pass
|
||||
|
||||
def setCogTypes(self, todo0):
|
||||
pass
|
||||
|
||||
def setCogParts(self, todo0):
|
||||
pass
|
||||
|
||||
def setCogMerits(self, todo0):
|
||||
pass
|
||||
|
||||
def setCogIndex(self, todo0):
|
||||
pass
|
||||
|
||||
def setDisguisePageFlag(self, todo0):
|
||||
pass
|
||||
|
||||
def setSosPageFlag(self, todo0):
|
||||
pass
|
||||
|
||||
def setHouseId(self, todo0):
|
||||
pass
|
||||
|
||||
def setQuests(self, todo0):
|
||||
pass
|
||||
|
||||
def setQuestHistory(self, todo0):
|
||||
pass
|
||||
|
||||
def setRewardHistory(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def setQuestCarryLimit(self, todo0):
|
||||
pass
|
||||
|
||||
def requestDeleteQuest(self, todo0):
|
||||
pass
|
||||
|
||||
def setCheesyEffect(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setGhostMode(self, todo0):
|
||||
pass
|
||||
|
||||
def setPosIndex(self, todo0):
|
||||
pass
|
||||
|
||||
def setFishCollection(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setMaxFishTank(self, todo0):
|
||||
pass
|
||||
|
||||
def setFishTank(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setFishingRod(self, todo0):
|
||||
pass
|
||||
|
||||
def setFishingTrophies(self, todo0):
|
||||
pass
|
||||
|
||||
def setFlowerCollection(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def setFlowerBasket(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def setMaxFlowerBasket(self, todo0):
|
||||
pass
|
||||
|
||||
def setGardenTrophies(self, todo0):
|
||||
pass
|
||||
|
||||
def setShovel(self, todo0):
|
||||
pass
|
||||
|
||||
def setShovelSkill(self, todo0):
|
||||
pass
|
||||
|
||||
def setWateringCan(self, todo0):
|
||||
pass
|
||||
|
||||
def setWateringCanSkill(self, todo0):
|
||||
pass
|
||||
|
||||
def promoteShovel(self, todo0):
|
||||
pass
|
||||
|
||||
def promoteWateringCan(self, todo0):
|
||||
pass
|
||||
|
||||
def reactivateWater(self):
|
||||
pass
|
||||
|
||||
def presentPie(self, todo0, todo1, todo2, todo3, todo4, todo5, todo6):
|
||||
pass
|
||||
|
||||
def tossPie(self, todo0, todo1, todo2, todo3, todo4, todo5, todo6, todo7, todo8):
|
||||
pass
|
||||
|
||||
def pieSplat(self, todo0, todo1, todo2, todo3, todo4, todo5):
|
||||
pass
|
||||
|
||||
def setPieType(self, todo0):
|
||||
pass
|
||||
|
||||
def setNumPies(self, todo0):
|
||||
pass
|
||||
|
||||
def catalogGenClothes(self, todo0):
|
||||
pass
|
||||
|
||||
def catalogGenAccessories(self, todo0):
|
||||
pass
|
||||
|
||||
def setPetId(self, todo0):
|
||||
pass
|
||||
|
||||
def setPetMovie(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def setPetTutorialDone(self, todo0):
|
||||
pass
|
||||
|
||||
def setFishBingoTutorialDone(self, todo0):
|
||||
pass
|
||||
|
||||
def setFishBingoMarkTutorialDone(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartBodyType(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartBodyColor(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartAccessoryColor(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartEngineBlockType(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartSpoilerType(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartFrontWheelWellType(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartBackWheelWellType(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartRimType(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartDecalType(self, todo0):
|
||||
pass
|
||||
|
||||
def updateKartDNAField(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def addOwnedAccessory(self, todo0):
|
||||
pass
|
||||
|
||||
def removeOwnedAccessory(self, todo0):
|
||||
pass
|
||||
|
||||
def setTickets(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartingHistory(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartingTrophies(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartingPersonalBest(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartingPersonalBest2(self, todo0):
|
||||
pass
|
||||
|
||||
def setKartAccessoriesOwned(self, todo0):
|
||||
pass
|
||||
|
||||
def setCurrentKart(self, todo0):
|
||||
pass
|
||||
|
||||
def squish(self, todo0):
|
||||
pass
|
||||
|
||||
def announceBingo(self):
|
||||
pass
|
||||
|
||||
def trickOrTreatTargetMet(self, todo0):
|
||||
pass
|
||||
|
||||
def trickOrTreatMilestoneMet(self):
|
||||
pass
|
||||
|
||||
def winterCarolingTargetMet(self, todo0):
|
||||
pass
|
||||
|
||||
def setCogSummonsEarned(self, todo0):
|
||||
pass
|
||||
|
||||
def reqCogSummons(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def cogSummonsResponse(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def reqUseSpecial(self, todo0):
|
||||
pass
|
||||
|
||||
def useSpecialResponse(self, todo0):
|
||||
pass
|
||||
|
||||
def setGardenStarted(self, todo0):
|
||||
pass
|
||||
|
||||
def sendToGolfCourse(self, todo0):
|
||||
pass
|
||||
|
||||
def setGolfHistory(self, todo0):
|
||||
pass
|
||||
|
||||
def setPackedGolfHoleBest(self, todo0):
|
||||
pass
|
||||
|
||||
def setGolfCourseBest(self, todo0):
|
||||
pass
|
||||
|
||||
def setUnlimitedSwing(self, todo0):
|
||||
pass
|
||||
|
||||
def logSuspiciousEvent(self, todo0):
|
||||
pass
|
||||
|
||||
def logMessage(self, todo0):
|
||||
pass
|
||||
|
||||
def forceLogoutWithNotify(self):
|
||||
pass
|
||||
|
||||
def setPinkSlips(self, todo0):
|
||||
pass
|
||||
|
||||
def setNametagStyle(self, todo0):
|
||||
pass
|
||||
|
||||
def setMail(self, todo0):
|
||||
pass
|
||||
|
||||
def setNumMailItems(self, todo0):
|
||||
pass
|
||||
|
||||
def setSimpleMailNotify(self, todo0):
|
||||
pass
|
||||
|
||||
def setInvites(self, todo0):
|
||||
pass
|
||||
|
||||
def setPartiesInvitedTo(self, todo0):
|
||||
pass
|
||||
|
||||
def setHostedParties(self, todo0):
|
||||
pass
|
||||
|
||||
def setPartyReplies(self, todo0):
|
||||
pass
|
||||
|
||||
def updateInvite(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def updateReply(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setPartyCanStart(self, todo0):
|
||||
pass
|
||||
|
||||
def setPartyStatus(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def announcePartyStarted(self, todo0):
|
||||
pass
|
||||
|
||||
def setNeverStartedPartyRefunded(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setModuleInfo(self, todo0):
|
||||
pass
|
||||
|
||||
def setDISLname(self, todo0):
|
||||
pass
|
||||
|
||||
def setDISLid(self, todo0):
|
||||
pass
|
||||
|
||||
def flagAv(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def requestPing(self, todo0):
|
||||
pass
|
||||
|
||||
def ping(self, todo0):
|
||||
pass
|
||||
|
||||
def pingresp(self, todo0):
|
||||
pass
|
||||
|
11
toontown/uberdog/ClientServicesManagerUD.py
Normal file
11
toontown/uberdog/ClientServicesManagerUD.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
from direct.distributed.DistributedObjectGlobalUD import DistributedObjectGlobalUD
|
||||
from direct.directnotify.DirectNotifyGlobal import directNotify
|
||||
|
||||
class ClientServicesManagerUD(DistributedObjectGlobalUD):
|
||||
notify = directNotify.newCategory('ClientServicesManagerUD')
|
||||
|
||||
def login(self, cookie):
|
||||
print cookie
|
||||
|
||||
def acceptLogin(self):
|
||||
messenger.send(self.doneEvent)
|
9
toontown/uberdog/DistributedCpuInfoMgrUD.py
Normal file
9
toontown/uberdog/DistributedCpuInfoMgrUD.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectGlobalUD import DistributedObjectGlobalUD
|
||||
|
||||
class DistributedCpuInfoMgrUD(DistributedObjectGlobalUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedCpuInfoMgrUD")
|
||||
|
||||
def setCpuInfoToUd(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
21
toontown/uberdog/DistributedDataStoreManagerUD.py
Normal file
21
toontown/uberdog/DistributedDataStoreManagerUD.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class DistributedDataStoreManagerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedDataStoreManagerUD")
|
||||
|
||||
def startStore(self, todo0):
|
||||
pass
|
||||
|
||||
def stopStore(self, todo0):
|
||||
pass
|
||||
|
||||
def queryStore(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def receiveResults(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def deleteBackupStores(self):
|
||||
pass
|
||||
|
78
toontown/uberdog/DistributedDeliveryManagerUD.py
Normal file
78
toontown/uberdog/DistributedDeliveryManagerUD.py
Normal file
|
@ -0,0 +1,78 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class DistributedDeliveryManagerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedDeliveryManagerUD")
|
||||
|
||||
def hello(self, todo0):
|
||||
pass
|
||||
|
||||
def rejectHello(self, todo0):
|
||||
pass
|
||||
|
||||
def helloResponse(self, todo0):
|
||||
pass
|
||||
|
||||
def getName(self, todo0):
|
||||
pass
|
||||
|
||||
def receiveRejectGetName(self, todo0):
|
||||
pass
|
||||
|
||||
def receiveAcceptGetName(self, todo0):
|
||||
pass
|
||||
|
||||
def addName(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def receiveRejectAddName(self, todo0):
|
||||
pass
|
||||
|
||||
def receiveAcceptAddName(self, todo0):
|
||||
pass
|
||||
|
||||
def addGift(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def receiveRejectAddGift(self, todo0):
|
||||
pass
|
||||
|
||||
def receiveAcceptAddGift(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def deliverGifts(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def receiveAcceptDeliverGifts(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def receiveRejectDeliverGifts(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def receiveRequestPayForGift(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def receiveRequestPurchaseGift(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def receiveAcceptPurchaseGift(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def receiveRejectPurchaseGift(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def heartbeat(self):
|
||||
pass
|
||||
|
||||
def giveBeanBonus(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def requestAck(self):
|
||||
pass
|
||||
|
||||
def returnAck(self):
|
||||
pass
|
||||
|
||||
def givePartyRefund(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
15
toontown/uberdog/DistributedInGameNewsMgrUD.py
Normal file
15
toontown/uberdog/DistributedInGameNewsMgrUD.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectGlobalUD import DistributedObjectGlobalUD
|
||||
|
||||
class DistributedInGameNewsMgrUD(DistributedObjectGlobalUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedInGameNewsMgrUD")
|
||||
|
||||
def setLatestIssueStr(self, todo0):
|
||||
pass
|
||||
|
||||
def inGameNewsMgrAIStartingUp(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def newIssueUDtoAI(self, todo0):
|
||||
pass
|
||||
|
12
toontown/uberdog/DistributedMailManagerUD.py
Normal file
12
toontown/uberdog/DistributedMailManagerUD.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class DistributedMailManagerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedMailManagerUD")
|
||||
|
||||
def sendSimpleMail(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def setNumMailItems(self, todo0, todo1):
|
||||
pass
|
||||
|
126
toontown/uberdog/DistributedPartyManagerUD.py
Normal file
126
toontown/uberdog/DistributedPartyManagerUD.py
Normal file
|
@ -0,0 +1,126 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||
|
||||
class DistributedPartyManagerUD(DistributedObjectUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedPartyManagerUD")
|
||||
|
||||
def addParty(self, todo0, todo1, todo2, todo3, todo4, todo5, todo6, todo7, todo8, todo9):
|
||||
pass
|
||||
|
||||
def addPartyRequest(self, todo0, todo1, todo2, todo3, todo4, todo5, todo6, todo7):
|
||||
pass
|
||||
|
||||
def addPartyResponse(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def addPartyResponseUdToAi(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def markInviteAsReadButNotReplied(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def respondToInvite(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def respondToInviteResponse(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def changePrivateRequest(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def changePrivateRequestAiToUd(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def changePrivateResponseUdToAi(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def changePrivateResponse(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def changePartyStatusRequest(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def changePartyStatusRequestAiToUd(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def changePartyStatusResponseUdToAi(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def changePartyStatusResponse(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def partyInfoOfHostRequestAiToUd(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def partyInfoOfHostFailedResponseUdToAi(self, todo0):
|
||||
pass
|
||||
|
||||
def partyInfoOfHostResponseUdToAi(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def givePartyRefundResponse(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def getPartyZone(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def receivePartyZone(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def freeZoneIdFromPlannedParty(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def sendAvToPlayground(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def exitParty(self, todo0):
|
||||
pass
|
||||
|
||||
def removeGuest(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def partyManagerAIStartingUp(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def partyManagerAIGoingDown(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def partyHasStartedAiToUd(self, todo0, todo1, todo2, todo3, todo4):
|
||||
pass
|
||||
|
||||
def toonHasEnteredPartyAiToUd(self, todo0):
|
||||
pass
|
||||
|
||||
def toonHasExitedPartyAiToUd(self, todo0):
|
||||
pass
|
||||
|
||||
def partyHasFinishedUdToAllAi(self, todo0):
|
||||
pass
|
||||
|
||||
def updateToPublicPartyInfoUdToAllAi(self, todo0, todo1, todo2, todo3, todo4, todo5, todo6, todo7, todo8):
|
||||
pass
|
||||
|
||||
def updateToPublicPartyCountUdToAllAi(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def requestShardIdZoneIdForHostId(self, todo0):
|
||||
pass
|
||||
|
||||
def sendShardIdZoneIdToAvatar(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def partyManagerUdStartingUp(self):
|
||||
pass
|
||||
|
||||
def updateAllPartyInfoToUd(self, todo0, todo1, todo2, todo3, todo4, todo5, todo6, todo7, todo8):
|
||||
pass
|
||||
|
||||
def forceCheckStart(self):
|
||||
pass
|
||||
|
||||
def requestMw(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
||||
def mwResponseUdToAllAi(self, todo0, todo1, todo2, todo3):
|
||||
pass
|
||||
|
12
toontown/uberdog/DistributedSecurityMgrUD.py
Normal file
12
toontown/uberdog/DistributedSecurityMgrUD.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectGlobalUD import DistributedObjectGlobalUD
|
||||
|
||||
class DistributedSecurityMgrUD(DistributedObjectGlobalUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedSecurityMgrUD")
|
||||
|
||||
def requestAccountId(self, todo0, todo1, todo2):
|
||||
pass
|
||||
|
||||
def requestAccountIdResponse(self, todo0, todo1):
|
||||
pass
|
||||
|
15
toontown/uberdog/DistributedWhitelistMgrUD.py
Normal file
15
toontown/uberdog/DistributedWhitelistMgrUD.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from direct.distributed.DistributedObjectGlobalUD import DistributedObjectGlobalUD
|
||||
|
||||
class DistributedWhitelistMgrUD(DistributedObjectGlobalUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedWhitelistMgrUD")
|
||||
|
||||
def updateWhitelist(self):
|
||||
pass
|
||||
|
||||
def whitelistMgrAIStartingUp(self, todo0, todo1):
|
||||
pass
|
||||
|
||||
def newListUDtoAI(self):
|
||||
pass
|
||||
|
6
toontown/uberdog/TTSpeedchatRelayUD.py
Normal file
6
toontown/uberdog/TTSpeedchatRelayUD.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
from direct.directnotify import DirectNotifyGlobal
|
||||
from otp.uberdog.SpeedchatRelayUD import SpeedchatRelayUD
|
||||
|
||||
class TTSpeedchatRelayUD(SpeedchatRelayUD):
|
||||
notify = DirectNotifyGlobal.directNotify.newCategory("TTSpeedchatRelayUD")
|
||||
|
Loading…
Reference in a new issue