10940 lines
No EOL
323 KiB
Text
10940 lines
No EOL
323 KiB
Text
Master Rustys DNA:
|
||
base.localAvatar.setDNAString('t\x01\x02\x01\x01\x62\x12\x00\x12\x24\x1b\x14\x00\x14\x14')
|
||
|
||
DNA Strings For CLothes in Make a Toon:
|
||
base.localAvatar.setDNAString('t\x01\x02\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01')
|
||
base.localAvatar.setDNAString('t\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
|
||
|
||
|
||
Red Chat Text:
|
||
try:T_displayTalkNormal
|
||
except:T_displayTalkNormal = base.talkAssistant.sendOpenTalk
|
||
def displayRedTalk(displayText):
|
||
if str(displayText) == '\x01WLDisplay\x01.\x02' or str(displayText) == '.' or str(displayText) == ' ':
|
||
T_displayTalkNormal('')
|
||
else:
|
||
textArray = ['\x01WLRed\x01']
|
||
textArray.append(displayText)
|
||
textArray.append('\x02')
|
||
displayText = ''
|
||
for text in textArray:
|
||
displayText += text
|
||
T_displayTalkNormal(displayText)
|
||
base.talkAssistant.sendOpenTalk = displayRedTalk
|
||
|
||
Ban Blocker:
|
||
aSendUpdate = base.localAvatar.sendUpdate
|
||
def sendUpdateHook(fieldName, args=[], sendToId=None):
|
||
if fieldName == "logSuspiciousEvent":
|
||
pass
|
||
else:
|
||
aSendUpdate(fieldName, args)
|
||
def keepConnection():
|
||
pass
|
||
def denyDisconnectDetails(newCode, newMsg):
|
||
pass
|
||
base.cr.lostConnection = keepConnection
|
||
base.cr.disconnect = keepConnection
|
||
base.localAvatar.sendUpdate = sendUpdateHook
|
||
base.cr.launcher.setDisconnectDetails = denyDisconnectDetails
|
||
|
||
Server Whisper:
|
||
def broadcastWhisper(message="", includingSelf=True):
|
||
nearbyToonIds = base.localAvatar.getNearbyPlayers(pow(10, 10), includingSelf)
|
||
for nearbyToonIds in nearbyToonIds:base.talkAssistant.sendWhisperTalk(str(message), nearbyToonIds)
|
||
|
||
broadcastWhisper("Hi", True)
|
||
|
||
Server Rainbow Whisper:
|
||
def broadcastWhisper(message="", includingSelf=True):
|
||
nearbyToonIds = base.localAvatar.getNearbyPlayers(pow(10, 10), includingSelf)
|
||
for nearbyToonIds in nearbyToonIds:base.talkAssistant.sendWhisperTalk(str(message), nearbyToonIds)
|
||
|
||
broadcastWhisper("\x01blue\x01We\x01red\x01are\x01green\x01Team\x01blue\x01FeD\x01red\x01", True)
|
||
|
||
|
||
Sparkle Effect Code:
|
||
from toontown.effects.SparksTrail import SparksTrail
|
||
Me = base.localAvatar
|
||
st = SparksTrail()
|
||
st.setPos(Me.getX(), Me.getY(), Me.getZ())
|
||
st.play()
|
||
|
||
Create Your Own NPC:
|
||
TTChar = toontown.toon.Toon.Toon();TTChar.reparentTo(render)
|
||
TTChar.doId = base.localAvatar.doId;TTChar.setupToonNodes();TTChar.setName('~ Team FD NPC ~')
|
||
TTChar.setPosHpr(0, -4, 4, 90, 0, 0)
|
||
TTChar.initializeNametag3d();TTChar.startBlink();TTChar.startLookAround();
|
||
TTChar.showNametag3d();TTChar.showNametag2d();TTChar.adjustNametag3d();
|
||
TTChar.initializeBodyCollisions('FD_NPC-Collisions_' + str(TTChar.doId))
|
||
TTChar.setDNAString('t\x05\x05\x00\x01\x56\x06\x3d\x03\31\x07\x0e\x00\x0e\x0e')
|
||
TTChar.loop('neutral')
|
||
|
||
Create Your Own District:
|
||
from toontown.distributed import ToontownDistrict
|
||
FDNation = ToontownDistrict.ToontownDistrict(base.cr)
|
||
FDNation.generate();FDNation.generateInit();
|
||
FDNation.setName('FD Nation')
|
||
FDNation.doId = 49990000
|
||
FDNation.parentId = 4999
|
||
FDNation.setAvailable(1)
|
||
FDNation.postGenerateMessage();
|
||
base.cr.activeDistrictMap[49990000] = FDNation
|
||
base.localAvatar.book.pages[1].updateScrollList()
|
||
|
||
Server Gloves (Make A Toon Version):
|
||
import toontown
|
||
try:newToonRandom
|
||
except:newToonRandom = toontown.toon.ToonDNA.ToonDNA.newToonRandom
|
||
def createNewRandomToon(self, **kwds):
|
||
newToonRandom(self)
|
||
self.gloveColor=2;self.gender=kwds['gender']
|
||
self.armColor=26;self.gender=kwds['gender']
|
||
toontown.toon.ToonDNA.ToonDNA.newToonRandom = createNewRandomToon
|
||
|
||
Server Cog Suit:
|
||
playground = base.cr.doFindAll("render/")
|
||
for toon in playground:
|
||
if toon.doId != base.localAvatar.doId:
|
||
serverCogSuit = base.localAvatar.dclass.clientFormatUpdate("setCogIndex", toon.doId, [0])
|
||
base.cr.send(serverCogSuit)
|
||
|
||
Client Fireworks:
|
||
import toontown
|
||
Me = base.localAvatar
|
||
from toontown.effects.DistributedFireworkShow import DistributedFireworkShow
|
||
fireworks = DistributedFireworkShow(None)
|
||
fireworks.sendUpdate("shootFirework", [Me.getX(), Me.getY(), Me.getZ(), 1, 1, 1])
|
||
fireworks.shootFirework(Me.getX(), Me.getY(), Me.getZ(), 1, 1, 1)
|
||
fireworks.d_requestFirework(Me.getX(), Me.getY, Me.getZ(), 1, 1, 1)
|
||
fireworks.shootFirework(Me.getX(), Me.getY(), Me.getZ(), 3, 1, 1)
|
||
fireworks.d_requestFirework(Me.getX(), Me.getY, Me.getZ(), 3, 1, 1)
|
||
base.localAvatar.b_setAnimState('sit')
|
||
|
||
Tailor Disconnect Buttons + Tailor Gloves Button Changer:
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
currentGlove = 0
|
||
npc = base.cr.doFindAll("Tailor")[0]
|
||
defaultChatAbsolute = npc.setChatAbsolute
|
||
base.localAvatar.b_setAnimState('swim')
|
||
npc.handleCollisionSphereEnter(base.localAvatar.doId)
|
||
npc.handleCollisionSphereEnter(base.localAvatar.doId)
|
||
npc.afkTimeout = pow(100, 100)
|
||
gloveList = ['\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07', '\x08',\
|
||
'\x09', '\x10', '\x11', '\x12', '\x13', '\x14', '\x15', '\x16', '\x17', '\x18', '\x19',\
|
||
'\x0d', '\x0b', '\x0c', '\x0d', '\x0e', '\x0f', '\x1a']
|
||
def addGloveIndex(dnaString='t\x05\x02\x00\x00\x56\x1b\x3d\x1b\x20\x1b\x0e\x02\x0e\x0e'):
|
||
global gloveList, currentGlove, npc
|
||
if currentGlove != 26:
|
||
currentGlove += 1
|
||
npc.sendUpdate("setDNA", [dnaString[:12] + gloveList[currentGlove] + dnaString[13:], 0, 3])
|
||
base.localAvatar.setDNAString('t\x05\x05' + dnaString[3:12] + gloveList[currentGlove] + dnaString[13:])
|
||
else:
|
||
currentGlove = 0
|
||
npc.sendUpdate("setDNA", [dnaString[:12] + '\x00' + dnaString[13:], 0, 3])
|
||
base.localAvatar.setDNAString('t\x05\x05' + dnaString[3:12] + '\x00' + dnaString[13:])
|
||
def subtractGloveIndex(dnaString='t\x05\x02\x00\x00\x56\x1b\x3d\x1b\x20\x1b\x0e\x02\x0e\x0e'):
|
||
global gloveList, currentGlove, npc
|
||
if currentGlove != 0:
|
||
currentGlove -= 1
|
||
npc.sendUpdate("setDNA", [dnaString[:12] + gloveList[currentGlove] + dnaString[13:], 0, 3])
|
||
base.localAvatar.setDNAString('t\x05\x05' + dnaString[3:12] + gloveList[currentGlove] + dnaString[13:])
|
||
else:
|
||
currentGlove = 26
|
||
npc.sendUpdate("setDNA", [dnaString[:12] + '\x26' + dnaString[13:], 0, 3])
|
||
base.localAvatar.setDNAString('t\x05\x05' + dnaString[3:12] + '\x26' + dnaString[13:])
|
||
def disconnectThroughDNA(dnaString='t\x05\x06\x00\x00\x50\x1b\x45\x1b\x26\x1b\x0e\x02\x0e\x0e'):
|
||
try:
|
||
npc = base.cr.doFindAll("Tailor")[0]
|
||
npc.sendUpdate("setDNA", [dnaString, 0, 3])
|
||
except:pass
|
||
def removeGui():
|
||
try:npc = base.cr.doFindAll("Tailor")[0]
|
||
except:pass
|
||
try:
|
||
addGloveB.removeNode()
|
||
subtractGloveB.removeNode()
|
||
disconnectB.removeNode()
|
||
glovetxt_object.removeNode()
|
||
removeGuiB.removeNode()
|
||
except:pass
|
||
try:npc._DistributedNPCTailor__handleButton()
|
||
except:pass
|
||
def hookExit(chatString, chatFlags, dialogue=None, interrupt=1, quiet=0):
|
||
global npc, defaultChatAbsolute
|
||
if chatString == 'Need more time to think?':
|
||
npc.handleCollisionSphereEnter(base.localAvatar.doId)
|
||
npc.handleCollisionSphereEnter(base.localAvatar.doId)
|
||
npc.afkTimeout = pow(100, 100)
|
||
else:
|
||
defaultChatAbsolute(chatString, chatFlags, dialogue, interrupt, quiet)
|
||
npc.setChatAbsolute = hookExit
|
||
glove_text = 'Glove Color'
|
||
glovetxt_object = OnscreenText(text = glove_text, pos = (0.95,0.2), scale = 0.07, fg=(0, 0, 0, 0.6), align=TextNode.ACenter, mayChange=1)
|
||
addGloveB = DirectButton(text = (">>", ">>", ">>", ">>"), scale=.06, pos = (1.22,0,0.2), command=addGloveIndex)
|
||
subtractGloveB = DirectButton(text = ("<<", "<<", "<<", "<<"), scale=.06, pos = (0.7,0,0.2), command=subtractGloveIndex)
|
||
disconnectB = DirectButton(text = ("Disconnect", "Disconnect", "Disconnect", "Disconnect"), scale=.06, pos=(0.96,0,0.3), command=disconnectThroughDNA)
|
||
removeGuiB = DirectButton(text = ("No More Disconnect", "No More Disconnect", "No More Disconnect", "No More Disconnect"), scale=.06, pos=(0.96,0,0.4), command=removeGui)
|
||
|
||
Server Splash:
|
||
toon = base.cr.doFindAll("Put Toon name here")
|
||
base.localAvatar.d_playSplashEffect(toon[0].getX(), toon[0].getY(), toon[0].getZ())
|
||
base.localAvatar.playSplashEffect(toon[0].getX(), toon[0].getY(), toon[0].getZ())
|
||
|
||
Membership Code:
|
||
import otp, toontown
|
||
def returnGameAccess(*args):
|
||
return 2
|
||
base.cr._OTPClientRepository__isPaid = True
|
||
otp.otpbase.OTPGlobals.AccessVelvetRope = 2
|
||
otp.otpbase.OTPGlobals.AccessFull = 2
|
||
otp.otpbase.OTPGlobals.createFriendsWithChat = 2
|
||
toontown.toon.LocalToon.LocalToon.gameAccess = 2
|
||
base.launcher.setValue(base.launcher.PaidUserLoggedInKey, '1')
|
||
toontown.toon.LocalToon.LocalToon.getGameAccess = returnGameAccess
|
||
def returnAllowedSecretChat(*args, **kwds):return True
|
||
base.cr.allowSecretChat = returnAllowedSecretChat
|
||
base.cr.isParentPasswordSet = returnAllowedSecretChat
|
||
|
||
|
||
Server Dust Cloud:
|
||
toon = base.cr.doFindAll("Put Toon name here")
|
||
base.localAvatar.d_playDustCloudEffect(toon[0].getX(), toon[0].getY(), toon[0].getZ())
|
||
base.localAvatar.playDustCloudEffect(toon[0].getX(), toon[0].getY(), toon[0].getZ())
|
||
|
||
Friend Notify Whispers:
|
||
def notifyFriend(friendName, notifyId):
|
||
toon = base.cr.doFindAll(friendName)[0]
|
||
toon.sendUpdate("friendsNotify", [base.localAvatar.doId, notifyId])
|
||
base.localAvatar.friendsNotify(toon.doId, notifyId)
|
||
|
||
notifyFriend('Royal Blue Monkey', 1)
|
||
notifyFriend('Royal Blue Monkey', 2)
|
||
|
||
Server Control Toons Test:
|
||
toon = base.cr.doFindAll("Mister Rusty")
|
||
base.localAvatar.b_setAnimState("Sit",toon[0].getX(), toon[0].getY(), toon[0].getZ())
|
||
|
||
Server Fast Victory Dance:
|
||
messenger.send([base.localAvatar.b_setAnimState('victory', 10)])
|
||
|
||
Server Teleport Greeting Code:
|
||
base.localAvatar.b_teleportGreeting(Toon ID # Here)
|
||
|
||
Server Teleport Messages:
|
||
teleportToon = base.cr.doFindAll("ToonName")
|
||
base.localAvatar.d_teleportQuery(base.localAvatar.doId, teleportToon[0].doId)
|
||
base.localAvatar.setSystemMessage(None, "Teleport message has been sent to " + str(teleportToon[0].getName()))
|
||
|
||
teleportToon = base.cr.doFindAll("ToonName")
|
||
base.localAvatar.d_teleportGiveup(base.localAvatar.doId, teleportToon[0].doId)
|
||
base.localAvatar.setSystemMessage(None, "Teleport Give Up message has been sent to " + str(teleportToon[0].getName()))
|
||
|
||
Client Mickey Hacks:
|
||
mickey = base.cr.doFindAll("render/mickey")
|
||
for mickey in base.cr.doFindAll("render/mickey"):
|
||
mickey.setName('Ghost Mickey')
|
||
mickey.hideShadow()
|
||
mickey.loop('right-point')
|
||
mickey.setColorScale(0.3)
|
||
mickey.setChatAbsolute('Fuckers!', 1, None, True)
|
||
mickey.find('**/MickeycRay').removeNode()
|
||
mickey.find('**/distAvatarCollNode-415100656').removeNode()
|
||
mickey.find('**/MickeyBlatherSphere').setScale(5000)
|
||
|
||
Server Rainbow Open Chat:
|
||
base.talkAssistant.sendOpenTalk('\x01blue\x01We\x01red\x01are\x01green\x01Team\x01blue\x01FeD\x01red\x01')
|
||
base.talkAssistant.sendOpenTalk('\x01blue\x01\x01\x01we are team FeD\x01green\x01\x01blue\x01\x01red\x01')
|
||
|
||
Client 3D Rainbow Chat:
|
||
base.localAvatar.displayTalk("\x01shadow\x01We\x01red\x01are\x01green\x01Team\x01blue\x01FD\x01red\x01", mods=True)
|
||
|
||
Client HP String:
|
||
base.localAvatar.showHpString('Master Rusty pwns', duration=1, scale=0.5)
|
||
|
||
Client Lose Laff:
|
||
base.localAvatar.takeDamage(10, bonus=0)
|
||
|
||
|
||
|
||
Get Karts Current Dna String:
|
||
zone = base.localAvatar.getKartDNA()
|
||
zone = str(zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
|
||
Get Your House ID #:
|
||
zone = base.localAvatar.getHouseId()
|
||
zone = str(zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
|
||
Get Max # Of NPC Friends:
|
||
zone = base.localAvatar.getMaxNPCFriends()
|
||
zone = str(zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
|
||
Get Your Toons Current Location:
|
||
zone = base.localAvatar.getLocation()
|
||
zone = str(zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
|
||
Get Your Request ID #:
|
||
zone = base.localAvatar.getRequestID()
|
||
zone = str(zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
|
||
Get Your Pet ID #:
|
||
zone=base.localAvatar.lookupPetDNA()
|
||
zone = str(zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
|
||
Get Your Geom Info:
|
||
zone=base.localAvatar.getGeomNode()
|
||
zone = str(zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
|
||
Get Your Zone ID #:
|
||
zone = base.localAvatar.getZoneId()
|
||
zone = str(zone)
|
||
base.talkAssistant.sendOpenTalk('.I am in Zone : ' + zone)
|
||
|
||
Toon Valley Shard:
|
||
base.localAvatar.book.pages[1].choseShard(450000000)
|
||
|
||
Get Never Disable Args?:
|
||
zone = base.localAvatar.getNeverDisable()
|
||
zone = str(zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
|
||
Warning Message Box Code:
|
||
Toon = base.cr.doFindAll("ToonName")
|
||
base.localAvatar.systemWarning("Your ass is Gone",Toon[0].doId)
|
||
|
||
Client Lose Laff:
|
||
base.localAvatar.takeDamage(10)
|
||
|
||
Server Lose Laff:
|
||
base.localAvatar.d_squish(5)
|
||
|
||
Client Name Change (Alternate Version):
|
||
base.localAvatar.setDisplayName('Name You Want Here')
|
||
|
||
Start Chat Code:
|
||
base.localAvatar.startChat()
|
||
|
||
Server Teleport Greeting (Self Version):
|
||
base.localAvatar.b_teleportGreeting(base.localAvatar.doId)
|
||
|
||
Get Field Name And Arguments in Log Code:
|
||
base.cr.wantUpdateCalls = True
|
||
|
||
Client Silly Meter:
|
||
---Cardboard Meter---
|
||
meter = base.cr.doFindAll("Interior")[0]
|
||
print meter.sillyFSM.request('Flat', force=1)
|
||
|
||
|
||
fishman = base.cr.doFindAll("Doctor Surlee")
|
||
for fishman in base.cr.doFindAll("Doctor Surlee"):
|
||
fishman.hide()
|
||
|
||
|
||
fishman = base.cr.doFindAll("Doctor Dimm")
|
||
for fishman in base.cr.doFindAll("Doctor Dimm"):
|
||
fishman.hide()
|
||
|
||
|
||
|
||
fishman = base.cr.doFindAll("Professor Prepostera")
|
||
for fishman in base.cr.doFindAll("Professor Prepostera"):
|
||
fishman.hide()
|
||
|
||
---Real Meter---
|
||
meter = base.cr.doFindAll("Interior")[0]
|
||
print meter.sillyFSM.request('Phase10', force=1)
|
||
|
||
|
||
fishman = base.cr.doFindAll("Doctor Surlee")
|
||
for fishman in base.cr.doFindAll("Doctor Surlee"):
|
||
fishman.show()
|
||
|
||
|
||
fishman = base.cr.doFindAll("Doctor Dimm")
|
||
for fishman in base.cr.doFindAll("Doctor Dimm"):
|
||
fishman.show()
|
||
|
||
|
||
|
||
fishman = base.cr.doFindAll("Professor Prepostera")
|
||
for fishman in base.cr.doFindAll("Professor Prepostera"):
|
||
fishman.show()
|
||
|
||
|
||
Skip Toontorial:
|
||
messenger.send('rejectTutorial')
|
||
base.cr.gameFSM.request('closeShard')
|
||
|
||
|
||
Server Gloves (Tailor Version):
|
||
Make sure to go to the clerk.
|
||
Enter this first.
|
||
|
||
base.localAvatar.setDNAString('t\x18\x01\x00\x01\x70\x1b\x63\x1b\x22\x1b\x18\x00\x18\x18')
|
||
|
||
|
||
|
||
npc = base.cr.doFindAll("Tailor")
|
||
npc[0]._DistributedNPCTailor__enterConfirmLoss(34, 34)
|
||
|
||
|
||
then enter this.
|
||
|
||
|
||
base.localAvatar.setDNAString('t\x01\x01\x00\x00\x27\x1b\x42\x1b\x23\x1b\x08\x02\x08\x08')
|
||
|
||
|
||
|
||
npc = base.cr.doFindAll("Tailor")
|
||
npc[0]._DistributedNPCTailor__enterConfirmLoss(34, 34)
|
||
|
||
Server Go Sad:
|
||
base.localAvatar.enterDied(base.localAvatar.doId)
|
||
|
||
Shutdown Toontown:
|
||
base.cr.enterShutdown()
|
||
|
||
Close Shard:
|
||
base.cr.enterCloseShard()
|
||
|
||
Turn Off Virtual Toon:
|
||
base.localAvatar._Toon__doUnVirtual()
|
||
|
||
Turn On Virtual Toon:
|
||
base.localAvatar._Toon__doVirtual()
|
||
|
||
Abort Game Code:
|
||
base.cr.gameFSM.request('closeShard')
|
||
|
||
|
||
Instant House Teleport:
|
||
base.localAvatar._LocalToon__handleClarabelleButton()
|
||
|
||
Crash Yourself Codes:
|
||
base.cr._OTPClientRepository__giveUpWaitingForDatabase(True)
|
||
base.cr._OTPClientRepository__showWaitingForDatabase(True)
|
||
base.cr._OTPClientRepository__handleCancelWaiting(True)
|
||
base.cr._OTPClientRepository_handleOldShardGone(True)
|
||
|
||
AFK Timeout Codes:
|
||
base.localAvatar._Toon__handleAfkTimeout(True)
|
||
base.localAvatar._Toon__handleAfkExitTeleport(True)
|
||
base.localAvatar._LocalToon__handleSwimExitTeleport(True)
|
||
|
||
Server Choose Any Disney Approved Name Code:
|
||
base.cr.sendWishName(base.localAvatar.doId,("FD Master Rusty FD"))
|
||
base.cr.gameFSM.request('closeShard')
|
||
|
||
|
||
Shows All Active Shards:
|
||
zone = base.cr.listActiveShards()
|
||
zone = str(zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
|
||
Membership Code:
|
||
base.cr.setIsPaid(True)
|
||
|
||
Toon Steal:
|
||
base.cr.sendCreateAvatarMsg(avDNA, avName, avPosition)
|
||
|
||
Possible Delete Toons Code?:
|
||
def sendDeleteAvatarMsg(avId):
|
||
pass
|
||
|
||
sendDeleteAvatarMsg(Base.localAvatar.doId)
|
||
|
||
Make SOS Page Appear In Your Book:
|
||
base.localAvatar.loadSosPages()
|
||
|
||
Exit Tailor Codes:
|
||
npc = base.cr.doFindAll("Tailor")
|
||
npc[0]._DistributedNPCTailor__handlePurchaseDone()
|
||
|
||
npc = base.cr.doFindAll("Tailor")
|
||
npc[0]._DistributedNPCTailor__handleCancel()
|
||
|
||
npc = base.cr.doFindAll("Tailor")
|
||
npc[0]._DistributedNPCTailor__handleConfirmLossOK(1,1)
|
||
|
||
npc = base.cr.doFindAll("Tailor")
|
||
npc[0]._DistributedNPCTailor__handleConfirmLossCancel()
|
||
|
||
Tailor Crash Code:
|
||
npc = base.cr.doFindAll("Tailor")
|
||
npc[0]._DistributedNPCTailor__handleUnexpectedExit()
|
||
|
||
Tailor Steal Code:
|
||
npc = base.cr.doFindAll("Tailor")
|
||
npc[0]._DistributedNPCTailor__enterConfirmLoss(1, 1)
|
||
|
||
Trolley Code:
|
||
Trolley = base.cr.doFindAll("Trolley")
|
||
Trolley[0]._handleOffTrolly()
|
||
|
||
npc = base.cr.doFindAll("Tailor")
|
||
npc[0]._DistributedNPCTailor__handleSwap()
|
||
|
||
Control battles code?:
|
||
setWantBattles(self, wantBattles)
|
||
|
||
Client Winter Carol Bean Code:
|
||
base.localAvatar.winterCarolingTargetMet(Bean Amount Here)
|
||
|
||
Client Trick Or Treat Bean Code:
|
||
base.localAvatar.trickOrTreatTargetMet(Bean Amount Here)
|
||
|
||
Tutorial Tom Message Box:
|
||
door = base.cr.doFindAll("Door")
|
||
door[0].rejectEnter(True)
|
||
|
||
Show Not Owner Of Closet Panel:
|
||
clothes = base.cr.doFindAll("closet")
|
||
clothes[0]._DistributedCloset__popupNotOwnerPanel()
|
||
|
||
Close Closet Door::
|
||
clothes = base.cr.doFindAll("closet")
|
||
clothes[0]._DistributedCloset__closeDoors()
|
||
|
||
Open Closet Door:
|
||
clothes = base.cr.doFindAll("closet")
|
||
clothes[0]._DistributedCloset__openDoors()
|
||
|
||
Cancel Closet Code:
|
||
clothes = base.cr.doFindAll("closet")
|
||
clothes[0]._DistributedCloset__handleCancel()
|
||
|
||
Closet Are You Sure Panel Code:
|
||
clothes = base.cr.doFindAll("closet")
|
||
clothes[0]._DistributedCloset__popupAreYouSurePanel()
|
||
|
||
Closet Timeout Panel Code:
|
||
clothes = base.cr.doFindAll("closet")
|
||
clothes[0]._DistributedCloset__popupTimeoutPanel()
|
||
|
||
Closet Swap Code:
|
||
clothes = base.cr.doFindAll("closet")
|
||
clothes[0]._DistributedCloset__handleSwap()
|
||
|
||
Disconnect Toons (Tailor Version):
|
||
base.localAvatar.setDNAString('t\x01\x07\x00\x00\x50\x1b\x45\x1b\x21\x1b\x08\x02\x08\x08')
|
||
npc = base.cr.doFindAll("Tailor")
|
||
npc[0]._DistributedNPCTailor__enterConfirmLoss(34, 34)
|
||
|
||
Disconnect Toons (Estate Version):
|
||
closet = base.cr.doFindAll("closet")[0]
|
||
closet.sendUpdate("setDNA", ['t\x00\x08\x01\x00\x50\x1b\x45\x1b\x26\x1b\x0e\x04\x0e\x0e', 34, 34])
|
||
|
||
Server 3D Rainbow Open Chat:
|
||
base.talkAssistant.sendOpenTalk('\x01shadow\x01WE\x01red\x01ARE\x01green\x01TEAM\x01blue\x01FeD!\x01red\x01')
|
||
|
||
Server Grab Fish:
|
||
try:
|
||
pond = base.cr.doFindAll("FishingPond")[0]
|
||
fish = base.cr.doFindAll("FishingTarget")[0]
|
||
pond.d_hitTarget(fish)
|
||
except:pass
|
||
|
||
|
||
pond = base.cr.doFindAll("FishingPond")[0]
|
||
pond.handleBingoCatch()
|
||
|
||
Server SC Wrapper:
|
||
class SCWrapper:
|
||
SCDictionary = {}
|
||
global defaultDecode
|
||
|
||
def encrypt(self, message):
|
||
encryption = md5.new()
|
||
encryption.update(message)
|
||
return encryption.digest()
|
||
|
||
def registerMessage(self, SpeedchatID, SpeedchatText):
|
||
self.SCDictionary[SpeedchatID] = SpeedchatText
|
||
|
||
def unregisterMessage(self, SpeedchatID):
|
||
try:del self.SCDictionary[SpeedchatID]
|
||
except:print "No Speedchat ID", SpeedchatID
|
||
|
||
def returnDecoded(self, msgIndex):
|
||
if msgIndex in self.SCDictionary:return str(self.SCDictionary[msgIndex])
|
||
else:return defaultDecode(msgIndex)
|
||
|
||
def __init__(self):
|
||
otp.speedchat.SCDecoders.decodeSCStaticTextMsg = self.returnDecoded
|
||
|
||
Script To Run Multihacks:
|
||
script_path = "C:/Program Files/Disney/Disney Online/ToontownOnline/multihack.py"
|
||
script_to_run = open(script_path, 'r')
|
||
full_script = script_to_run.read()
|
||
exec full_script
|
||
|
||
|
||
direct.gui.OnscreenText
|
||
|
||
Estate Manager:
|
||
base.cr.doFindAll("Estate")[0]
|
||
|
||
CLIENT_DISCONNECT
|
||
|
||
from direct.distributed.PyDatagram import PyDatagram
|
||
CLIENT_DISCONNECT = 5
|
||
datagram = PyDatagram()
|
||
datagram.addUint16(SKELECOG_INVASION)
|
||
datagram.addUint16(5)
|
||
base.cr.send(datagram)
|
||
|
||
|
||
Master Rustys Buttons:
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from direct.interval.IntervalGlobal import *
|
||
from pandac.PandaModules import TextNode
|
||
|
||
def bOne():
|
||
base.localAvatar.collisionsOn()
|
||
def bTwo():
|
||
base.localAvatar.collisionsOff()
|
||
def bThree():
|
||
base.localAvatar.b_setAnimState('dive')
|
||
def bFour():
|
||
base.localAvatar.b_setAnimState('swim')
|
||
def bFive():
|
||
base.localAvatar.b_setSC(20136)
|
||
def bSix():
|
||
base.cr.sendSetZoneMsg(7000)
|
||
def bSeven():
|
||
base.cr.sendSetZoneMsg(2000)
|
||
def bEight():
|
||
base.localAvatar.book.pages[1].shardChoiceReject = base.localAvatar.book.pages[1].choseShard
|
||
base.localAvatar.setTeleportAccess([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.setSystemMessage(0,'Global Teleport Activated')
|
||
base.localAvatar.book._ShtikerBook__pageChange(1)
|
||
base.localAvatar.book._ShtikerBook__pageChange(-1)
|
||
def bNine():
|
||
base.talkAssistant.sendOpenTalk('\n' * 200)
|
||
def bTen():
|
||
base.localAvatar.d_squish(3)
|
||
def bEleven():
|
||
ttt = base.cr.doFindAll("TTTreasure")
|
||
for ttt in base.cr.doFindAll("TTTreasure"):
|
||
ttt.d_requestGrab()
|
||
def bTwelve():
|
||
base.localAvatar.b_setAnimState('TeleportOut')
|
||
def bThirteen():
|
||
base.localAvatar.b_setAnimState('TeleportIn')
|
||
def bFourteen():
|
||
base.localAvatar.enterSitStart()
|
||
def bFifteen():
|
||
messenger.send('nameTagShowAvId')
|
||
def bSixteen():
|
||
toon = base.localAvatar.getX()
|
||
toon2 = base.localAvatar.getY()
|
||
toon3 = base.localAvatar.getZ()
|
||
base.localAvatar.d_playSplashEffect(toon, toon2, toon3)
|
||
base.localAvatar.playSplashEffect(toon, toon2, toon3)
|
||
def bSeventeen():
|
||
base.localAvatar.b_setAnimState("victory", 10)
|
||
def bEighteen():
|
||
base.localAvatar.loop('swing')
|
||
def bNineteen():
|
||
base.localAvatar.b_setAnimState("ScientistEmcee")
|
||
def bTwenty():
|
||
messenger.send("minigameAbort")
|
||
def bTwentyone():
|
||
houseZoneGet = base.localAvatar.getZoneId()
|
||
houseZoneGet += 10
|
||
houseZoneGet = int(houseZoneGet)
|
||
base.cr.sendSetZoneMsg(houseZoneGet)
|
||
def whisperall(message="", includingSelf=True):
|
||
startingToon = 0
|
||
toonOn = 0
|
||
listToonIds = base.localAvatar.getNearbyPlayers(1000000000000000, includingSelf)
|
||
endingToon = len(listToonIds)
|
||
print listToonIds
|
||
while startingToon != endingToon:
|
||
base.talkAssistant.sendWhisperTalk(str(message), listToonIds[toonOn])
|
||
print toonOn
|
||
toonOn = toonOn + 1
|
||
startingToon = startingToon + 1
|
||
def bTwentytwo():
|
||
whisperall('TP TO ME \n' * 13, True)
|
||
def bTwentythree():
|
||
base.localAvatar.b_setAnimState('ScientistWork')
|
||
def bTwentyfour():
|
||
base.localAvatar.setDNAString('t\x01\x02\x00\x01\x56\x1d\x54\x1c\x24\x1d\x00\x00\x14\x14')
|
||
def bTwentyfive():
|
||
word = base.localAvatar.getZoneId()
|
||
base.localAvatar.collisionsOff()
|
||
base.cr.sendSetZoneMsg(7000)
|
||
base.localAvatar.b_setAnimState('chat')
|
||
base.cr.sendSetZoneMsg(word)
|
||
def bTwentysix():
|
||
ttd = base.cr.doFindAll("DivingGame")
|
||
for ttd in base.cr.doFindAll("DivingGame"):
|
||
ttd.setTreasureGrabbed(base.localAvatar.doId, True)
|
||
def bTwentyseven():
|
||
zone = base.localAvatar.getZoneId()
|
||
zone = str(zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
def bTwentyeight():
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 100
|
||
def bTwentynine():
|
||
base.localAvatar.physControls.avatarControlJumpForce = 100
|
||
|
||
b1 = DirectButton(text = ("CO-on", "CO-on", "CO-on", "CO-on"), scale=.05, pos = (-.1,0,-.9), command=bOne)
|
||
b2 = DirectButton(text = ("CO-off", "CO-off", "CO-off", "CO-off"), scale=.05, pos = (.08,0,-.9), command=bTwo)
|
||
b3 = DirectButton(text = ("Dive", "Dive", "Dive", "Dive"), scale=.05, pos = (.22,0,-.9), command=bThree)
|
||
b4 = DirectButton(text = ("Swim", "Swim", "Swim", "Swim"), scale=.05, pos = (.34,0,-.9), command=bFour)
|
||
b5 = DirectButton(text = ("RAID!", "RAID!", "RAID!", "RAID!"), scale=.05, pos = (.48,0,-.9), command=bFive)
|
||
b6 = DirectButton(text = ("Farm", "Farm", "Farm", "Farm"), scale=.05, pos = (-.26,0,-.9), command=bSix)
|
||
b7 = DirectButton(text = ("TTC", "TTC", "TTC", "TTC"), scale=.05, pos = (-.37,0,-.9), command=bSeven)
|
||
b8 = DirectButton(text = ("Teleport", "Teleport", "Teleport", "Teleport"), scale=.05, pos = (-.515,0,-.9), command=bEight)
|
||
b9 = DirectButton(text = ("Bubble", "Bubble", "Bubble", "Bubble"), scale=.05, pos = (-.7,0,-.9), command=bNine)
|
||
b10 = DirectButton(text = ("Die", "Die", "Die", "Die"), scale=.05, pos = (-.84,0,-.9), command=bTen)
|
||
b11 = DirectButton(text = ("Laff", "Laff", "Laff", "Laff"), scale=.05, pos = (-.94,0,-.9), command=bEleven)
|
||
b12 = DirectButton(text = ("T-out", "T-out", "T-out", "T-out"), scale=.05, pos = (-.94,0,-.96), command=bTwelve)
|
||
b13 = DirectButton(text = ("T-in", "T-in", "T-in", "T-in"), scale=.05, pos = (-.82,0,-.96), command=bThirteen)
|
||
b14 = DirectButton(text = ("Sit", "Sit", "Sit", "Sit"), scale=.05, pos = (.6,0,-.9), command=bFourteen)
|
||
b15 = DirectButton(text = ("AVID", "AVID", "AVID", "AVID"), scale=.05, pos = (.72,0,-.9), command=bFifteen)
|
||
b16 = DirectButton(text = ("Splash", "Splash", "Splash", "Splash"), scale=.05, pos = (-.55,0,-.96), command=bSixteen)
|
||
b17 = DirectButton(text = (">>Victory", ">>Victory", ">>Victory", ">>Victory"), scale=.05, pos = (-.36,0,-.96), command=bSeventeen)
|
||
b18 = DirectButton(text = ("Swing", "Swing", "Swing", "Swing"), scale=.05, pos = (-.17,0,-.96), command=bEighteen)
|
||
b19 = DirectButton(text = ("Emcee", "Emcee", "Emcee", "Emcee"), scale=.05, pos = (-.7,0,-.96), command=bNineteen)
|
||
b20 = DirectButton(text = ("Skip", "Skip", "Skip", "Skip"), scale=.05, pos = (-.06,0,-.96), command=bTwenty)
|
||
b21 = DirectButton(text = ("Raid", "Raid", "Raid", "Raid"), scale=.05, pos = (.05,0,-.96), command=bTwentyone)
|
||
b22 = DirectButton(text = ("TP", "TP", "TP", "TP"), scale=.05, pos = (.14,0,-.96), command=bTwentytwo)
|
||
b23 = DirectButton(text = ("SciW", "SciW", "SciW", "SciW"), scale=.05, pos = (.23,0,-.96), command=bTwentythree)
|
||
b24 = DirectButton(text = ("Suit", "Suit", "Suit", "Suit"), scale=.05, pos = (.34,0,-.96), command=bTwentyfour)
|
||
b25 = DirectButton(text = ("ScaC", "ScaC", "ScaC", "ScaC"), scale=.05, pos = (.45,0,-.96), command=bTwentyfive)
|
||
b26 = DirectButton(text = ("DiveG", "DiveG", "DiveG", "DiveG"), scale=.05, pos = (-.94,0,-.84), command=bTwentysix)
|
||
b27 = DirectButton(text = ("Zone", "Zone", "Zone", "Zone"), scale=.05, pos = (-.66,0,-.84), command=bTwentyseven)
|
||
b28 = DirectButton(text = ("Run", "Run", "Run", "Run"), scale=.05, pos = (-.36,0,-.84), command=bTwentyeight)
|
||
b29 = DirectButton(text = ("Jump", "Jump", "Jump", "Jump"), scale=.05, pos = (-.22,0,-.84), command=bTwentynine)
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def spinSetup():
|
||
height = base.localAvatar.getZ()
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setZ(height + 6)
|
||
def spinOne():
|
||
base.localAvatar.setHpr(0,10,0)
|
||
def spinTwo():
|
||
base.localAvatar.setHpr(0,30,0)
|
||
def spinThree():
|
||
base.localAvatar.setHpr(0,50,0)
|
||
def spinFour():
|
||
base.localAvatar.setHpr(0,70,0)
|
||
def spinFive():
|
||
base.localAvatar.setHpr(0,90,0)
|
||
def spinSix():
|
||
base.localAvatar.setHpr(0,110,0)
|
||
def spinSeven():
|
||
base.localAvatar.setHpr(0,130,0)
|
||
def spinEight():
|
||
base.localAvatar.setHpr(0,150,0)
|
||
def spinNine():
|
||
base.localAvatar.setHpr(0,170,0)
|
||
def spinTen():
|
||
base.localAvatar.setHpr(0,190,0)
|
||
def spinEleven():
|
||
base.localAvatar.setHpr(0,210,0)
|
||
def spinTwelve():
|
||
base.localAvatar.setHpr(0,230,0)
|
||
def spinThirteen():
|
||
base.localAvatar.setHpr(0,250,0)
|
||
def spinFourteen():
|
||
base.localAvatar.setHpr(0,270,0)
|
||
def spinFifteen():
|
||
base.localAvatar.setHpr(0,290,0)
|
||
def spinSixteen():
|
||
base.localAvatar.setHpr(0,310,0)
|
||
def spinSeventeen():
|
||
base.localAvatar.setHpr(0,330,0)
|
||
def spinEighteen():
|
||
base.localAvatar.setHpr(0,0,0)
|
||
def spinEnd():
|
||
base.localAvatar.collisionsOn()
|
||
def spinOnTime():
|
||
seq = Sequence()
|
||
seq.append(Func(spinSetup))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinOne))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinTwo))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinThree))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinFour))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinFive))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinSix))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinSeven))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinEight))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinNine))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinTen))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinEleven))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinTwelve))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinThirteen))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinFourteen))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinFifteen))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinSixteen))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinSeventeen))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(spinEighteen))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(spinEnd))
|
||
seq.start()
|
||
|
||
def stealthGo():
|
||
zone = base.localAvatar.getZoneId()
|
||
base.cr.sendSetZoneMsg(zone + 10)
|
||
base.localAvatar.collisionsOff()
|
||
def stealthBack():
|
||
zone = base.localAvatar.getZoneId()
|
||
base.cr.sendSetZoneMsg(zone - 10)
|
||
base.localAvatar.collisionsOn()
|
||
def stealthOnTime():
|
||
seq = Sequence()
|
||
seq.append(Func(stealthGo))
|
||
seq.append(Wait(15))
|
||
seq.append(Func(stealthBack))
|
||
seq.start()
|
||
|
||
bot1 = DirectButton(text = ("Spin", "Spin", "Spin", "Spin"), scale=.05, pos = (.57,0,-.96), command=spinOnTime)
|
||
bot2 = DirectButton(text = ("Stealth", "Stealth", "Stealth", "Stealth"), scale=.05, pos = (-.50,0,-.84), command=stealthOnTime)
|
||
|
||
|
||
Rustys Test Area:
|
||
import toontown
|
||
Def enterMakeMovie(self, ts=0):
|
||
toontown.battle.DistributedBattleBase.DistributedBattleBase = enterMakeMovie(0)
|
||
|
||
ChatFeedback_OpenChat = 128
|
||
ChatFeedback_PassedBlacklist = 32
|
||
ChatFeedback_Whitelist = 64
|
||
|
||
Red Chat Text:
|
||
try:T_displayTalkNormal
|
||
except:T_displayTalkNormal = base.talkAssistant.sendOpenTalk
|
||
def displayRedTalk(displayText):
|
||
if str(displayText) == '\x01WLDisplay\x01.\x02' or str(displayText) == '.' or str(displayText) == ' ':
|
||
T_displayTalkNormal('')
|
||
else:
|
||
textArray = ['\x01WLRed\x01']
|
||
textArray.append(displayText)
|
||
textArray.append('\x02')
|
||
displayText = ''
|
||
for text in textArray:
|
||
displayText += text
|
||
T_displayTalkNormal(displayText)
|
||
base.talkAssistant.sendOpenTalk = displayRedTalk
|
||
|
||
Blue Chat Text:
|
||
COming Soon
|
||
|
||
Codes i get from Ruberts logs:
|
||
base.talkAssistant.sendOpenTalk('\x01blue\x01WE WE WE WE WE WE WE WE WE WE WE WE WE WE WE WE WE WE WE \x01red\x01ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE ARE \x01green\x01TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM TEAM \x01blue\x01TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! TRAP! \x01yellow\x01We Are DOMINANT')
|
||
base.localAvatar.setDNAString('t\x01\x02\x01\x01\x42\x11\x54\x11\x0d\x14\x14\x00\x14\x14')
|
||
|
||
My Kart Dna:
|
||
[-1, -1, -1, -1, -1, -1, -1, -1, -1]
|
||
|
||
My Request ID:
|
||
14
|
||
|
||
|
||
Link to see peoples ID: http://www.youramonkey.com/?m=IDfmbbH1y3BcSfTKg
|
||
|
||
|
||
base.localAvatar.setTeleportAccess([1000, 2000, 3000, 4000, 5000,
|
||
6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
import toontown
|
||
def new():
|
||
return True
|
||
def new2(*a,**k):
|
||
return 2
|
||
base.cr.isPaid = new
|
||
base.cr.isParentPasswordSet = new
|
||
toontown.toon.LocalToon.LocalToon.getGameAccess = new2
|
||
|
||
|
||
Sit-base.localAvatar.enterSitStart()
|
||
|
||
swim-base.localAvatar.b_setAnimState('swim')
|
||
|
||
|
||
|
||
Walk through things-base.localAvatar.collisionsOff()
|
||
|
||
Sellbot suit-base.cr.sendSetZoneMsg(11100)
|
||
|
||
makes u die-base.localAvatar.takeDamage(100)
|
||
base.localAvatar.b_setAnimState('Sad')
|
||
Flip 1-base.localAvatar.setHpr(0,0,90)
|
||
|
||
Flip 2-base.localAvatar.setHpr(0,0,135)
|
||
|
||
Flip 3-base.localAvatar.setHpr(0,0,180)
|
||
|
||
flip 4-base.localAvatar.setHpr(0,0,225)
|
||
|
||
flip 5-base.localAvatar.setHpr(0,0,270)
|
||
|
||
flip 6-base.localAvatar.setHpr(0,0,315)
|
||
|
||
flip 7-base.localAvatar.setHpr(0,0,360)
|
||
|
||
moon walk-base.localAvatar.b_setAnimState('walk')
|
||
|
||
moon run- base.localAvatar.b_setAnimState('run')
|
||
|
||
Weird Cringe thing-base.localAvatar.b_setAnimState('cringe')
|
||
|
||
all gag tracks- base.localAvatar.setTrackAccess((1,1,1,1,1,1,1))
|
||
|
||
all gag tracks bonus-base.localAvatar.setTrackBonusLevel((1,1,1,1,1,1,1))
|
||
|
||
gives u full laff when ur not full-base.localAvatar.toonUp(137)
|
||
|
||
lay on ur back- base.localAvatar.setHpr(0,90,0)
|
||
|
||
lay on ur face-base.localAvatar.setHpr(0,270,0)
|
||
|
||
go to funny farms-base.cr.sendSetZoneMsg(7000)
|
||
|
||
leave funny farms-base.cr.sendSetZoneMsg(6000)
|
||
|
||
Tp into gag shop-base.cr.sendSetZoneMsg(9504)
|
||
|
||
Teleport into Toon HQ-base.cr.sendSetZoneMsg(1507)
|
||
|
||
Have 137 laff, have to do both codes to work-
|
||
base.localAvatar.setMaxHp(137)
|
||
base.localAvatar.setHp(137)
|
||
|
||
Tp into Flippys Office-base.cr.sendSetZoneMsg(2010)
|
||
|
||
|
||
sorry it ok! lol :)
|
||
|
||
LOL??idk, lol lol
|
||
i have a question? wow so u run ur ttinjector yes and the question is:
|
||
? do what, get on your screen k?bc mine is not working
|
||
|
||
|
||
These codes disconnect u but when u log back on ur in that place
|
||
|
||
|
||
Donalds dock-base.cr.sendSetZoneMsg(1000)
|
||
|
||
Toontown Central-base.cr.sendSetZoneMsg(2000)
|
||
|
||
brrrgh-base.cr.sendSetZoneMsg(3000)
|
||
|
||
Minnies Melodyland-base.cr.sendSetZoneMsg(4000)
|
||
|
||
Daisy Garden- base.cr.sendSetZoneMsg(5000)
|
||
|
||
Goofy Speedway-base.cr.sendSetZoneMsg(8000)
|
||
|
||
Donalds Dreamland-base.cr.sendSetZoneMsg(9000)
|
||
|
||
base.localAvatar.b_setAnimState(('swim'))
|
||
|
||
base.localAvatar.collisionsOff()
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
base.cr.sendSetZoneMsg(11100)
|
||
|
||
|
||
|
||
base.localAvatar.takeDamage((500))
|
||
base.localAvatar.setHpr(0,0,80)
|
||
base.localAvatar.setHpr(0,0,90)
|
||
base.localAvatar.setHpr(0,0,160)
|
||
base.localAvatar.setHpr(0,0,180)
|
||
base.localAvatar.setCogIndex(2)
|
||
base.cr.sendSetZoneMsg(11100) sellbot lobby
|
||
base.cr.sendSetZoneMsg(11500) Sellbot Factory
|
||
base.cr.sendSetZoneMsg(509718)
|
||
base.cr.sendSetZoneMsg(12100) cashbot lobby
|
||
base.cr.sendSetZoneMsg(10100) bossbot lobby
|
||
base.cr.sendSetZoneMsg(13100) lawbot lobby
|
||
base.localAvatar.setPinkSlips((1))
|
||
base.cr.sendSetZoneMsg(7000) - funny farm
|
||
base.localAvatar.b_setAnimState(('swim')) - swim in air
|
||
base.localAvatar.b_setAnimState(('run')) - run in place
|
||
base.localAvatar.b_setAnimState(('walk')) - walk in place
|
||
base.localAvatar.b_setAnimState(('cringe')) - cringe in place lol
|
||
base.localAvatar.enterSitStart()is sit - sit in air
|
||
base.localAvatar.takeDamage(500) - go sad wit full laff (will say u
|
||
have no laff but u rly have full)
|
||
base.localAvatar.collisionsOff() - boundaries off walk through everything
|
||
base.localAvatar.setHpr(0,0,315) - sideways (alter th last number for degree)
|
||
base.localAvatar.setTrackAccess([1,1,1,1,1,1,1])
|
||
base.localAvatar.b_setAnimState('Squish')
|
||
base.localAvatar.b_setAnimState('Push')
|
||
base.localAvatar.b_setAnimState('ReadBook')
|
||
base.localAvatar.b_setAnimState('CloseBook')
|
||
base.localAvatar.b_setAnimState(('GolfGoodPutt'))
|
||
base.localAvatar.b_setAnimState(('GolfBadPutt'))
|
||
base.localAvatar.b_setAnimState(('GolfPuttSwing'))
|
||
base.localAvatar.b_setAnimState(('Flattened'))
|
||
base.localAvatar.b_setAnimState(('Catching'))
|
||
base.localAvatar.b_setAnimState(('victory'))
|
||
base.cr.sendSetZoneMsg(9505)
|
||
base.localAvatar.b_setAnimState(('teleport'))
|
||
|
||
base.cr.sendSetZoneMsg(2513) --- cog suit
|
||
|
||
base.localAvatar.b_setAnimState(('ScientistWork'))
|
||
|
||
base.localAvatar.b_setAnimState(('ScientistJealous')) ---silly meter
|
||
|
||
base.cr.sendSetZoneMsg(9505)
|
||
base.localAvatar.setEmoteAccess([1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1])
|
||
base.cr.sendSetZoneMsg(10339)
|
||
|
||
|
||
base.localAvatar.b_setAnimState(('TeleportOut'))
|
||
base.localAvatar.b_setAnimState(('Died'))
|
||
|
||
base.localAvatar.setTeleportAccess([1000, 2000, 3000, 4000, 5000,
|
||
6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000,
|
||
5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
|
||
|
||
Fritz
|
||
|
||
|
||
base.localAvatar.b_setAnimState(('victory'))
|
||
base.localAvatar.b_setAnimState(('ScientistWork'))
|
||
base.localAvatar.b_setAnimState(('ScientistPlay'))
|
||
base.localAvatar.b_setAnimState('ScientistLessWork')
|
||
base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
base.localAvatar.b_setAnimState(('GolfPuttLoop'))
|
||
base.localAvatar.b_setAnimState(('GolfGoodPutt')
|
||
base.localAvatar.b_setAnimState(('GolfPuttSwing'))
|
||
base.localAvatar.b_setAnimState(('GolfBadPutt'))
|
||
base.localAvatar.b_setAnimState(('Catching'))
|
||
base.localAvatar.b_setAnimState('ReadBook')
|
||
base.localAvatar.b_setAnimState(('Flattened'))
|
||
base.localAvatar.b_setAnimState(('Died'))
|
||
base.localAvatar.b_setAnimState(('dive'))
|
||
base.localAvatar.b_setAnimState('CatchEating')
|
||
base.localAvatar.b_setAnimState('TeleportOut')
|
||
base.localAvatar.b_setAnimState('TeleportIn')
|
||
base.localAvatar.b_setAnimState(('GolfRotateRight'))
|
||
base.localAvatar.b_setAnimState(('GolfRotateLeft'))
|
||
base.localAvatar.b_setAnimState(('CogThiefRunning'))
|
||
base.localAvatar.b_setAnimState(('jumpSquat'))
|
||
base.localAvatar.b_setAnimState(('OpenBook'))
|
||
base.localAvatar.b_setAnimState(('FallDown'))
|
||
base.localAvatar.b_setAnimState(('TeleportingOut'))
|
||
base.localAvatar.b_setAnimState(('Sleep')
|
||
base.localAvatar.setCheesyEffect(3,0,0)
|
||
base.messenger.send('clearOutToonInterior')
|
||
base.localAvatar.physControls.avatarControlForwardSpeed=200
|
||
|
||
base.localAvatar.physControls.avatarControlRotateSpeed=100
|
||
|
||
base.localAvatar.physControls.avatarControlReverseSpeed=200
|
||
|
||
base.localAvatar.physControls.avatarControlJumpForce = 150
|
||
base.localAvatar.setXYZH(-60.173, -8.817, 1.227, 99.147)-ttc gazeebo
|
||
base.localAvatar.setXYZH(0.197, -1.698, 3.362, 90.737) - ttc stairs
|
||
base.localAvatar.setXYZH(-118.583, 62.454, 24.603,-1219.699) - pet shop ttc
|
||
base.localAvatar.setXYZH(-83.642, -90.233, 25.336, -728.746) - GAG SHOP TTC-
|
||
base.localAvatar.setXYZH(33.977, -150.424, 3.025, 143.147) - S.S street ttc
|
||
base.localAvatar.setXYZH(-144.263, 4.647, 0.252, 84.718 ) - loopy lane ttc
|
||
base.localAvatar.setXYZH(-48.280, 87.749, 0.525, -13.600) - punchline ttc
|
||
base.localAvatar.setXYZH(15.772, 44.632, 3.825, -235.062) - sitting area ttc
|
||
base.localAvatar.setXYZH(-25.464, 4.378, 5.763, 278.846) - ddl island
|
||
base.localAvatar.setXYZH(75.864, 32.121, 26.683, -193.404)-TTC BANK
|
||
base.localAvatar.setXYZH(33.007, 30.181, 3.698, 141.066) - HQ
|
||
base.localAvatar.setXYZH(-61.060, -8.576, 16.798, 119.111) on top of arch
|
||
base.localAvatar.setXYZH(-90.862, -83.304, 6.955, -1819.017) - gag shop rip
|
||
base.localAvatar.setXYZH(60.613, -28.162, 38.265, 811.075) - roof of library
|
||
base.localAvatar.setXYZH(118.364, 1.339, 67.339, 1172.075) - very top of toon hall
|
||
base.localAvatar.setXYZH(18.581, -49.105, 12.045, 1453.850) - flower pot
|
||
base.localAvatar.setXYZH(75.263, 25.442, 24.960, 1193.982) - roof of bank
|
||
|
||
|
||
------------toontown estate cords----------------------------
|
||
base.localAvatar.setXYZH(44.834, 82.225, 22.190, 284.419) - pink house
|
||
base.localAvatar.setXYZH(65.880, 10.842, 31.965, 262.562) - blue house
|
||
base.localAvatar.setXYZH(84.289, -79.017, 24.069, 120.691) -green house
|
||
base.localAvatar.setXYZH(-69.684, -125.659, 23.254, 477.882) - purple house
|
||
base.localAvatar.setXYZH(-32.025, 27.665, 11.477, 105.826) - yellow house
|
||
base.localAvatar.setXYZH(-56.939, -34.610, 28.106, -717.942) - red house
|
||
base.localAvatar.setXYZH(17.722, -143.701, -9.975, -880.455) - estate pond
|
||
------------------------------------------------------------------------------
|
||
|
||
base.localAvatar.setTickets(800) - ticket code change 800 - 100000
|
||
base.localAvatar.setGhostMode(2) - ghost mode change 0 not to be ghost
|
||
base.localAvatar.setEmoteAccess([1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1]) - all emotes
|
||
base.localAvatar.setName(('put the name here')) = cahnge name
|
||
messenger.send('nameTagShowAvId')
|
||
base.localAvatar.setBankMoney(10000) - jelly bean
|
||
base.localAvatar.setMaxBankMoney(10000) - another jelly bean
|
||
base.localAvatar.setMoney(10000)
|
||
base.localAvatar.setMaxMoney(10000)
|
||
base.localAvatar.setQuestCarryLimit(4) - CARRY 4 TASK
|
||
base.localAvatar.setExperience('9999999999999999999')
|
||
base.localAvatar.setTrackAccess([1,1,1,1,1,1,1]) - all tracks
|
||
base.localAvatar.setCheesyEffect(14, 0, 0) - snow man head
|
||
base.localAvatar.setCogIndex(1)--- for lawbot
|
||
base.localAvatar.setCogIndex(2)---- for cash bot
|
||
base.localAvatar.setCogIndex(3) ----for sellbot
|
||
base.localAvatar.setCogIndex(0) --- for bossbot
|
||
base.localAvatar.setCogMerits([100,60,40,20])
|
||
|
||
base.localAvatar.setCogIndex = 1 (2,3,4)
|
||
base.localAvatar.setMerits(0,0,0,0)
|
||
base.localAvatar.setCogLevels([49, 49, 49, 49])
|
||
base.localAvatar.setCogTypes([7,7,7,7])
|
||
base.localAvatar.setCogParts([0, 0, 56447, 56411]) - BIG COG
|
||
|
||
|
||
|
||
base.localAvatar.setCogParts([56444, 56447, 56447, 56411])
|
||
import toontown
|
||
def new():
|
||
return True
|
||
def new2(*a,**k):
|
||
return 2
|
||
base.cr.isPaid = new
|
||
base.cr.isParentPasswordSet = new
|
||
toontown.toon.LocalToon.LocalToon.getGameAccess = new2
|
||
base.cr.isPaid
|
||
base.cr.isParentPasswordSet
|
||
toontown.toon.LocalToon.LocalToon.getGameAccess
|
||
import toontown
|
||
def enter():
|
||
return 1
|
||
base.cr.isTestServer = enter
|
||
|
||
base.localAvatar.setTrackAccess([1,1,1,1,1,1,1])
|
||
base.localAvatar.setTrackBonusLevel([7,7,7,7,7,7,7])
|
||
base.localAvatar.setPetTrickPhrases([0,1,2,3,4,5,6])
|
||
base.localAvatar.setEmoteAccess([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,0,0,0,0,21,22,23,24,25])
|
||
|
||
base.cr.sendSetZoneMsg(7000)
|
||
base.cr.sendSetZoneMsg(2520)
|
||
|
||
base.localAvatar.b_setAnimState('Sad')
|
||
base.localAvatar.b_setAnimState('Sit')
|
||
base.localAvatar.b_setAnimState('swim')
|
||
base.localAvatar.b_setAnimState('Died')
|
||
base.localAvatar.b_setAnimState('ScientistPlay')
|
||
base.localAvatar.b_setAnimState('Catching')
|
||
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.collisionsOn()
|
||
|
||
base.localAvatar.setHpr(0,0,315)
|
||
|
||
base.localAvatar.setTickets(100000)
|
||
|
||
base.localAvatar.b_setAnimState('Flattened')
|
||
base.localAvatar.b_setAnimState('Squish')
|
||
base.localAvatar.b_setAnimState('walk')
|
||
base.localAvatar.b_setAnimState('run')
|
||
base.localAvatar.b_setAnimState('GolfPuttLoop')
|
||
base.localAvatar.b_setAnimState('GolfGoodPutt')
|
||
base.localAvatar.b_setAnimState('GolfBadPutt')
|
||
base.localAvatar.b_setAnimState('GolfRotateLeft')
|
||
base.localAvatar.b_setAnimState('GolfRotateRight')
|
||
base.localAvatar.b_setAnimState('Push')
|
||
base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
|
||
base.localAvatar.setGhostMode(1)
|
||
base.localAvatar.setGhostMode(0)
|
||
|
||
base.localAvatar.setCogIndex(0)
|
||
|
||
base.wireframeOn()
|
||
|
||
base.localAvatar.setTeleportAccess([1000, 2000, 3000, 4000, 5000, 6000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
base.localAvatar.teleportCheat = 1
|
||
|
||
base.localAvatar.physControls.avatarControlJumpForce = 100
|
||
|
||
base.localAvatar.numPies = 99
|
||
|
||
base.localAvatar.b_setAnimState('CatchEating')
|
||
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 50
|
||
|
||
base.localAvatar.setHp(137)
|
||
base.localAvatar.setMaxHp(137)
|
||
|
||
base.localAvatar.setName('Green Duck')
|
||
|
||
base.localAvatar.b_setAnimState('dive')
|
||
base.localAvatar.b_setAnimState('ScientistLessWork')
|
||
base.localAvatar.b_setAnimState('ScientistWork')
|
||
base.localAvatar.b_setAnimState('ScientistJealous')
|
||
base.localAvatar.b_setAnimState('FallDown')
|
||
base.localAvatar.b_setAnimState('OpenBook')
|
||
base.localAvatar.b_setAnimState('ReadBook')
|
||
|
||
base.localAvatar.setMoney(250)
|
||
base.localAvatar.setMaxMoney(999999)
|
||
|
||
base.localAvatar.takeDamage(137)
|
||
|
||
base.localAvatar.setExperience('73500')
|
||
|
||
|
||
|
||
base.localAvatar.loop('neutral')
|
||
base.localAvatar.loop('angry')
|
||
base.localAvatar.loop('book')
|
||
base.localAvatar.loop('conked')
|
||
base.localAvatar.loop('cringe')
|
||
base.localAvatar.loop('duck')
|
||
base.localAvatar.loop('jump')
|
||
base.localAvatar.loop('throw')
|
||
base.localAvatar.loop('running-jump')
|
||
base.localAvatar.loop('shrug')
|
||
base.localAvatar.loop('sidestep-left')
|
||
base.localAvatar.loop('sidestep-right')
|
||
base.localAvatar.loop('teleport')
|
||
base.localAvatar.loop('walk')
|
||
base.localAvatar.loop('wave')
|
||
base.localAvatar.loop('applause')
|
||
base.localAvatar.loop('bored')
|
||
base.localAvatar.loop('bow')
|
||
base.localAvatar.loop('cast')
|
||
base.localAvatar.loop('castlong')
|
||
base.localAvatar.loop('reel')
|
||
base.localAvatar.loop('confused')
|
||
base.localAvatar.loop('down')
|
||
base.localAvatar.loop('up')
|
||
base.localAvatar.loop('left')
|
||
base.localAvatar.loop('right')
|
||
base.localAvatar.loop('pole')
|
||
base.localAvatar.loop('sad-neutral')
|
||
base.localAvatar.loop('sit')
|
||
base.localAvatar.loop('slip-backward')
|
||
base.localAvatar.loop('slip-forward')
|
||
base.localAvatar.loop('swim')
|
||
base.localAvatar.loop('swing')
|
||
base.localAvatar.loop('think')
|
||
base.localAvatar.loop('tug-o-war')
|
||
base.localAvatar.loop('climb')
|
||
base.localAvatar.loop('firehose')
|
||
base.localAvatar.loop('happy-dance')
|
||
base.localAvatar.loop('hold-bottle')
|
||
base.localAvatar.loop('hold-magnet')
|
||
base.localAvatar.loop('hypnotize')
|
||
base.localAvatar.loop('juggle')
|
||
base.localAvatar.loop('lose')
|
||
base.localAvatar.loop('melt')
|
||
base.localAvatar.loop('smooch')
|
||
base.localAvatar.loop('spit')
|
||
base.localAvatar.loop('sprinkle-dust')
|
||
base.localAvatar.loop('struggle')
|
||
base.localAvatar.loop('tickle')
|
||
base.localAvatar.loop('toss')
|
||
base.localAvatar.loop('water-gun')
|
||
base.localAvatar.loop('callPet')
|
||
base.localAvatar.loop('feedPet')
|
||
base.localAvatar.loop('takePhone')
|
||
base.localAvatar.loop('phoneBack')
|
||
base.localAvatar.loop('phoneNeutral')
|
||
base.localAvatar.loop('sound')
|
||
base.localAvatar.loop('badloop-putt')
|
||
base.localAvatar.loop('bad-putt')
|
||
base.localAvatar.loop('good-putt')
|
||
base.localAvatar.loop('headdown-putt')
|
||
base.localAvatar.loop('into-putt')
|
||
base.localAvatar.loop('lookloop-putt')
|
||
base.localAvatar.loop('look-putt')
|
||
base.localAvatar.loop('loop-putt')
|
||
base.localAvatar.loop('rotateL-putt')
|
||
base.localAvatar.loop('rotateR-putt')
|
||
base.localAvatar.loop('swing-putt')
|
||
base.localAvatar.loop('push')
|
||
base.localAvatar.loop('leverNeutral')
|
||
base.localAvatar.loop('leverPull')
|
||
base.localAvatar.loop('leverReach')
|
||
base.localAvatar.loop('running-jump-land')
|
||
base.localAvatar.loop('pet-start')
|
||
base.localAvatar.loop('pushbutton')
|
||
base.localAvatar.loop('jump-land')
|
||
base.localAvatar.loop('catch-eatneutral')
|
||
base.localAvatar.loop('battlecast')
|
||
base.localAvatar.loop('catch-run')
|
||
base.localAvatar.loop('pet-loop')
|
||
base.localAvatar.loop('jump-squat')
|
||
base.localAvatar.loop('reel-neutral')
|
||
base.localAvatar.loop('pole-neutral')
|
||
base.localAvatar.loop('bank')
|
||
base.localAvatar.loop('scientistGame')
|
||
base.localAvatar.loop('victory')
|
||
base.localAvatar.loop('fish-end')
|
||
base.localAvatar.loop('scientistWork')
|
||
base.localAvatar.loop('scientistJealous')
|
||
base.localAvatar.loop('catch-intro-throw')
|
||
base.localAvatar.loop('curtsy')
|
||
base.localAvatar.loop('loop-dig')
|
||
base.localAvatar.loop('start-dig')
|
||
base.localAvatar.loop('running-jump-squat')
|
||
base.localAvatar.loop('fish-again')
|
||
base.localAvatar.loop('jump-idle')
|
||
base.localAvatar.loop('sad-walk')
|
||
base.localAvatar.loop('running-jump-idle')
|
||
base.localAvatar.loop('catch-neutral')
|
||
|
||
messenger.send('nameTagShowAvId')
|
||
messenger.send('gotoAvatar', [275087539, 'Ozzie', 1])
|
||
|
||
base.localAvatar.physControls.avatarControlRotateSpeed=300
|
||
|
||
base.localAvatar.b_setSC(50205)
|
||
|
||
messenger.send('gardenGame')
|
||
messenger.send('clearOutToonInterior')
|
||
|
||
music = loader.loadMusic("phase_13/audio/bgm/party_generic_theme.mid")
|
||
music.play()
|
||
music.setLoop()
|
||
|
||
messenger.send('rejectTutorial')
|
||
messenger.send('enterStickerBook')
|
||
messenger.send('openFriendsList')
|
||
messenger.send('kickToPlayground', [1])
|
||
from toontown.shtiker.MapPage import MapPage
|
||
gohome = MapPage()
|
||
gohome.goHome()
|
||
base.oobe()
|
||
base.useTrackBall()
|
||
base.useDrive()
|
||
base.localAvatar.setNametagStyle(11)
|
||
base.localAvatar.setCogMerits([100,60,40,20])
|
||
base.localAvatar.setMaxClothes(5000)
|
||
base.localAvatar.setSleepAutoReply(0)
|
||
base.localAvatar.setMaxNPCFriends(5000)
|
||
base.localAvatar.playSplashEffect(0,0,0)
|
||
base.localAvatar.setMaxFishTank(500)
|
||
base.localAvatar.setMaxFlowerBasket(500)
|
||
base.localAvatar.trickOrTreatTargetMet(100)
|
||
base.localAvatar.winterCarolingTargetMet(100)
|
||
base.localAvatar.hitBoss(1000)
|
||
base.localAvatar.destroyGoon()
|
||
base.localAvatar.setVelocity(0)
|
||
base.localAvatar.setAffection(1))
|
||
base.localAvatar.setPlayfullness(1))
|
||
base.localAvatar.setSCResistance(1)
|
||
base.localAvatar.physControls.avatarControlReverseSpeed = 50
|
||
base.localAvatar.b_setToonWillLandInWater(int32/100)
|
||
base.localAvatar.setInventory('49000')
|
||
base.localAvatar.setMaxCarry('49000')
|
||
base.localAvatar.cogMerits=([40, 80, 120, 200])
|
||
base.localAvatar.promoteShovel(3)
|
||
base.localAvatar.promoteWateringCan(3)
|
||
base.localAvatar.setWateringCanSkill(9999)
|
||
base.localAvatar.setShovelSkill(9999)
|
||
base.localAvatar.pageDown()
|
||
base.localAvatar.pageUp()
|
||
render.clearFog()
|
||
base.localAvatar.setBillboardPointEye()
|
||
base.localAvatar.setBillboardPointWorld()
|
||
base.camLens.setNear(9)
|
||
base.camLens.setFov(100, 20)
|
||
base.camLens.setFov(150)
|
||
base.camLens.setFar(2000)
|
||
base.localAvatar.printCamPos()
|
||
base.localAvatar.nextCameraPos(0)
|
||
base.localAvatar.clearBillboard()
|
||
base.localAvatar.lookAt(1,1,1)
|
||
base.localAvatar.setTunnelIn(1, 1, 1, 1, 1, 1)
|
||
base.localAvatar.setTunnelOut(1, 1, 1, 1, 1, 1)
|
||
base.localAvatar.setTunnelIn(1, 10, 10, 10, 100, 100)
|
||
base.localAvatar.setTunnelOut(1, 10, 10, 10, 10, 100, 100)
|
||
base.disableAllAudio()
|
||
base.enableAllAudio()
|
||
base.enableMusic(False)
|
||
base.enableSoundEffects(True)
|
||
base.camLens.setNear(9)
|
||
base.localAvatar.setBillboardAxis()
|
||
base.localAvatar.setEmoteState(22,1)
|
||
base.localAvatar.setWhisperSCCustomFrom(NPC's ID, 90)
|
||
base.localAvatar.getName(285869846)
|
||
base.localAvatar.receiveAcceptGetName('Flippy')
|
||
base.localAvatar.addName(285869846, 'Flippy')
|
||
base.localAvatar.receiveAcceptAddName(285869846)
|
||
ambientlight = AmbientLight('lighting')
|
||
ambientlight.setColor(VBase4(.5, .5, .5, 5))
|
||
attachlight = render.attachNewNode(ambientlight)
|
||
render.setLight(attachlight)
|
||
sky = loader.loadModel("phase_8/models/props/DL_sky.bam")
|
||
sky.reparentTo(render)
|
||
sky.setPos(9, -1, 4)
|
||
sky.setHpr(0,0,0)
|
||
sky.setScale(40)
|
||
messenger.send('periodTimerExpired')
|
||
messenger.send('shift-f1')
|
||
messenger.send('shift-f6')
|
||
messenger.send('minigameAbort')
|
||
messenger.send('control')
|
||
messenger.send('control-alt-arrow_down')
|
||
messenger.send('control-alt-arrow_left')
|
||
messenger.send('control-alt-arrow_up')
|
||
messenger.send('control-alt-arrow_right')
|
||
messenger.send('f9')
|
||
messenger.send('panda3d-render-error')
|
||
messenger.send('requestSkipTutorial')
|
||
messenger.send('PandaRestarted')
|
||
messenger.send('PandaPaused')
|
||
messenger.send('arrow_right')
|
||
messenger.send('arrow_up')
|
||
messenger.send('arrow_down')
|
||
messenger.send('arrow_left')
|
||
messenger.send('updateWhilelist')
|
||
messenger.send([base.localAvatar.b_setAnimState('victory', 28)])
|
||
messenger.send('end')
|
||
messenger.send('end-up')
|
||
messenger.send('leavingRace')
|
||
messenger.send('enterNormalChat')
|
||
messenger.send('escape')
|
||
messenger.send('f7')
|
||
messenger.send('f8')
|
||
messenger.send('force-forward')
|
||
messenger.send('force-forward-stop')
|
||
messenger.send('force-turnLeft')
|
||
messenger.send('force-turnLeft-stop')
|
||
messenger.send('force-turnRight')
|
||
messenger.send('force-turnRight-stop')
|
||
messenger.send('jumpHardLand')
|
||
messenger.send('jumpLand')
|
||
messenger.send('jumpStart')
|
||
messenger.send('page_up')
|
||
messenger.send('page_down')
|
||
messenger.send('tab')
|
||
messenger.send('system message aknowledge')
|
||
messenger.send('home')
|
||
messenger.send('home-up')
|
||
messenger.send('enterFlowerSellBox')
|
||
messenger.send('DistributedBlackCatMgr-activate')
|
||
base.localAvatar.setHeight(2)
|
||
base.localAvatar.setRefillThrow()
|
||
base.localAvatar.enterSad()
|
||
base.localAvatar.enterHappy()
|
||
base.localAvatar.enterDied()
|
||
base.localAvatar.enterScientistEmcee()
|
||
base.localAvatar.enterPush()
|
||
base.localAvatar.enterScientistLessWork()
|
||
base.localAvatar.enterFlattened()
|
||
base.localAvatar.enterSwimHold()
|
||
base.localAvatar.exitSad()
|
||
base.localAvatar.exitHappy()
|
||
base.localAvatar.exitDied()
|
||
base.localAvatar.exitScientistEmcee()
|
||
base.localAvatar.exitPush()
|
||
base.localAvatar.exitScientistLessWork()
|
||
base.localAvatar.exitFlattened()
|
||
base.localAvatar.exitSwimHold()
|
||
base.localAvatar.setSpeedChatStyleIndex(1)
|
||
base.localAvatar.thinkPos()
|
||
base.localAvatar.nextCameraPos(0)
|
||
base.talkAssistant.sendWhisperTalk('Hello ' * 50, 285960783)
|
||
base.localAvatar.b_setAnimState('jumpAirborne')
|
||
base.localAvatar.b_setAnimState('jumpLand')
|
||
base.localAvatar.b_setAnimState('jumpSquat')
|
||
base.localAvatar.setBestHeightInfo(2000)
|
||
base.localAvatar.setLastHood(2000)
|
||
base.localAvatar.localAvatar.cogLevels=[49, 49, 49, 49]
|
||
base.localAvatar.setCogSummonsEarned([7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7])
|
||
base.localAvatar.setCogParts([20, 80, 56447, 56411])
|
||
base.localAvatar.swapToonLegs("CatLegs250Polys")
|
||
base.localAvatar.setNametagScale(2)
|
||
base.localAvatar.setWalkSpeedSlow()
|
||
base.localAvatar.setWalkSpeedNormal()
|
||
base.localAvatar.setRenderModeWireframe()
|
||
anim1 = base.localAvatar.getAnimControl('swing', 'legs')
|
||
anim1.play()
|
||
base.localAvatar.physControls.avatarControlJumpForce = .1
|
||
base.localAvatar.physControls.setGravity(.00001)
|
||
base.cr.waitForDatabaseTimeout()
|
||
base.cr.networkPlugPulled()
|
||
base.cr.pullNetworkPlug()
|
||
base.cr.restoreNetworkPlug()
|
||
base.cr.toons.flush()
|
||
messenger.send('last')
|
||
messenger.send('next')
|
||
messenger.send('releaseDirector')
|
||
messenger.send('closetAsleep')
|
||
messenger.send([base.cr.sendSetZoneMsg(7000)], [base.localAvatar.doId, 272503222, 'starkit', 1])
|
||
messenger.send('gotoAvatar', [base.localAvatar.doId, 'you', 1])
|
||
messenger.send('avatarDetails', [base.localAvatar.doId, 'Mickey', 1])
|
||
messenger.send('friendAvatar', [284720681, 'Fireball', 1])
|
||
base.localAvatar.setFishingTrophies([0,1,2,3,4,5,6])
|
||
from direct.showbase import DirectObject
|
||
class Collision(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f1',self.Collision)
|
||
def Collision(self):
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setSystemMessage(0, 'Collisions Off')
|
||
c = Collision()
|
||
gloves = loader.loadTexture("phase_5.5/maps/windowView_Stars2.jpg")
|
||
base.localAvatar.findAllMatches('**/hands').setTexture(gloves, 1)
|
||
gloves = loader.loadTexture("phase_5.5/maps/flakes_border.jpg")
|
||
base.localAvatar.findAllMatches('**/hands').setTexture(gloves, 1)
|
||
base.localAvatar.setFriendsList([(236031563, 1)])
|
||
base.localAvatar.showShovelButton()
|
||
base.localAvatar.showNormalMuzzle()
|
||
base.localAvatar.showAngryMuzzle()
|
||
base.localAvatar.showSmileMuzzle()
|
||
base.localAvatar.showSadMuzzle()
|
||
base.localAvatar.showLaughMuzzle()
|
||
base.localAvatar.showSurpriseMuzzle()
|
||
base.localAvatar.showTightBounds()
|
||
base.localAvatar.showWateringCanButton()
|
||
base.localAvatar.showCS()
|
||
base.localAvatar.showGardeningGui()
|
||
base.localAvatar.showFurnitureGui()
|
||
base.localAvatar.showAllBounds()
|
||
base.localAvatar.showNametag2d()
|
||
base.localAvatar.showNametag3d()
|
||
base.localAvatar.showShadow()
|
||
base.localAvatar.showAllDescendants()
|
||
base.localAvatar.hideShovelButton()
|
||
base.localAvatar.hideNormalMuzzle()
|
||
base.localAvatar.hideAngryMuzzle()
|
||
base.localAvatar.hideSmileMuzzle()
|
||
base.localAvatar.hideSadMuzzle()
|
||
base.localAvatar.hideLaughMuzzle()
|
||
base.localAvatar.hideSurpriseMuzzle()
|
||
base.localAvatar.hideBounds()
|
||
base.localAvatar.hideWateringCanButton()
|
||
base.localAvatar.hideCS()
|
||
base.localAvatar.hideGardeningGui()
|
||
base.localAvatar.hideFurnitureGui()
|
||
base.localAvatar.hideAllBounds()
|
||
base.localAvatar.hideNametag2d()
|
||
base.localAvatar.hideNametag3d()
|
||
base.localAvatar.clearRenderMode()
|
||
base.localAvatar.hideShadow()
|
||
base.localAvatar.startStareAtHeadPoint(1)
|
||
base.localAvatar.forceGotoSleep()
|
||
base.localAvatar.flush()
|
||
base.localAvatar.enterEyelidsClosed()
|
||
base.localAvatar.exitEyelidsClosed()
|
||
base.localAvatar.enterEyelidsSurprised()
|
||
base.localAvatar.exitEyelidsSurprised()
|
||
base.localAvatar.enterEyelidsSad()
|
||
base.localAvatar.exitEyelidsSad()
|
||
base.localAvatar.newCatalogNotify(1)
|
||
base.localAvatar.setControlEffect('sit', 0.65)
|
||
base.localAvatar.setControlEffect('swim', 0.8)
|
||
messenger.send('avatarDetails', [280215860, 'Toon Troop Travis', 1])
|
||
messenger.send('friendAvatar', [base.localAvatar.doId, '', 1])
|
||
messenger.send('gotoAvatar', [base.localAvatar.doId, '', 1])
|
||
Michael Boomer
|
||
0711-8756-7426-2713
|
||
|
||
#real membership
|
||
|
||
base.launcher.setPaidUserLoggedIn()
|
||
|
||
#fast access
|
||
|
||
import toontown
|
||
def new():
|
||
return True
|
||
def new2(*a,**k):
|
||
return 2
|
||
base.cr.isPaid = new
|
||
base.cr.isParentPasswordSet = new
|
||
toontown.toon.LocalToon.LocalToon.getGameAccess = new2
|
||
base.cr.isPaid
|
||
base.cr.isParentPasswordSet
|
||
toontown.toon.LocalToon.LocalToon.getGameAccess
|
||
def white():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1.0,1.0,1.0)
|
||
base.localAvatar.setSystemMessage(1,'White gloves enabled!')
|
||
def black():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.20,0.20,0.3)
|
||
base.localAvatar.setSystemMessage(1,'Black gloves enabled!')
|
||
def red():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.97,0.3,0.3)
|
||
base.localAvatar.setSystemMessage(1,'Red gloves enabled!')
|
||
def pink():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.96,0.7,0.7)
|
||
base.localAvatar.setSystemMessage(1,'Pink gloves enabled!')
|
||
def purple():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.69,0.29,0.95)
|
||
base.localAvatar.setSystemMessage(1,'Purple gloves enabled!')
|
||
def green():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.4,1,0.4)
|
||
base.localAvatar.setSystemMessage(1,'Green gloves enabled!')
|
||
def yellow():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1,0.95,0.3)
|
||
base.localAvatar.setSystemMessage(1,'Yellow gloves enabled!')
|
||
def darkblue():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.35,0.35,0.85)
|
||
base.localAvatar.setSystemMessage(1,'Dark blue gloves enabled!')
|
||
def blue():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.3,0.64,0.85)
|
||
base.localAvatar.setSystemMessage(1,'Blue gloves enabled!')
|
||
def orange():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1,0.5,0.18)
|
||
base.localAvatar.setSystemMessage(1,'Orange gloves enabled!')
|
||
def cream():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1,1,0.57)
|
||
base.localAvatar.setSystemMessage(1,'Cream gloves enabled!')
|
||
def perwinkle():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.55,0.55,1)
|
||
base.localAvatar.setSystemMessage(1,'Perwinkle gloves enabled!')
|
||
def gray():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.70,0.70,0.70)
|
||
base.localAvatar.setSystemMessage(1,'Gray gloves enabled!')
|
||
def sideways():
|
||
base.localAvatar.setHpr(0,0,315)
|
||
base.localAvatar.setSystemMessage(1,'Toon rotated to sideways style.')
|
||
base.accept("f2", normal, [])
|
||
def normal():
|
||
base.localAvatar.setHpr(0,0,0)
|
||
base.localAvatar.setSystemMessage(1,'Toon rotated to normal.')
|
||
base.accept("f2", sideways, [])
|
||
def aron():
|
||
messenger.send('force-forward')
|
||
base.accept("insert", aroff, [])
|
||
def aroff():
|
||
messenger.send('force-forward-stop')
|
||
base.accept("insert", aron, [])
|
||
from direct.interval.IntervalGlobal import *
|
||
def nosleep():
|
||
messenger.send('wakeup')
|
||
def ens():
|
||
wake = Sequence()
|
||
wake.append(Func(nosleep))
|
||
wake.append(Wait(.1))
|
||
wake.append(Func(ens))
|
||
wake.start()
|
||
ens()
|
||
def coloff():
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setSystemMessage(1,'Walk over walls enabled.')
|
||
base.accept("f1", colon, [])
|
||
def colon():
|
||
base.localAvatar.collisionsOn()
|
||
base.localAvatar.setSystemMessage(1,'Walk over walls disabled.')
|
||
base.accept("f1", coloff, [])
|
||
def faston():
|
||
base.localAvatar.physControls.avatarControlReverseSpeed =50
|
||
base.localAvatar.physControls.avatarControlRotateSpeed =80
|
||
base.localAvatar.physControls.avatarControlJumpForce = 35
|
||
base.localAvatar.physControls.setGravity(65)
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 60
|
||
base.localAvatar.setSystemMessage(1,'Fast toon and april fools gravity enabled.')
|
||
base.accept("f4", fastoff, [])
|
||
def fastoff():
|
||
base.localAvatar.physControls.avatarControlReverseSpeed =10
|
||
base.localAvatar.physControls.avatarControlRotateSpeed =80
|
||
base.localAvatar.physControls.avatarControlJumpForce = 20
|
||
base.localAvatar.physControls.setGravity(50)
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 17
|
||
base.localAvatar.setSystemMessage(1,'Fast toon and april fools gravity disabled.')
|
||
base.accept("f4", faston, [])
|
||
def resistance():
|
||
base.localAvatar.setSCResistance(1)
|
||
base.localAvatar.setSCResistance(1)
|
||
base.localAvatar.setSCResistance(1)
|
||
base.localAvatar.setTeleportAccess([1000, 2000, 3000, 4000, 5000, 6000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
base.localAvatar.teleportCheat = 1
|
||
base.localAvatar.physControls.avatarControlJumpForce = 50
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 50
|
||
base.localAvatar.physControls.avatarControlRotateSpeed = 50
|
||
base.localAvatar.physControls.avatarControlReverseSpeed = 50
|
||
base.localAvatar.setTrackAccess([1,1,1,1,1,1,1])
|
||
base.localAvatar.setPetTrickPhrases([0,1,2,3,4,5,6])
|
||
base.localAvatar.setEmoteAccess([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,0,0,0,0,21,22,23,24,25])
|
||
base.localAvatar.setMaxClothes(5000)
|
||
base.localAvatar.setCogMerits([100,60,40,20])
|
||
base.localAvatar.setSleepAutoReply(0)
|
||
base.localAvatar.setMaxNPCFriends(5000)
|
||
base.localAvatar.setMaxFishTank(500)
|
||
base.localAvatar.setMaxFlowerBasket(500)
|
||
base.localAvatar.setSystemMessage(1,'Everything allowed and Ban Blocker enabled.')
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.97,0.3,0.3)
|
||
base.localAvatar.setSystemMessage(1,'Red Gloves put at hands.')
|
||
base.accept("f1", coloff, [])
|
||
base.accept("f2", sideways, [])
|
||
base.accept("f3", messenger.send, ['nameTagShowAvId'])
|
||
base.accept("f4", faston, [])
|
||
base.accept("f5", resistance, [])
|
||
base.accept("f12", base.localAvatar.b_setSC, [50205])
|
||
base.accept("f11", base.localAvatar.b_setSC, [50202])
|
||
base.accept("f10", base.localAvatar.b_setSC, [50704])
|
||
base.accept("`", white, [])
|
||
base.accept("0", black, [])
|
||
base.accept("1", red, [])
|
||
base.accept("2", pink, [])
|
||
base.accept("3", purple, [])
|
||
base.accept("4", green, [])
|
||
base.accept("5", yellow, [])
|
||
base.accept("6", darkblue, [])
|
||
base.accept("7", blue, [])
|
||
base.accept("8", orange, [])
|
||
base.accept("9", cream, [])
|
||
base.accept("f6", perwinkle, [])
|
||
base.accept("f7", gray, [])
|
||
base.accept("insert", aron, [])
|
||
base.accept("shift", base.localAvatar.thinkPos, [])
|
||
base.localAvatar.setSystemMessage(1,'Hotkeys enabled.')
|
||
base.localAvatar.setNametagStyle(11)
|
||
base.localAvatar.setSystemMessage(1,'Nametag font changed.')
|
||
anim = base.localAvatar.b_setAnimState
|
||
talk = base.talkAssistant.sendOpenTalk
|
||
loop = base.localAvatar.loop
|
||
coff = base.localAvatar.collisionsOff
|
||
con = base.localAvatar.collisionsOn
|
||
zone = base.cr.sendSetZoneMsg
|
||
emote = base.localAvatar.b_setEmoteState
|
||
server = messenger.send
|
||
avatar = base.localAvatar
|
||
local = base.cr
|
||
cog = base.localAvatar.setCogIndex
|
||
coords = base.localAvatar.setXYZH
|
||
height = base.localAvatar.setZ
|
||
findhands = base.localAvatar.findAllMatches('**/hands')
|
||
findneck = base.localAvatar.findAllMatches('**/neck')
|
||
findhead = base.localAvatar.findAllMatches('**/head')
|
||
findhfront = base.localAvatar.findAllMatches('**/head-front')
|
||
findshirt = base.localAvatar.findAllMatches('**/torso-top')
|
||
findsleeves = base.localAvatar.findAllMatches('**/sleeves')
|
||
findshort = base.localAvatar.findAllMatches('**/torso-bot')
|
||
findskirt = base.localAvatar.findAllMatches('**/torso-bot')
|
||
findfeet = base.localAvatar.findAllMatches('**/feet')
|
||
findlegs = base.localAvatar.findAllMatches('**/legs')
|
||
findarms = base.localAvatar.findAllMatches('**/arms')
|
||
findnose = base.localAvatar.findAllMatches('**/nose')
|
||
findface = base.localAvatar.findAllMatches('**/muzzle')
|
||
name = base.localAvatar.setName
|
||
find = base.localAvatar.findAllMatches
|
||
sc = base.localAvatar.b_setSC
|
||
scs = base.localAvatar.b_setSCCustom
|
||
base.localAvatar.setSystemMessage(1,'Shorten codes enabled.')
|
||
|
||
#scarecrow
|
||
|
||
base.localAvatar.collisionsOff()
|
||
base.cr.sendSetZoneMsg(7000)
|
||
base.localAvatar.b_setAnimState('teleport')
|
||
base.cr.sendSetZoneMsg(2000)
|
||
|
||
#zone IDs
|
||
base.cr.sendSetZoneMsg(1000)# - donald's dock
|
||
base.cr.sendSetZoneMsg(2000)# - toontown central
|
||
base.cr.sendSetZoneMsg(3000)# - the brrrgh
|
||
base.cr.sendSetZoneMsg(4000)# - minnie's melodyland
|
||
base.cr.sendSetZoneMsg(5000)# - daisy's gardens
|
||
base.cr.sendSetZoneMsg(6000)# - chip 'n dale
|
||
base.cr.sendSetZoneMsg(7000)# - funny farm
|
||
base.cr.sendSetZoneMsg(8000)# - goofy speedway
|
||
base.cr.sendSetZoneMsg(9000)# - donald's dreamland
|
||
base.cr.sendSetZoneMsg(10000)# - bossbot hq
|
||
base.cr.sendSetZoneMsg(11000)# - sellbot hq
|
||
base.cr.sendSetZoneMsg(12000)# - cashbot hq
|
||
base.cr.sendSetZoneMsg(13000)# - lawbot hq
|
||
base.cr.sendSetZoneMsg(11100)# - sellbot lobby
|
||
base.cr.sendSetZoneMsg(12100)# - cashbot lobby
|
||
base.cr.sendSetZoneMsg(13100)# - lawbot lobby
|
||
base.cr.sendSetZoneMsg(10100)# - bossbot clubhouse
|
||
base.cr.sendSetZoneMsg(11200)# - sellbot factory
|
||
base.cr.sendSetZoneMsg(9504)# - donalds dreamland gag shop
|
||
base.cr.sendSetZoneMsg(2521)# - toontown central clothes shop
|
||
base.cr.sendSetZoneMsg(2522)# - toontown central pet shop
|
||
base.cr.sendSetZoneMsg(1508)# - donald's dock clothes shop
|
||
base.cr.sendSetZoneMsg(1506)# - donald's dock gag shop
|
||
base.cr.sendSetZoneMsg(2519)# - toontown central gag shop
|
||
base.cr.sendSetZoneMsg(2514)# - toontown bank
|
||
base.cr.sendSetZoneMsg(1507)# - donald dock toon hq
|
||
base.cr.sendSetZoneMsg(3607)# - lil oldman
|
||
base.cr.sendSetZoneMsg(3621)# - sticky george
|
||
base.cr.sendSetZoneMsg(3621)# - hysterical harry
|
||
base.cr.sendSetZoneMsg(3627)# - snooty sinjin
|
||
base.cr.sendSetZoneMsg(3629)# - chicken boy
|
||
base.cr.sendSetZoneMsg(3636)# - gus gooseburger
|
||
base.cr.sendSetZoneMsg(3638)# - toboggan ted
|
||
base.cr.sendSetZoneMsg(3643)# - lounge lassard
|
||
base.cr.sendSetZoneMsg(3653)# - creepy carl
|
||
base.cr.sendSetZoneMsg(3721)# - bumpy noggin
|
||
base.cr.sendSetZoneMsg(3722)# - vidalia vavoom
|
||
base.cr.sendSetZoneMsg(3728)# - simian sam
|
||
base.cr.sendSetZoneMsg(3730)# - wynne chill
|
||
base.cr.sendSetZoneMsg(3732)# - grumpy phil
|
||
base.cr.sendSetZoneMsg(3808)# - johnny cashmere
|
||
base.cr.sendSetZoneMsg(3813)# - march harry
|
||
base.cr.sendSetZoneMsg(2513)# - flippy
|
||
base.cr.sendSetZoneMsg(2518)# - librarian larry
|
||
base.cr.sendSetZoneMsg(2516)# - professor pete
|
||
base.cr.sendSetZoneMsg(2656)# - loony louis
|
||
base.cr.sendSetZoneMsg(2629)# - honey haha
|
||
base.cr.sendSetZoneMsg(2708)# - sticky lou
|
||
base.cr.sendSetZoneMsg(2729)# - professor wiggle
|
||
base.cr.sendSetZoneMsg(2729)# - sharky jones
|
||
base.cr.sendSetZoneMsg(2655)# - woody nickel
|
||
base.cr.sendSetZoneMsg(2660)# - feather duster
|
||
base.cr.sendSetZoneMsg(2610)# - dr. tom
|
||
base.cr.sendSetZoneMsg(2711)# - postmaster pete
|
||
base.cr.sendSetZoneMsg(2705)# - will wiseacre
|
||
base.cr.sendSetZoneMsg(2712)# - charlie chortle
|
||
base.cr.sendSetZoneMsg(2804)# - dr. pulyurleg
|
||
base.cr.sendSetZoneMsg(2520)# - toon hq
|
||
base.cr.sendSetZoneMsg(1612)# - captain carl
|
||
base.cr.sendSetZoneMsg(1606)# - admiral hook
|
||
base.cr.sendSetZoneMsg(1617)# - doctor squall
|
||
base.cr.sendSetZoneMsg(1627)# - billy budd
|
||
base.cr.sendSetZoneMsg(1710)# - barnacle barbara
|
||
base.cr.sendSetZoneMsg(1712)# - rocky shores
|
||
base.cr.sendSetZoneMsg(1713)# - art
|
||
base.cr.sendSetZoneMsg(1725)# - ahab
|
||
base.cr.sendSetZoneMsg(1604)# - mrs. starch
|
||
base.cr.sendSetZoneMsg(1621)# - cal estenicks
|
||
base.cr.sendSetZoneMsg(1826)# - claggart
|
||
base.cr.sendSetZoneMsg(1828)# - alice
|
||
base.cr.sendSetZoneMsg(1832)# - melville
|
||
base.cr.sendSetZoneMsg(4612)# - dr. fret
|
||
base.cr.sendSetZoneMsg(4626)# - cleff
|
||
#stopped at base.cr.sendSetZoneMsg(3826)
|
||
|
||
#colored gloves
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.97,0.3,0.3)# - red
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.96,0.7,0.7)# - pink
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1,0.44,1)# - pinkish
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.86,0.4,0.42)# - pink 2
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.69,0.29,0.95)# - purple
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.44,0,1)# - neon purple
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.4,1,0.4)# - green
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.44,1,0)# - neon green 1
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.0,1.0,0.0)# - neon green 2
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.2,0.3,0.11)# - rusty green
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.55,0.82,0.32)# - lime green
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1,0.95,0.3)# - yellow
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.28,0.33,0.73)# - dark blue
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.3,0.64,0.85)# - blue
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.44,1,1)# - blue 2
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.43,0.9,0.84)# - blue 3
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0,0.44,1)# - weird blue
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0,0.44,0.44)# - rusty aqua
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1,0.5,0.18)# - orange
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1,1,0.57)# - cream
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.55,0.55,1)# - perwinkle
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.70,0.70,0.70)# - gray
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1.0,1.0,1.0)# - white
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.20,0.20,0.3)# - black
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0,0,0.4)# - ink
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.38,0.72,0.72)# - aqua
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.35,1,0.85)# - aqua 2
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.62,0.26,0.36)# - red, pinkish
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.35,0,0.1)# - rusty red, pinkish
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.64,0.35,0.27)# - brown
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.72,1,0.36)# - olive
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.57,0.45,0.16)# - swamp
|
||
|
||
#ta
|
||
sgcs = base.cr.doFindAll("render/Short Greencat Short")
|
||
for sgcs in base.cr.doFindAll("render/Short Greencat Short"):
|
||
sgcs.findAllMatches('**/hands').setColor(0.992, 0.48, 0.168, 1)
|
||
mm = base.cr.doFindAll("render/Magic Maker")
|
||
for mm in base.cr.doFindAll("render/Magic Maker"):
|
||
mm.findAllMatches('**/hands').setColor(1,0.95,0.3, 1)
|
||
fd = base.cr.doFindAll("render/Fd Green Cat Fd")
|
||
for fd in base.cr.doFindAll("render/Fd Green Cat Fd"):
|
||
fd.findAllMatches('**/hands').setColor(0.97,0.3,0.3, 1)
|
||
d = base.cr.doFindAll("render/Disyer")
|
||
for d in base.cr.doFindAll("render/Disyer"):
|
||
d.findAllMatches('**/hands').setColor(0.64,0.35,0.27)
|
||
cb = base.cr.doFindAll("render/Captain Butch")
|
||
for cb in base.cr.doFindAll("render/Captain Butch"):
|
||
cb.findAllMatches('**/hands').setColor(0.1,0.9,0.99)
|
||
i = base.cr.doFindAll("render/Incorrent")
|
||
for i in base.cr.doFindAll("render/Incorrect"):
|
||
i.findAllMatches('**/hands').setColor(0.69,0.29,0.95)
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
getEmblemSource = loader.loadModel("phase_3.5/models/gui/tt_m_gui_gm_toontroop_whistle.bam")
|
||
getEmblemSource.reparentTo(render)
|
||
getEmblemSource.hide()
|
||
emblem = getEmblemSource.find('**/whistleIcon')
|
||
emblem.reparentTo(fd)
|
||
emblem.show()
|
||
emblem.setScale(3)
|
||
emblem.setZ(1.5)
|
||
emblemSpin = emblem.hprInterval(3, Vec3(360, 0, 0))
|
||
emblemSpin.loop()
|
||
|
||
#talk
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setEmoteState(0,0)
|
||
base.localAvatar.b_setSC(50701)
|
||
def part2():
|
||
base.talkAssistant.sendOpenTalk('LOOK I CAN DO IT TOO')
|
||
base.localAvatar.b_setEmoteState(23,1)
|
||
def part3():
|
||
base.talkAssistant.sendOpenTalk('I AM NOT A ANTIS MEMBER DONT GIVE THE ANTIS CREDIT!')
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part4():
|
||
base.talkAssistant.sendOpenTalk('THE ANTIS FAIL THEY CANT DO ANYTHING DONT BE SCARED THEY CANT HOCK')
|
||
base.localAvatar.b_setEmoteState(24,1)
|
||
def part5():
|
||
base.talkAssistant.sendOpenTalk('YOUR FRIENDS, WE ARE FRIENDLY. OH AND...')
|
||
def part6():
|
||
base.talkAssistant.sendOpenTalk('WE ARE TEAM DIS YER')
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part7():
|
||
base.localAvatar.b_setSC(50202)
|
||
base.localAvatar.b_setEmoteState(0,0)
|
||
def addzone():
|
||
zond = base.localAvatar.getZoneId()
|
||
zond += 10
|
||
base.localAvatar.b_setLocation(base.localAvatar.defaultShard, zond)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part3))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part4))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part5))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part6))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part7))
|
||
seq.append(Wait(4))
|
||
seq.append(Func(addzone))
|
||
seq.start()
|
||
onTime()
|
||
|
||
#invisible
|
||
|
||
word = base.localAvatar.getZoneId()
|
||
word += 10
|
||
base.localAvatar.b_setLocation(base.localAvatar.defaultShard, word)
|
||
|
||
#hotkeys
|
||
|
||
def white():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1.0,1.0,1.0)
|
||
base.localAvatar.setSystemMessage(1,'White gloves enabled!')
|
||
def black():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.35,0.35,0.3)
|
||
base.localAvatar.setSystemMessage(1,'Black gloves enabled!')
|
||
def red():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.97,0.3,0.3)
|
||
base.localAvatar.setSystemMessage(1,'Red gloves enabled!')
|
||
def pink():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.96,0.7,0.7)
|
||
base.localAvatar.setSystemMessage(1,'Pink gloves enabled!')
|
||
def purple():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.69,0.29,0.95)
|
||
base.localAvatar.setSystemMessage(1,'Purple gloves enabled!')
|
||
def green():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.4,1,0.4)
|
||
base.localAvatar.setSystemMessage(1,'Green gloves enabled!')
|
||
def yellow():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1,0.95,0.3)
|
||
base.localAvatar.setSystemMessage(1,'Yellow gloves enabled!')
|
||
def darkblue():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.35,0.35,0.85)
|
||
base.localAvatar.setSystemMessage(1,'Dark blue gloves enabled!')
|
||
def blue():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.3,0.64,0.85)
|
||
base.localAvatar.setSystemMessage(1,'Blue gloves enabled!')
|
||
def orange():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1,0.5,0.18)
|
||
base.localAvatar.setSystemMessage(1,'Orange gloves enabled!')
|
||
def cream():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(1,1,0.57)
|
||
base.localAvatar.setSystemMessage(1,'Cream gloves enabled!')
|
||
def perwinkle():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.55,0.55,1)
|
||
base.localAvatar.setSystemMessage(1,'Perwinkle gloves enabled!')
|
||
def gray():
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.70,0.70,0.70)
|
||
base.localAvatar.setSystemMessage(1,'Gray gloves enabled!')
|
||
def sideways():
|
||
base.localAvatar.setHpr(0,0,315)
|
||
base.localAvatar.setSystemMessage(1,'Toon rotated to sideways style.')
|
||
base.accept("f2", normal, [])
|
||
def normal():
|
||
base.localAvatar.setHpr(0,0,0)
|
||
base.localAvatar.setSystemMessage(1,'Toon rotated to normal.')
|
||
base.accept("f2", sideways, [])
|
||
def coloff():
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setSystemMessage(1,'Walk over walls enabled.')
|
||
base.accept("f1", colon, [])
|
||
def colon():
|
||
base.localAvatar.collisionsOn()
|
||
base.localAvatar.setSystemMessage(1,'Walk over walls disabled.')
|
||
base.accept("f1", coloff, [])
|
||
def faston():
|
||
base.localAvatar.physControls.avatarControlJumpForce = 50
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 50
|
||
base.localAvatar.physControls.avatarControlRotateSpeed = 100
|
||
base.localAvatar.physControls.avatarControlReverseSpeed = 50
|
||
base.localAvatar.physControls.setGravity(75)
|
||
base.localAvatar.setSystemMessage(1,'Fast toon and april fools gravity enabled.')
|
||
base.accept("f4", fastoff, [])
|
||
def fastoff():
|
||
base.localAvatar.physControls.avatarControlJumpForce = 30
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 20
|
||
base.localAvatar.physControls.avatarControlRotateSpeed = 50
|
||
base.localAvatar.physControls.avatarControlReverseSpeed = 10
|
||
base.localAvatar.setSystemMessage(1,'Fast toon and april fools gravity disabled.')
|
||
base.accept("f4", faston, [])
|
||
def aron():
|
||
messenger.send('force-forward')
|
||
base.accept("insert", aroff, [])
|
||
def aron():
|
||
messenger.send('force-forward-stop')
|
||
base.accept("insert", aron, [])
|
||
base.accept("f1", coloff, [])
|
||
base.accept("f2", sideways, [])
|
||
base.accept("f3", messenger.send, ['nameTagShowAvId'])
|
||
base.accept("f4", faston, [])
|
||
base.accept("f12", base.localAvatar.b_setSC, [50205])
|
||
base.accept("f11", base.localAvatar.b_setSC, [50202])
|
||
base.accept("f10", base.localAvatar.b_setSC, [50704])
|
||
base.accept("`", white, [])
|
||
base.accept("0", black, [])
|
||
base.accept("1", red, [])
|
||
base.accept("2", pink, [])
|
||
base.accept("3", purple, [])
|
||
base.accept("4", green, [])
|
||
base.accept("5", yellow, [])
|
||
base.accept("6", darkblue, [])
|
||
base.accept("7", blue, [])
|
||
base.accept("8", orange, [])
|
||
base.accept("9", cream, [])
|
||
base.accept("f6", perwinkle, [])
|
||
base.accept("f7", gray, [])
|
||
base.accept("insert", aron, [])
|
||
base.accept("shift", base.localAvatar.thinkPos, [])
|
||
|
||
#toon effects
|
||
|
||
base.localAvatar.setCheesyEffect(14, 0, 0)# --snowman head -
|
||
base.localAvatar.setCheesyEffect(13, 0, 0)# --white 1-
|
||
base.localAvatar.setCheesyEffect(12, 0, 0)# --pumpkin head-
|
||
base.localAvatar.setCheesyEffect(11, 0, 0)# --no head-
|
||
base.localAvatar.setCheesyEffect(10, 0, 0)# --white 2-
|
||
base.localAvatar.setCheesyEffect(9, 0, 0)# --invisible-
|
||
base.localAvatar.setCheesyEffect(8, 0, 0)# --sideways 1-
|
||
base.localAvatar.setCheesyEffect(7, 0, 0)# --sideways 2-
|
||
base.localAvatar.setCheesyEffect(6, 0, 0)# --small toon-
|
||
base.localAvatar.setCheesyEffect(5, 0, 0)# --big toon-
|
||
base.localAvatar.setCheesyEffect(4, 0, 0)# --small feet-
|
||
base.localAvatar.setCheesyEffect(3, 0, 0)# --big feet-
|
||
base.localAvatar.setCheesyEffect(1, 0, 0)# --big head-
|
||
base.localAvatar.setCheesyEffect(2, 0, 0)# --small head-
|
||
|
||
#rotate codes
|
||
|
||
base.localAvatar.setHpr(0,0,315)# sideway 1
|
||
base.localAvatar.setHpr(0,0,0)# normal
|
||
base.localAvatar.setHpr(0,0,180)
|
||
base.localAvatar.collisionsOff()# upside down
|
||
base.localAvatar.setHpr(0,0,80)# sideways 2
|
||
base.localAvatar.setHpr(0,0,360)# straight
|
||
base.localAvatar.setHpr(315,315,315)# - flip
|
||
base.localAvatar.setHpr(0,90,0)# on your back
|
||
base.localAvatar.setHpr(0,270,0)# on your face
|
||
base.localAvatar.setHpr(0,0,30)# sideways 3
|
||
base.localAvatar.setHpr(0,0,10)# sideways 4
|
||
|
||
#speedchat codes
|
||
|
||
base.localAvatar.b_announceBingo()
|
||
base.localAvatar.b_setSC(20030)# I haven't been wrong yet.
|
||
base.localAvatar.b_setSC(20100)# Which face would you like to defeat you?
|
||
base.localAvatar.b_setSC(20200)# I'm gonna tell the boss about you!
|
||
base.localAvatar.b_setSC(20201)# I may be just a Flunky - but I'm real spunky.
|
||
base.localAvatar.b_setSC(20136)# RAID!
|
||
base.localAvatar.b_setSC(20237)# I can bag this.
|
||
base.localAvatar.b_setSC(20229)# Let's get going - time is money.
|
||
base.localAvatar.b_setSC(20220)# I'm watching every move you make.
|
||
base.localAvatar.b_setSC(20219)# I'll take care of you in no time.
|
||
base.localAvatar.b_setSC(20300)# You make my hair curl.
|
||
base.localAvatar.b_setSC(20299)# Don't brush me aside.
|
||
base.localAvatar.b_setSC(20297)# I'm prepared to close this deal quickly.
|
||
base.localAvatar.b_setSC(20296)# Too bad for you -- I make house calls.
|
||
base.localAvatar.b_setSC(20293)# I was planning on running into you.
|
||
base.localAvatar.b_setSC(20291)# You won't be able to get rid of me now.
|
||
base.localAvatar.b_setSC(20287)# Careful, I may leave a mark.
|
||
base.localAvatar.b_setSC(20284)# I hate it when things get dull.
|
||
base.localAvatar.b_setSC(20283)# Let's hurry, I bore easily.
|
||
base.localAvatar.b_setSC(20282)# Let's get right to the point.
|
||
base.localAvatar.b_setSC(20281)# I'll have to make my point more clear.
|
||
base.localAvatar.b_setSC(20071)# In my opinion, your name is MUD.
|
||
base.localAvatar.b_setSC(20279)# I'm No.2!
|
||
base.localAvatar.b_setSC(20278)# Hey, you can't push me around.
|
||
base.localAvatar.b_setSC(20266)# I hope you don't forget your lines.
|
||
base.localAvatar.b_setSC(20091)# This is no laughing matter.
|
||
base.localAvatar.b_setSC(20262)# I'm going to roll your end credits.
|
||
base.localAvatar.b_setSC(20096)# Face it, I'm better than you.
|
||
base.localAvatar.b_setSC(20258)# Today the role of defeated toon, will be played by - YOU!
|
||
base.localAvatar.b_setSC(20256)# Lights, camera, action!
|
||
base.localAvatar.b_setSC(20251)# Well, isn't this cozy?
|
||
base.localAvatar.b_setSC(20122)# Legally, you're too small to fight me.
|
||
base.localAvatar.b_setSC(20150)# I'm going to cream you.
|
||
base.localAvatar.b_setSC(20133)# Let me get your back.
|
||
base.localAvatar.b_setSC(20132)# Whoa, back up there toon.
|
||
base.localAvatar.b_setSC(20127)# Take that back or else.
|
||
base.localAvatar.b_setSC(20350)# I have my own special spin on the subject.
|
||
base.localAvatar.b_setSC(20349)# Care to take a few turns with me?
|
||
base.localAvatar.b_setSC(20346)# The doctor is in, the Toon is out.
|
||
base.localAvatar.b_setSC(20345)# You look like you need a doctor.
|
||
base.localAvatar.b_setSC(20341)# You'll never know when I'll stop.
|
||
base.localAvatar.b_setSC(20320)# You've been robbed.
|
||
base.localAvatar.b_setSC(20329)# You should know not to talk to strangers.
|
||
base.localAvatar.b_setSC(20335)# You'll experience a shortfall.
|
||
base.localAvatar.b_setSC(20113)# You are going to have such a headache.
|
||
base.localAvatar.b_setSC(20107)# Oh good, I've been hunting for you.
|
||
base.localAvatar.b_setSC(50101)# Blimey!
|
||
base.localAvatar.b_setSC(50206)# You need a sharp sword and sharper wits.
|
||
base.localAvatar.b_setSC(60103)# Yo!
|
||
base.localAvatar.b_setSC(50208)# Watch yer tongue or I'll pickle it with sea salt!
|
||
base.localAvatar.b_setSC(50211)# You're a canvas shy of a full sail, aren't ye mate?
|
||
base.localAvatar.b_setSC(50210)# The horizon be as empty as yer head.
|
||
base.localAvatar.b_setSC(50209)# Touch me loot and you get the boot!
|
||
base.localAvatar.b_setSC(50300)# Fine shooting mate!
|
||
base.localAvatar.b_setSC(50704)# Hey Bucko.
|
||
base.localAvatar.b_setSC(50205)# Addle-minded fool!
|
||
base.localAvatar.b_setSC(50202)# See ye in Davy Jones locker!
|
||
base.localAvatar.b_setSC(20117)# I'm bringing down the law on you.
|
||
base.localAvatar.b_setSC(50100)# Gangway!
|
||
base.localAvatar.b_setSC(50102)# Well blow me down!
|
||
base.localAvatar.b_setSC(50103)# Walk the plank!
|
||
base.localAvatar.b_setSC(50102)# Dead men tell no tales....
|
||
base.localAvatar.b_setSC(50105)# Shiver me timbers!
|
||
base.localAvatar.b_setSC(50106)# Salty as a Kraken's kiss.
|
||
base.localAvatar.b_setSC(50107)# Treasure be the measure of our pleasure!
|
||
base.localAvatar.b_setSC(50108)# I don't fear death - I attune it.
|
||
base.localAvatar.b_setSC(50200)# Blige rat!
|
||
base.localAvatar.b_setSC(50201)# Scurvy dog!
|
||
base.localAvatar.b_setSC(50203)# Scoundrel!
|
||
base.localAvatar.b_setSC(50204)# Landlubber!
|
||
base.localAvatar.b_setSC(50203)# Ye be one doubloon short of a full hull mate!
|
||
base.localAvatar.b_setSC(50301)# A well placed blow!
|
||
base.localAvatar.b_setSC(50302)# Nice shot!
|
||
base.localAvatar.b_setSC(50303)# Well met!
|
||
base.localAvatar.b_setSC(50304)# We showed them!
|
||
base.localAvatar.b_setSC(50305)# Yer not so bad yerself!
|
||
base.localAvatar.b_setSC(50306)# A fine plunder haul!
|
||
base.localAvatar.b_setSC(50400)# Let's set sail.
|
||
base.localAvatar.b_setSC(50401)# Let's get out of here.
|
||
base.localAvatar.b_setSC(51100)# I be sailing some rough waters today.
|
||
base.localAvatar.b_setSC(52100)# Want to group up?
|
||
base.localAvatar.b_setSC(52101)# Join me crew?
|
||
base.localAvatar.b_setSC(53101)# I caught a fish!
|
||
base.localAvatar.b_setSC(53102)# I saw a Legendary Fish!
|
||
base.localAvatar.b_setSC(53103)# What did you catch?
|
||
base.localAvatar.b_setSC(53104)# This will make a whale of a tale!
|
||
base.localAvatar.b_setSC(53105)# That was a beauty!
|
||
base.localAvatar.b_setSC(53106)# Arr, the sea is treacherous today.
|
||
base.localAvatar.b_setSC(53107)# What a bountiful haul of fish!
|
||
base.localAvatar.b_setSC(10000)# The choice is yours!
|
||
base.localAvatar.b_setSC(10001)# Who are you voting for?
|
||
base.localAvatar.b_setSC(10002)# I'm pickin' Chicken!
|
||
base.localAvatar.b_setSC(10003)# Vote now! Vote Cow!
|
||
base.localAvatar.b_setSC(10004)# Go bananas! Vote Monkey!
|
||
base.localAvatar.b_setSC(10005)# Be a honey! Vote Bear!
|
||
base.localAvatar.b_setSC(10006)# Think big! Vote Pig!
|
||
base.localAvatar.b_setSC(10007)# Vote Goat - and that's all she wrote!
|
||
base.localAvatar.b_setSC(60672)# I just found the treasure I've been searching for.
|
||
base.localAvatar.b_setSC(60673)# If you were a booger, I'd pick you first.
|
||
base.localAvatar.b_setSC(60674)# Come to Tortuga often?
|
||
base.localAvatar.b_setSC(60675)# Do you have a map? I just keep getting lost in your eyes.
|
||
base.localAvatar.b_setSC(60676)# Flirt
|
||
base.localAvatar.b_setSC(60677)# Zombie dance
|
||
base.localAvatar.b_setSC(60671)# Hello, I'm a Pirate, and I'm here to steal your heart.
|
||
base.localAvatar.b_setSC(60678)# Noisemaker
|
||
base.localAvatar.b_setSC(60670)# Dance
|
||
base.localAvatar.b_setSC(60669)# Sleep
|
||
base.localAvatar.b_setSC(60668)# Celebrate
|
||
base.localAvatar.b_setSC(60500)# Where are you?
|
||
base.localAvatar.b_setSC(60501)# Let's go to the Gateway Store.
|
||
base.localAvatar.b_setSC(60502)# Let's go to the Disco Hall.
|
||
base.localAvatar.b_setSC(60503)# Let's go to Toontown.
|
||
base.localAvatar.b_setSC(60504)# Let's go to Pirates of the Carribean.
|
||
base.localAvatar.b_setSC(60504)# Flip coin
|
||
base.localAvatar.b_setSC(60401)# Doh!
|
||
base.localAvatar.b_setSC(60402)# Aw man!
|
||
base.localAvatar.b_setSC(60404)# Bummer!
|
||
base.localAvatar.b_setSC(60301)# Have you seen the Silly Meter?
|
||
base.localAvatar.b_setSC(60302)# The Silly Meter is in Toon Hall.
|
||
base.localAvatar.b_setSC(60303)# Things sure are getting silly around here!
|
||
base.localAvatar.b_setSC(60304)# I saw a fire hydrant moving!
|
||
base.localAvatar.b_setSC(60305)# Toontown is coming to life!
|
||
base.localAvatar.b_setSC(60306)# Have you been to Flippy's new office?
|
||
base.localAvatar.b_setSC(60307)# I caused a Silly Surge in battle!
|
||
base.localAvatar.b_setSC(60308)# Let's defeat some Cogs to make Toontown sillier!
|
||
base.localAvatar.b_setSC(60309)# The Silly Meter is bigger and crazier than ever!
|
||
base.localAvatar.b_setSC(60310)# Lots of hydrants have come alive!
|
||
base.localAvatar.b_setSC(60311)# I saw a mail box moving!
|
||
base.localAvatar.b_setSC(60312)# I watched a trash can wake up!
|
||
base.localAvatar.b_setSC(60313)# How silly can it get?
|
||
base.localAvatar.b_setSC(60314)# What's going to happen next?
|
||
base.localAvatar.b_setSC(60315)# Something silly, I bet!
|
||
base.localAvatar.b_setSC(60316)# Have you caused a Silly Surge yet?
|
||
base.localAvatar.b_setSC(60318)# Cog Invasion!
|
||
base.localAvatar.b_setSC(60319)# Incoming!
|
||
base.localAvatar.b_setSC(60320)# Let's stop these Cogs!
|
||
base.localAvatar.b_setSC(60321)# I miss the Silly Surges!
|
||
base.localAvatar.b_setSC(60322)# Let's go stop an Invasion!
|
||
base.localAvatar.b_setSC(60323)# Toontown is sillier than ever now!
|
||
base.localAvatar.b_setSC(60324)# Have you seen something come alive?
|
||
base.localAvatar.b_setSC(60200)# Deck the halls...
|
||
base.localAvatar.b_setSC(60201)# Load some pies...
|
||
base.localAvatar.b_setSC(60202)# Joyful toons...
|
||
base.localAvatar.b_setSC(60203)# Snowman heads...
|
||
base.localAvatar.b_setSC(60204)# Toontown's merry...
|
||
base.localAvatar.b_setSC(60205)# Lure good cheer...
|
||
base.localAvatar.b_setSC(60220)# Deck the halls with seltzer spray! Happy Winter Holiday!
|
||
base.localAvatar.b_setSC(60221)# Load some pies into your sleigh! Happy Winter Holiday!
|
||
base.localAvatar.b_setSC(60222)# Joyful toons bring Cogs dismay! Happy Winter Holiday!
|
||
base.localAvatar.b_setSC(60223)# Snowman heads are hot today! Happy Winter Holiday!
|
||
base.localAvatar.b_setSC(60224)# Toontown's merry, come what may! Happy Winter Holiday!
|
||
base.localAvatar.b_setSC(60225)# Lure good cheer the Toontown way! Happy Winter Holiday!
|
||
base.localAvatar.b_setSC(60100)# Happy April Toons' Week!
|
||
base.localAvatar.b_setSC(60101)# Welcome to my April Toons' Week party!
|
||
base.localAvatar.b_setSC(60110)# Mickey is in Daisy Garden.
|
||
base.localAvatar.b_setSC(60111)# Daisy is in Toontown Central.
|
||
base.localAvatar.b_setSC(60112)# Minnie is in The Brrrgh.
|
||
base.localAvatar.b_setSC(60113)# Pluto is in Melodyland.
|
||
base.localAvatar.b_setSC(60114)# Donald is sleepwalking at the Speedway.
|
||
base.localAvatar.b_setSC(60115)# Goofy is in Dreamland.
|
||
base.localAvatar.b_setSC(60120)# Mickey is acting like Daisy!
|
||
base.localAvatar.b_setSC(60121)# Daisy is acting like Mickey!
|
||
base.localAvatar.b_setSC(60122)# Minnie is acting like Pluto!
|
||
base.localAvatar.b_setSC(60123)# Pluto is acting like Minnie!
|
||
base.localAvatar.b_setSC(60124)# Pluto is talking!
|
||
base.localAvatar.b_setSC(60125)# Goofy is acting like Donald!
|
||
base.localAvatar.b_setSC(60126)# Donald is dreaming he is Goofy!
|
||
base.localAvatar.b_setSC(51001)# May our stiff winds be at our backs, the sun on our faces and our cannons fire true!
|
||
base.localAvatar.b_setSC(60350)# Welcome to my Victory Party!
|
||
base.localAvatar.b_setSC(60351)# This is a great Victory Party!
|
||
base.localAvatar.b_setSC(60352)# We showed those Cogs who's boss!
|
||
base.localAvatar.b_setSC(60353)# Good job helping end the Cog invasions!
|
||
base.localAvatar.b_setSC(60354)# I bet this is driving the Cogs crazy!
|
||
base.localAvatar.b_setSC(60355)# Let's play Cog-O-War!
|
||
base.localAvatar.b_setSC(60356)# My team won at Cog-O-War!
|
||
base.localAvatar.b_setSC(60357)# It's nice to have fire hydrants, trash cans, and mailboxes here!
|
||
base.localAvatar.b_setSC(60358)# I like the balloon of the Doodle biting the Cog!
|
||
base.localAvatar.b_setSC(60359)# I like the balloon of the Cog covered in ice cream!
|
||
base.localAvatar.b_setSC(60360)# I like the wavy Cog that flaps his arms!
|
||
base.localAvatar.b_setSC(60361)# I jumped on a Cog's face!
|
||
base.localAvatar.b_setSC(1700)# Let's split up.
|
||
base.localAvatar.b_setSC(1701)# Let's stay together.
|
||
base.localAvatar.b_setSC(1702)# Let's battle the Cogs.
|
||
base.localAvatar.b_setSC(1703)# Step on the switch.
|
||
base.localAvatar.b_setSC(1704)# Go through the door.
|
||
base.localAvatar.b_setSC(1803)# I'm in the Front Entrance.
|
||
base.localAvatar.b_setSC(1804)# I'm in the Lobby.
|
||
base.localAvatar.b_setSC(1805)# I'm in the hallway outside the Lobby.
|
||
base.localAvatar.b_setSC(1807)# I'm in the Gear Room.
|
||
base.localAvatar.b_setSC(1808)# I'm in the Boiler Room.
|
||
base.localAvatar.b_setSC(1809)# I'm on the East Catwalk.
|
||
base.localAvatar.b_setSC(1810)# I'm in the Paint Mixer.
|
||
base.localAvatar.b_setSC(1811)# I'm in the Paint Mixer Storage Room.
|
||
base.localAvatar.b_setSC(1812)# I'm on the West Silo Catwalk.
|
||
base.localAvatar.b_setSC(1813)# I'm in the Pipe Room.
|
||
base.localAvatar.b_setSC(1814)# I'm on the stairs to the Pipe Room.
|
||
base.localAvatar.b_setSC(1815)# I'm in the Duct Room.
|
||
base.localAvatar.b_setSC(1816)# I'm in the Side Entrance.
|
||
base.localAvatar.b_setSC(1817)# I'm in Stomper Alley.
|
||
base.localAvatar.b_setSC(1818)# I'm outside the Lava Room.
|
||
base.localAvatar.b_setSC(1819)# I'm in the Lava Room.
|
||
base.localAvatar.b_setSC(1820)# I'm in the Lava Storage Room.
|
||
base.localAvatar.b_setSC(1821)# I'm on the West Catwalk.
|
||
base.localAvatar.b_setSC(1822)# I'm in the Oil Room.
|
||
base.localAvatar.b_setSC(1823)# I'm on the Warehouse Lookout.
|
||
base.localAvatar.b_setSC(1824)# I'm in the Warehouse.
|
||
base.localAvatar.b_setSC(1825)# I'm outside the Paint Mixer.
|
||
base.localAvatar.b_setSC(1827)# I'm outside the Oil Room.
|
||
base.localAvatar.b_setSC(1830)# I'm in the East Silo Control Room.
|
||
base.localAvatar.b_setSC(1831)# I'm in the West Silo Control Room.
|
||
base.localAvatar.b_setSC(1833)# I'm at the East Silo.
|
||
base.localAvatar.b_setSC(1834)# I'm on the West Silo.
|
||
base.localAvatar.b_setSC(1835)# I'm on the Center Silo.
|
||
base.localAvatar.b_setSC(1841)# I'm on top of the East Silo.
|
||
base.localAvatar.b_setSC(1860)# I'm on the West Silo Elevator.
|
||
base.localAvatar.b_setSC(1861)# I'm on the East Silo Elevator.
|
||
base.localAvatar.b_setSC(2100)# Please operate the crane.
|
||
base.localAvatar.b_setSC(2101)# May I operate the crane?
|
||
base.localAvatar.b_setSC(2102)# I need practice operating the crane.
|
||
base.localAvatar.b_setSC(2103)# Pick up a disabled goon.
|
||
base.localAvatar.b_setSC(2104)# Throw the goon at the CFO.
|
||
base.localAvatar.b_setSC(2105)# Throw a safe now!
|
||
base.localAvatar.b_setSC(2106)# Don't throw a safe now!
|
||
base.localAvatar.b_setSC(2107)# A safe will knock off his helmet.
|
||
base.localAvatar.b_setSC(2108)# A safe will become his new helmet.
|
||
base.localAvatar.b_setSC(2109)# I can't reach any safes.
|
||
base.localAvatar.b_setSC(2110)# I can't reach any goons.
|
||
base.localAvatar.b_setSC(2200)# You need to hit the scale.
|
||
base.localAvatar.b_setSC(2201)# I will hit the scale.
|
||
base.localAvatar.b_setSC(2202)# I need help with the scale!
|
||
base.localAvatar.b_setSC(2203)# You need to stun the Cogs.
|
||
base.localAvatar.b_setSC(2204)# I will stun the Cogs.
|
||
base.localAvatar.b_setSC(2205)# I need help with the Cogs!
|
||
base.localAvatar.b_setSC(2206)# I need more evidence!
|
||
base.localAvatar.b_setSC(2207)# I'm shooting for chairs in the top row.
|
||
base.localAvatar.b_setSC(2208)# I'm shooting for chairs in the bottom row.
|
||
base.localAvatar.b_setSC(2209)# Move out of the way! We can't hit the pan.
|
||
base.localAvatar.b_setSC(2210)# I'll do Toon-Ups for us.
|
||
base.localAvatar.b_setSC(2211)# I don't have any bonus weight.
|
||
base.localAvatar.b_setSC(2212)# I have a bonus weight of 1.
|
||
base.localAvatar.b_setSC(2213)# I have a bonus weight of 2.
|
||
base.localAvatar.b_setSC(2214)# I have a bonus weight of 3.
|
||
base.localAvatar.b_setSC(2215)# I have a bonus weight of 4.
|
||
base.localAvatar.b_setSC(2216)# I have a bonus weight of 5.
|
||
base.localAvatar.b_setSC(2217)# I have a bonus weight of 6.
|
||
base.localAvatar.b_setSC(2218)# I have a bonus weight of 7.
|
||
base.localAvatar.b_setSC(2219)# I have a bonus weight of 8.
|
||
base.localAvatar.b_setSC(2220)# I have a bonus weight of 9.
|
||
base.localAvatar.b_setSC(2221)# I have a bonus weight of 10.
|
||
base.localAvatar.b_setSC(2222)# I have a bonus weight of 11.
|
||
base.localAvatar.b_setSC(2223)# I have a bonus weight of 12.
|
||
base.localAvatar.b_setSC(2300)# You feed the Cogs on the left.
|
||
base.localAvatar.b_setSC(2301)# I'll feed the Cogs on the left.
|
||
base.localAvatar.b_setSC(2302)# You feed the Cogs on the right.
|
||
base.localAvatar.b_setSC(2303)# I'll feed the Cogs on the right.
|
||
base.localAvatar.b_setSC(2304)# You feed the Cogs on the front.
|
||
base.localAvatar.b_setSC(2305)# I'll feed the Cogs on the front.
|
||
base.localAvatar.b_setSC(2306)# You feed the Cogs on the back.
|
||
base.localAvatar.b_setSC(2307)# I'll feed the Cogs on the back.
|
||
base.localAvatar.b_setSC(2308)# You use the seltzer bottle.
|
||
base.localAvatar.b_setSC(2309)# I'll use the seltzer bottle.
|
||
base.localAvatar.b_setSC(2310)# You use the golf tee.
|
||
base.localAvatar.b_setSC(2311)# I'll use the golf tee.
|
||
base.localAvatar.b_setSC(2312)# I'll serve this table.
|
||
base.localAvatar.b_setSC(2313)# Can you serve this table?
|
||
base.localAvatar.b_setSC(2314)# Feed the same cog again.
|
||
base.localAvatar.b_setSC(2315)# Hurry, your cog is hungry!
|
||
base.localAvatar.b_setSC(2316)# Please save the snacks for sadder toons.
|
||
base.localAvatar.b_setSC(2317)# Take the snacks before they fall.
|
||
base.localAvatar.b_setSC(3600)# Which track do you want to race on?
|
||
base.localAvatar.b_setSC(3601)# Pick a track!
|
||
base.localAvatar.b_setSC(3602)# Can we race on a different track?
|
||
base.localAvatar.b_setSC(3603)# Let's pick a different track!
|
||
base.localAvatar.b_setSC(4000)# Let's play minigolf!
|
||
base.localAvatar.b_setSC(4001)# Let's play again!
|
||
base.localAvatar.b_setSC(4002)# Want to golf?
|
||
base.localAvatar.b_setSC(4100)# Let's play 'Walk In The Par.'
|
||
base.localAvatar.b_setSC(4101)# Let's play 'Hole Some Fun.'
|
||
base.localAvatar.b_setSC(4102)# Let's play 'The Hole Kit and Caboodle.'
|
||
base.localAvatar.b_setSC(4103)# That course is too easy.
|
||
base.localAvatar.b_setSC(4104)# That course is too hard.
|
||
base.localAvatar.b_setSC(4105)# That course is just right.
|
||
base.localAvatar.b_setSC(4200)# Try standing more to the left.
|
||
base.localAvatar.b_setSC(4201)# Try standing more to the right.
|
||
base.localAvatar.b_setSC(4202)# Try standing right in the middle.
|
||
base.localAvatar.b_setSC(4203)# Try hitting it harder.
|
||
base.localAvatar.b_setSC(4204)# Try hitting it softer.
|
||
base.localAvatar.b_setSC(4205)# Try aiming more to the left.
|
||
base.localAvatar.b_setSC(4206)# Try aiming more to the right.
|
||
base.localAvatar.b_setSC(4207)# Try aiming right down the middle.
|
||
base.localAvatar.b_setSC(4300)# So close!
|
||
base.localAvatar.b_setSC(4301)# What a great shot!
|
||
base.localAvatar.b_setSC(4302)# That was a lucky shot.
|
||
base.localAvatar.b_setSC(4303)# I'll take a mulligan...
|
||
base.localAvatar.b_setSC(4304)# That's a gimme.
|
||
base.localAvatar.b_setSC(4305)# Fore!
|
||
base.localAvatar.b_setSC(4306)# Shhhh!
|
||
base.localAvatar.b_setSC(4307)# Good game!
|
||
base.localAvatar.b_setSC(5100)# Let's go to the Front Three.
|
||
base.localAvatar.b_setSC(5101)# Let's go to the Middle Six.
|
||
base.localAvatar.b_setSC(5102)# Let's go to the Back Nine.
|
||
base.localAvatar.b_setSC(5103)# Let's go to the C.E.O. Battle.
|
||
base.localAvatar.b_setSC(5104)# Let's go to the Senior V.P Battle.
|
||
base.localAvatar.b_setSC(5105)# Let's go to the Front Entrance.
|
||
base.localAvatar.b_setSC(5106)# Let's go to the Side Entrance.
|
||
base.localAvatar.b_setSC(5107)# Let's go to the Coin Mint.
|
||
base.localAvatar.b_setSC(5108)# Let's go to the Dollar Mint.
|
||
base.localAvatar.b_setSC(5109)# Let's go to the Bullion Mint.
|
||
base.localAvatar.b_setSC(5110)# Let's go to the C.F.O. Battle.
|
||
base.localAvatar.b_setSC(5111)# Let's go to the Chief Justice Battle.
|
||
base.localAvatar.b_setSC(5112)# Let's go to the Lawbot A Office.
|
||
base.localAvatar.b_setSC(5113)# Let's go to the Lawbot B Office.
|
||
base.localAvatar.b_setSC(5114)# Let's go to the Lawbot C Office.
|
||
base.localAvatar.b_setSC(5115)# Let's go to the Lawbot D Office.
|
||
base.localAvatar.b_setSC(5200)# We're going to the Front Three.
|
||
base.localAvatar.b_setSC(5201)# We're going to the Middle Six.
|
||
base.localAvatar.b_setSC(5202)# We're going to the Back Nine.
|
||
base.localAvatar.b_setSC(5203)# We're going to the C.E.O. Battle.
|
||
base.localAvatar.b_setSC(5204)# We're going to the Senior V.P Battle.
|
||
base.localAvatar.b_setSC(5205)# We're going to the Front Entrance.
|
||
base.localAvatar.b_setSC(5206)# We're going to the Side Entrance.
|
||
base.localAvatar.b_setSC(5207)# We're going to the Coin Mint.
|
||
base.localAvatar.b_setSC(5208)# We're going to the Dollar Mint.
|
||
base.localAvatar.b_setSC(5209)# We're going to the Bullion Mint.
|
||
base.localAvatar.b_setSC(5210)# We're going to the C.F.O. Battle.
|
||
base.localAvatar.b_setSC(5211)# We're going to the Chief Justice Battle.
|
||
base.localAvatar.b_setSC(5212)# We're going to the Lawbot A Office.
|
||
base.localAvatar.b_setSC(5213)# We're going to the Lawbot B Office.
|
||
base.localAvatar.b_setSC(5214)# We're going to the Lawbot C Office.
|
||
base.localAvatar.b_setSC(5215)# We're going to the Lawbot D Office.
|
||
base.localAvatar.b_setSC(3200)# Where do you want to race?
|
||
base.localAvatar.b_setSC(3201)# Let's pick a different track.
|
||
base.localAvatar.b_setSC(3300)# Wow! You are FAST!
|
||
base.localAvatar.b_setSC(3301)# You're too fast for me!
|
||
base.localAvatar.b_setSC(3400)# Too scared to race me?
|
||
|
||
|
||
|
||
#Smile Code
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part2():
|
||
base.localAvatar.setCheesyEffect(13, 0, 0)
|
||
def part3():
|
||
base.localAvatar.setCheesyEffect(0, 0, 0)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(part3))
|
||
seq.start()
|
||
onTime()
|
||
|
||
#Looping codes
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def big():
|
||
base.localAvatar.setCheesyEffect(13, 0, 0)
|
||
def normal():
|
||
base.localAvatar.setCheesyEffect(0, 0, 0)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(big))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(normal))
|
||
seq.append(Wait(2)
|
||
seq.append(Func(onTime))
|
||
seq.start()
|
||
onTime()
|
||
|
||
#Black cat client sided
|
||
|
||
base.localAvatar.findAllMatches('**/head-short').setColor(0.35,0.35,0.3)
|
||
base.localAvatar.findAllMatches('**/head-front-short').setColor(0.35,0.35,0.3)
|
||
base.localAvatar.findAllMatches('**/head-long').setColor(0.35,0.35,0.3)
|
||
base.localAvatar.findAllMatches('**/head-front-long').setColor(0.35,0.35,0.3)
|
||
base.localAvatar.findAllMatches('**/ears-short').setColor(0.35,0.35,0.3)
|
||
base.localAvatar.findAllMatches('**/ears-long').setColor(0.35,0.35,0.3)
|
||
base.localAvatar.findAllMatches('**/neck').setColor(0.35,0.35,0.3)
|
||
base.localAvatar.findAllMatches('**/arms').setColor(0.35,0.35,0.3)
|
||
base.localAvatar.findAllMatches('**/feet').setColor(0.35,0.35,0.3)
|
||
base.localAvatar.findAllMatches('**/legs').setColor(0.35,0.35,0.3)
|
||
|
||
#ScientistEmcee talk
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
base.talkAssistant.sendOpenTalk('Congratulations Toons!')
|
||
def part2():
|
||
base.talkAssistant.sendOpenTalk('You all successfully held off the Cog Invasions...')
|
||
def part3():
|
||
base.talkAssistant.sendOpenTalk('With a little help from our newly animated friends...')
|
||
def part4():
|
||
base.talkAssistant.sendOpenTalk('And brought Toontown back to its usual silly self!')
|
||
def part5():
|
||
base.talkAssistant.sendOpenTalk('We hope to get the Silly Meter rising again soon...')
|
||
def part6():
|
||
base.talkAssistant.sendOpenTalk('So in the meantime, keep up the Cog fight...')
|
||
def part7():
|
||
base.talkAssistant.sendOpenTalk('And enjoy the silliest place ever, Toontown!')
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part3))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part4))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part5))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part6))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part7))
|
||
seq.start()
|
||
onTime()
|
||
|
||
#Server side cream pies
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def id():
|
||
base.cr.sendSetZoneMsg(2513)
|
||
def play():
|
||
messenger.send('kickToPlayground', [1])
|
||
from toontown.shtiker.MapPage import MapPage
|
||
gohome = MapPage()
|
||
gohome.goHome()
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Wait(10))
|
||
seq.append(Func(id))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(play))
|
||
seq.start()
|
||
onTime()
|
||
|
||
#teleport to funny farms
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def tptohole():
|
||
base.localAvatar.b_setAnimState('TeleportOut')
|
||
def id():
|
||
base.cr.sendSetZoneMsg(7000)
|
||
def tpfromhole():
|
||
base.localAvatar.b_setAnimState('TeleportIn')
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(tptohole))
|
||
seq.append(Wait(4.0))
|
||
seq.append(Func(id))
|
||
seq.append(Wait(2.0))
|
||
seq.append(Func(tpfromhole))
|
||
seq.start()
|
||
onTime()
|
||
toon troop hat:
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
ttHat = loader.loadModel("phase_3.5/models/gui/tt_m_gui_gm_toontroop_whistle.bam")
|
||
ttHat.reparentTo(localAvatar)
|
||
ttHat.setZ(4)
|
||
ttHat.setColorScale(25)
|
||
ttHatSpin = ttHat.find('**/whistleIcon').hprInterval(3, Vec3(360, 0, 0))
|
||
ttHatSpin.loop()
|
||
|
||
The Hotkeys(Mostly client)
|
||
|
||
|
||
from direct.showbase import DirectObject
|
||
class Index(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f1',self.Index)
|
||
def Index(self):
|
||
base.localAvatar.setCogIndex(0)
|
||
base.localAvatar.setSystemMessage(0, 'This is your Cog Nation disguise, use it to get into the Chairmans Castle!')
|
||
i = Index()
|
||
|
||
from direct.showbase import DirectObject
|
||
class Index(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f2',self.Index)
|
||
def Index(self):
|
||
base.localAvatar.setCogIndex(1)
|
||
base.localAvatar.setSystemMessage(0, 'This is your Cog Nation disguise, use it to get into the Chairmans Castle!')
|
||
i = Index()
|
||
|
||
from direct.showbase import DirectObject
|
||
class Index(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f3',self.Index)
|
||
def Index(self):
|
||
base.localAvatar.setCogIndex(2)
|
||
base.localAvatar.setSystemMessage(0, 'This is your Cog Nation disguise, use it to get into the Chairmans Castle!')
|
||
i = Index()
|
||
|
||
from direct.showbase import DirectObject
|
||
class Index(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f4',self.Index)
|
||
def Index(self):
|
||
base.localAvatar.setCogIndex(3)
|
||
base.localAvatar.setSystemMessage(0, 'This is your Cog Nation disguise, use it to get into the Chairmans Castle!')
|
||
i = Index()
|
||
|
||
|
||
from direct.showbase import DirectObject
|
||
class Index(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f5',self.Index)
|
||
def Index(self):
|
||
base.localAvatar.setCogIndex(-1)
|
||
base.localAvatar.setSystemMessage(0, 'Cog Nation Disguise is Off.')
|
||
i = Index()
|
||
|
||
from direct.showbase import DirectObject
|
||
class Index(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f6',self.Index)
|
||
def Index(self):
|
||
shirt = base.localAvatar.findAllMatches('**/torso-top')
|
||
shirttex = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirt_sellbotCrusher.jpg")
|
||
shirt.setTexture(shirttex, 1)
|
||
short = base.localAvatar.findAllMatches('**/torso-bot')
|
||
shorttex = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shorts_sellbotCrusher.jpg")
|
||
short.setTexture(shorttex, 1)
|
||
sleeves = base.localAvatar.findAllMatches('**/sleeves')
|
||
sleevestex = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirtSleeve_sellbotCrusher.jpg")
|
||
sleeves.setTexture(sleevestex, 1)
|
||
base.localAvatar.setName(('RESISTANCE RANGER Yes'))
|
||
base.localAvatar.setSystemMessage(0, 'RESISTANCE RANGER Yes')
|
||
i = Index()
|
||
|
||
from direct.showbase import DirectObject
|
||
class Control(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f7',self.Control)
|
||
def Control(self):
|
||
import toontown
|
||
def new():
|
||
return True
|
||
def new2(*a,**k):
|
||
return 2
|
||
base.cr.isPaid = new
|
||
base.cr.isParentPasswordSet = new
|
||
toontown.toon.LocalToon.LocalToon.getGameAccess = new2
|
||
base.localAvatar.setSystemMessage(0, 'Membership Activated')
|
||
c = Control()
|
||
|
||
from direct.showbase import DirectObject
|
||
class Control(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f8',self.Control)
|
||
def Control(self):
|
||
base.localAvatar.setTeleportAccess([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
base.localAvatar.setSystemMessage(0, 'Gloabal Teleport Activated')
|
||
c = Control()
|
||
|
||
|
||
from direct.showbase import DirectObject
|
||
class Control(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f9',self.Control)
|
||
def Control(self):
|
||
base.localAvatar.collisionsOff()
|
||
base.cr.sendSetZoneMsg(7000)
|
||
base.localAvatar.b_setAnimState('teleport')
|
||
base.cr.sendSetZoneMsg(2000)
|
||
base.localAvatar.setSystemMessage(0, 'ScareCrow do in TTC ONLY!')
|
||
c = Control()
|
||
|
||
from direct.showbase import DirectObject
|
||
class Control(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f10',self.Control)
|
||
def Control(self):
|
||
base.localAvatar.setSCResistance(201, nearbyToons=[286531738, 235326465])
|
||
base.localAvatar.setSCResistance(1, nearbyToons=[286531738, 235326465])
|
||
base.localAvatar.setSCResistance(100, nearbyToons=[286531738, 235326465])
|
||
base.localAvatar.setSCResistance(101, nearbyToons=[286531738, 235326465])
|
||
base.localAvatar.setSCResistance(102, nearbyToons=[286531738, 235326465])
|
||
base.localAvatar.setSCResistance(103, nearbyToons=[286531738, 235326465])
|
||
base.localAvatar.setSCResistance(104, nearbyToons=[286531738, 235326465])
|
||
base.localAvatar.setSCResistance(105, nearbyToons=[286531738, 235326465])
|
||
base.localAvatar.setSCResistance(106, nearbyToons=[286531738, 235326465])
|
||
base.localAvatar.setSCResistance(107, nearbyToons=[286531738, 235326465])
|
||
base.localAvatar.setSystemMessage(0, 'Many unite given! This was from the ToonTown Staff')
|
||
c = Control()
|
||
|
||
from direct.showbase import DirectObject
|
||
class Control(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f11',self.Control)
|
||
def Control(self):
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setSystemMessage(0, 'Collisions off')
|
||
c = Control()
|
||
|
||
from direct.showbase import DirectObject
|
||
class Control(DirectObject.DirectObject):
|
||
def __init__(self):
|
||
self.accept('f12',self.Control)
|
||
def Control(self):
|
||
base.localAvatar.collisionsOn()
|
||
base.localAvatar.setSystemMessage(0, 'Collisions on')
|
||
c = Control()
|
||
_________________________________________________________________________
|
||
f1 :Bossbot suit
|
||
f2:Lawbot suit
|
||
f3:Cashbot Suit
|
||
f4: Sellbot
|
||
f5: take off suit
|
||
f6:RESISTANCE RANGER CLOTHING
|
||
f7:Membership
|
||
f8:Global teleports
|
||
f9:SCARE CROW ITS A SERVER CLIENT WHICH MEANS THE SERVER CAN SEE BUT U CANT SEE DO IN TOONTOWN CENTRAL ONLY!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||
f10: Every unite
|
||
f11:Collisions off
|
||
f!2:Collisions on
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
environ = loader.loadModel("phase_3/models/props/arrow.bam")
|
||
environ = loader.loadModel("phase_9/models/parties/rocket_model.bam")
|
||
environ = loader.loadModel("phase_12/models/bossbotHQ/BB_Inside_Elevator.bam")
|
||
environ = loader.loadModel("phase_10/models/cashbotHQ/CashBotSafe.bam")
|
||
environ = loader.loadModel("phase_9/models/cogHQ/cog_sky.bam")
|
||
environ = loader.loadModel("phase_9/models/cogHQ/square_stomper.bam")
|
||
environ = loader.loadModel("phase_9/models/cogHQ/CogDoor_Button.bam")
|
||
environ = loader.loadModel("phase_11/models/lawbotHQ/JuryBoxChair.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/cogPieArena_model.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/grass.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/partyLeverStick.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/partyCatchTree.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/trampolineGUI.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/rocket_launch.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/partyTugOfWar.bam")
|
||
environ = loader.loadModel("phase_10/models/cashbotHQ/GoldBar.bam")
|
||
environ = loader.loadModel("phase_10/models/cashbotHQ/pipes_E.bam")
|
||
environ = loader.loadModel("phase_10/models/cashbotHQ/VaultDoorCover.bam")
|
||
environ = loader.loadModel("phase_10/models/cashbotHQ/CBCoin1.bam")
|
||
environ = loader.loadModel("phase_10/models/cashbotHQ/MoneyBag.bam")
|
||
|
||
environ = loader.loadModel("phase_10/models/cashbotHQ/shelf_A1MoneyBags.bam")
|
||
environ = loader.loadModel("phase_10/models/cashbotHQ/boiler_A1.bam")
|
||
environ = loader.loadModel("phase_10/models/cashbotHQ/boiler_A2.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/danceFloor.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/partyGrounds.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/trampoline_model.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/cogPinata_actor.bam")
|
||
environ = loader.loadModel("phase_13/models/parties/partyReskins.bam")
|
||
environ = loader.loadModel("phase_3.5/models/modules/chair.bam")
|
||
environ = loader.loadModel("phase_3.5/models/modules/coatrack.bam")
|
||
environ = loader.loadModel("phase_3.5/models/modules/walls_basement.bam")
|
||
environ = loader.loadModel("phase_3.5/models/modules/wood_fence.bam")
|
||
environ = loader.loadModel("phase_3.5/models/modules/counterShort.bam")
|
||
environ = loader.loadModel("phase_3/props/cog_icons.bam")
|
||
|
||
base.cr.sendSetZoneMsg(215192)
|
||
|
||
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
|
||
|
||
|
||
|
||
|
||
environ = loader.loadModel("phase_4/models/minigames/tag_arena.bam")
|
||
environ.reparentTo(render)
|
||
environ.setPos(0,0,99)
|
||
environ.setHpr(0,0,0)
|
||
environ.setScale(2)
|
||
|
||
|
||
G = loader.loadModel("phase_4/models/modules/gazebo.bam")
|
||
G.reparentTo(render)
|
||
G.setPos(5,53,99)
|
||
G.setHpr(0,0,0)
|
||
G.setScale(1)
|
||
|
||
|
||
|
||
|
||
|
||
F = loader.loadModel("phase_4/models/props/toontown_central_fountain.bam")
|
||
F.reparentTo(render)
|
||
F.setPos(90,-60,99)
|
||
F.setHpr(0,0,0)
|
||
F.setScale(1)
|
||
|
||
|
||
|
||
F2 = loader.loadModel("phase_4/models/props/toontown_central_fountain.bam")
|
||
F2.reparentTo(render)
|
||
F2.setPos(-90,-60,99)
|
||
F2.setHpr(0,0,0)
|
||
F2.setScale(1)
|
||
|
||
|
||
|
||
|
||
TH = loader.loadModel("phase_4/models/modules/toonhall.bam")
|
||
TH.reparentTo(render)
|
||
TH.setPos(40,130,99)
|
||
TH.setHpr(0,0,0)
|
||
TH.setScale(0.7)
|
||
|
||
|
||
TH2 = loader.loadModel("phase_4/models/modules/toonhall.bam")
|
||
TH2.reparentTo(render)
|
||
TH2.setPos(-70,130,99)
|
||
TH2.setHpr(0,0,0)
|
||
TH2.setScale(0.7)
|
||
|
||
table = loader.loadModel("phase_12/models/bossbotHQ/BanquetTableChairs.bam")
|
||
table.reparentTo(render)
|
||
table.setPos(70,-27,99)
|
||
table.setHpr(0,0,0)
|
||
table.setScale(0.5)
|
||
|
||
|
||
table2 = loader.loadModel("phase_12/models/bossbotHQ/BanquetTableChairs.bam")
|
||
table2.reparentTo(render)
|
||
table2.setPos(70,27,99)
|
||
table2.setHpr(0,0,0)
|
||
table2.setScale(0.5)
|
||
|
||
table3 = loader.loadModel("phase_12/models/bossbotHQ/BanquetTableChairs.bam")
|
||
table3.reparentTo(render)
|
||
table3.setPos(-70,27,99)
|
||
table3.setHpr(0,0,0)
|
||
table3.setScale(0.5)
|
||
|
||
|
||
table4 = loader.loadModel("phase_12/models/bossbotHQ/BanquetTableChairs.bam")
|
||
table4.reparentTo(render)
|
||
table4.setPos(-70,-27,99)
|
||
table4.setHpr(0,0,0)
|
||
table4.setScale(0.5)
|
||
|
||
|
||
|
||
up = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up.reparentTo(render)
|
||
up.setPos(0,-50,101)
|
||
up.setHpr(0,0,0)
|
||
up.setScale(0.5)
|
||
|
||
|
||
|
||
up2 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up2.reparentTo(render)
|
||
up2.setPos(0,-54,104)
|
||
up2.setHpr(0,0,0)
|
||
up2.setScale(0.5)
|
||
|
||
|
||
up3 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up3.reparentTo(render)
|
||
up3.setPos(0,-58,106)
|
||
up3.setHpr(0,0,0)
|
||
up3.setScale(0.5)
|
||
|
||
|
||
|
||
up4 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up4.reparentTo(render)
|
||
up4.setPos(0,-62,108)
|
||
up4.setHpr(0,0,0)
|
||
up4.setScale(0.5)
|
||
|
||
|
||
|
||
up5 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up5.reparentTo(render)
|
||
up5.setPos(0,-66,110)
|
||
up5.setHpr(0,0,0)
|
||
up5.setScale(0.5)
|
||
|
||
|
||
up6 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up6.reparentTo(render)
|
||
up6.setPos(0,-70,112)
|
||
up6.setHpr(0,0,0)
|
||
up6.setScale(0.5)
|
||
|
||
up7 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up7.reparentTo(render)
|
||
up7.setPos(0,-74,114)
|
||
up7.setHpr(0,0,0)
|
||
up7.setScale(0.5)
|
||
|
||
|
||
up8 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up8.reparentTo(render)
|
||
up8.setPos(0,-78,116)
|
||
up8.setHpr(0,0,0)
|
||
up8.setScale(0.5)
|
||
|
||
|
||
up9 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up9.reparentTo(render)
|
||
up9.setPos(0,-82,118)
|
||
up9.setHpr(0,0,0)
|
||
up9.setScale(0.5)
|
||
|
||
up10 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up10.reparentTo(render)
|
||
up10.setPos(0,-86,120)
|
||
up10.setHpr(0,0,0)
|
||
up10.setScale(0.5)
|
||
|
||
|
||
up11 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up11.reparentTo(render)
|
||
up11.setPos(0,-200,124)
|
||
up11.setHpr(0,0,0)
|
||
up11.setScale(0.5)
|
||
|
||
|
||
up12 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up12.reparentTo(render)
|
||
up12.setPos(0,-204,128)
|
||
up12.setHpr(0,0,0)
|
||
up12.setScale(0.5)
|
||
|
||
up12 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up12.reparentTo(render)
|
||
up12.setPos(0,-208,132)
|
||
up12.setHpr(0,0,0)
|
||
up12.setScale(0.5)
|
||
|
||
up13 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up13.reparentTo(render)
|
||
up13.setPos(0,-212,136)
|
||
up13.setHpr(0,0,0)
|
||
up13.setScale(0.5)
|
||
|
||
|
||
up14 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up14.reparentTo(render)
|
||
up14.setPos(0,-216,140)
|
||
up14.setHpr(0,0,0)
|
||
up14.setScale(0.5)
|
||
|
||
|
||
up15 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up15.reparentTo(render)
|
||
up15.setPos(0,-220,144)
|
||
up15.setHpr(0,0,0)
|
||
up15.setScale(0.5)
|
||
|
||
|
||
up16 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up16.reparentTo(render)
|
||
up16.setPos(0,-224,148)
|
||
up16.setHpr(0,0,0)
|
||
up16.setScale(0.5)
|
||
|
||
|
||
up17 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up17.reparentTo(render)
|
||
up17.setPos(0,-228,152)
|
||
up17.setHpr(0,0,0)
|
||
up17.setScale(0.5)
|
||
|
||
|
||
up18 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up18.reparentTo(render)
|
||
up18.setPos(0,-232,152)
|
||
up18.setHpr(0,0,0)
|
||
up18.setScale(0.5)
|
||
|
||
|
||
up19 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up19.reparentTo(render)
|
||
up19.setPos(0,-236,152)
|
||
up19.setHpr(0,0,0)
|
||
up19.setScale(0.5)
|
||
|
||
up20 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up20.reparentTo(render)
|
||
up20.setPos(0,-250,152)
|
||
up20.setHpr(0,0,0)
|
||
up20.setScale(0.5)
|
||
|
||
up21 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up21.reparentTo(render)
|
||
up21.setPos(0,-260,148)
|
||
up21.setHpr(0,0,0)
|
||
up21.setScale(0.5)
|
||
|
||
|
||
up22 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up22.reparentTo(render)
|
||
up22.setPos(0,-270,144)
|
||
up22.setHpr(0,0,0)
|
||
up22.setScale(0.5)
|
||
|
||
|
||
up23 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up23.reparentTo(render)
|
||
up23.setPos(0,-280,140)
|
||
up23.setHpr(0,0,0)
|
||
up23.setScale(0.5)
|
||
|
||
up24 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up24.reparentTo(render)
|
||
up24.setPos(0,-290,136)
|
||
up24.setHpr(0,0,0)
|
||
up24.setScale(0.5)
|
||
|
||
|
||
up25 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up25.reparentTo(render)
|
||
up25.setPos(0,-300,132)
|
||
up25.setHpr(0,0,0)
|
||
up25.setScale(0.5)
|
||
|
||
|
||
|
||
up26 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up26.reparentTo(render)
|
||
up26.setPos(0,-310,128)
|
||
up26.setHpr(0,0,0)
|
||
up26.setScale(0.5)
|
||
|
||
up27 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up27.reparentTo(render)
|
||
up27.setPos(0,-320,124)
|
||
up27.setHpr(0,0,0)
|
||
up27.setScale(0.5)
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
room1 = loader.loadModel("phase_10/models/cashbotHQ/ZONE15a.bam")
|
||
room1.reparentTo(render)
|
||
room1.setPos(0,-135,121)
|
||
room1.setHpr(90,0,0)
|
||
room1.setScale(1.1)
|
||
|
||
|
||
|
||
|
||
|
||
|
||
door1 = loader.loadModel("phase_10/models/cashbotHQ/DoorFrame.bam")
|
||
door1.reparentTo(render)
|
||
door1.setPos(0,-163,121)
|
||
door1.setHpr(0,0,0)
|
||
door1.setScale(0.6)
|
||
|
||
|
||
|
||
|
||
|
||
|
||
room2 = loader.loadModel("phase_12/models/bossbotHQ/BanquetInterior_1.bam")
|
||
room2.reparentTo(render)
|
||
room2.setPos(0,-233,121)
|
||
room2.setHpr(180,0,0)
|
||
room2.setScale(0.6)
|
||
|
||
|
||
trampoline3=loader.loadModel("phase_13/models/parties/trampoline_model.bam")
|
||
trampoline3.reparentTo(render)
|
||
trampoline3.setPos(-40,-430,121)
|
||
|
||
trampoline2=loader.loadModel("phase_13/models/parties/trampoline_model.bam")
|
||
trampoline2.reparentTo(render)
|
||
trampoline2.setPos(0,-430,121)
|
||
|
||
trampoline=loader.loadModel("phase_13/models/parties/trampoline_model.bam")
|
||
trampoline.reparentTo(render)
|
||
trampoline.setPos(40,-430,121)
|
||
|
||
|
||
dancefloor=loader.loadModel("phase_13/models/parties/danceFloor.bam")
|
||
dancefloor.reparentTo(render)
|
||
dancefloor.setPos(-40,-310,121)
|
||
carouselSpin=dancefloor.hprInterval(20, Vec3(360, 0, 0))
|
||
carouselSpin.loop()
|
||
|
||
|
||
|
||
merrygoround=loader.loadModel("phase_13/models/parties/partyMerryGoRound.bam")
|
||
merrygoround.reparentTo(render)
|
||
merrygoround.setPos(-50,-400,121)
|
||
merrygoround.setScale(1)
|
||
carouselSpin = merrygoround.hprInterval(2, Vec3(360, 0, 0))
|
||
carouselSpin.loop()
|
||
|
||
|
||
|
||
|
||
e = loader.loadModel("phase_9/models/cogHQ/Elevator.bam")
|
||
e.reparentTo(render)
|
||
e.setHpr(0,0,0)
|
||
e.setPos(-20,57.688,0.034)
|
||
pandaPosInterval22 = e.posInterval(13,Point3(-20,57.688,0.034),
|
||
startPos=Point3(-20,57.688,100))
|
||
pandaPosInterval33 = e.posInterval(13,Point3(-20,57.688,100),
|
||
startPos=Point3(-20,57.688,0.034))
|
||
pandaHprInterval11 = e.hprInterval(3,Point3(0,0,0),
|
||
startHpr=Point3(0, 0, 0))
|
||
pandaHprInterval22 = e.hprInterval(3,Point3(0, 0, 0),
|
||
startHpr=Point3(0, 0, 0))
|
||
pandaPace = Sequence(pandaPosInterval22,
|
||
pandaHprInterval11,
|
||
pandaPosInterval33,
|
||
pandaHprInterval22,
|
||
name="pandaPace")
|
||
pandaPace.loop()
|
||
e.find('**/wall_back').removeNode()
|
||
e.find('**/wall_front').removeNode()
|
||
c = loader.loadModel("phase_9/models/cogHQ/Elevator.bam")
|
||
c.setPos(-9.98,139.11,117.38)
|
||
c.setHpr(0,340.30,0)
|
||
c.hide()
|
||
c.reparentTo(render)
|
||
c.find('**/wall_back').removeNode()
|
||
c.find('**/wall_front').removeNode()
|
||
c.find('**/wall_left').removeNode()
|
||
c.find('**/wall_right').removeNode()
|
||
c.find('**/ceiling').removeNode()
|
||
|
||
from direct.actor.Actor import Actor
|
||
from direct.interval.IntervalGlobal import *
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
|
||
e = loader.loadModel("phase_9/models/cogHQ/Elevator.bam")
|
||
e.reparentTo(render)
|
||
e.setHpr(0,0,0)
|
||
e.setPos(29,-8,4)
|
||
pandaPosInterval22 = e.posInterval(13,Point3(29,-8,4),
|
||
startPos=Point3(29,-8,40))
|
||
pandaPosInterval33 = e.posInterval(13,Point3(29,-8,40),
|
||
startPos=Point3(29,-8,4))
|
||
pandaHprInterval11 = e.hprInterval(3,Point3(0,0,0),
|
||
startHpr=Point3(0, 0, 0))
|
||
pandaHprInterval22 = e.hprInterval(3,Point3(0, 0, 0),
|
||
startHpr=Point3(0, 0, 0))
|
||
pandaPace = Sequence(pandaPosInterval22,
|
||
pandaHprInterval11,
|
||
pandaPosInterval33,
|
||
pandaHprInterval22,
|
||
name="pandaPace")
|
||
pandaPace.loop()
|
||
e.find('**/wall_back').removeNode()
|
||
e.find('**/wall_front').removeNode()
|
||
|
||
VaultLobby = loader.loadModel("phase_10/models/cashbotHQ/ZONE17a.bam")
|
||
VaultLobby.reparentTo(render)
|
||
VaultLobby.setPos(29,13,40)
|
||
VaultLobby.setColor(0.95,0.29,0.69)
|
||
|
||
zone2 = loader.loadModel("phase_10/models/cashbotHQ/ZONE03a.bam")
|
||
zone2.reparentTo(render)
|
||
zone2.setPos(-15,-84.5,40)
|
||
zone2.setHpr(270,0,0)
|
||
zone2.setColor(0.95,0.29,0.69)
|
||
|
||
desk1 = loader.loadModel("phase_12/models/bossbotHQ/BanquetTableChairs.bam")
|
||
desk1.reparentTo(render)
|
||
desk1.setPos(-16,-85,40)
|
||
desk1.setScale(.7)
|
||
desk1.setHpr(45,0,0)
|
||
desk1.setColor(0.69,0.29,0.95)
|
||
|
||
bldg1 = loader.loadModel("phase_4/models/modules/suit_landmark_corp.bam")
|
||
bldg1.reparentTo(render)
|
||
bldg1.setPos(15,350,40)
|
||
|
||
paint1 = loader.loadModel('phase_9/models/cogHQ/PaintMixer.bam')
|
||
paint1.reparentTo(render)
|
||
paint1.setPos(29,125,40)
|
||
paint1.setHpr(0,0,0)
|
||
paint1.setScale(2)
|
||
|
||
paint2 = loader.loadModel('phase_9/models/cogHQ/PaintMixer.bam')
|
||
paint2.reparentTo(render)
|
||
paint2.setPos(29,135,40)
|
||
paint2.setHpr(0,0,0)
|
||
paint2.setScale(2)
|
||
|
||
paint3 = loader.loadModel('phase_9/models/cogHQ/PaintMixer.bam')
|
||
paint3.reparentTo(render)
|
||
paint3.setPos(29,145,40)
|
||
paint3.setHpr(0,0,0)
|
||
paint3.setScale(2)
|
||
|
||
paint4 = loader.loadModel('phase_9/models/cogHQ/PaintMixer.bam')
|
||
paint4.reparentTo(render)
|
||
paint4.setPos(29,155,40)
|
||
paint4.setHpr(0,0,0)
|
||
paint4.setScale(2)
|
||
|
||
paint5 = loader.loadModel('phase_9/models/cogHQ/PaintMixer.bam')
|
||
paint5.reparentTo(render)
|
||
paint5.setPos(29,165,40)
|
||
paint5.setHpr(0,0,0)
|
||
paint5.setScale(2)
|
||
|
||
paint6 = loader.loadModel('phase_9/models/cogHQ/PaintMixer.bam')
|
||
paint6.reparentTo(render)
|
||
paint6.setPos(29,175,40)
|
||
paint6.setHpr(0,0,0)
|
||
paint6.setScale(2)
|
||
|
||
paint7 = loader.loadModel('phase_9/models/cogHQ/PaintMixer.bam')
|
||
paint7.reparentTo(render)
|
||
paint7.setPos(29,185,40)
|
||
paint7.setHpr(0,0,0)
|
||
paint7.setScale(2)
|
||
|
||
paint8 = loader.loadModel('phase_9/models/cogHQ/PaintMixer.bam')
|
||
paint8.reparentTo(render)
|
||
paint8.setPos(29,195,40)
|
||
paint8.setHpr(0,0,0)
|
||
paint8.setScale(2)
|
||
|
||
paint9 = loader.loadModel('phase_9/models/cogHQ/PaintMixer.bam')
|
||
paint9.reparentTo(render)
|
||
paint9.setPos(29,205,40)
|
||
paint9.setHpr(0,0,0)
|
||
paint9.setScale(2)
|
||
|
||
|
||
mickey1 = Actor("phase_3/models/char/mickey-1200.bam",{"wait":"phase_3/models/char/mickey-wait.bam"})
|
||
mickey1.reparentTo(render)
|
||
mickey1.loop("wait")
|
||
mickey1.setPos(30,270,40)
|
||
mickey1.setHpr(180,0,0)
|
||
mickey1.setScale(3)
|
||
mickey1.setColor(0.23,1,0.005)
|
||
|
||
minnie1 = Actor("phase_3/models/char/minnie-1200.bam",{"wait":"phase_3/models/char/minnie-wait.bam"})
|
||
minnie1.reparentTo(render)
|
||
minnie1.loop("wait")
|
||
minnie1.setPos(40,270,40)
|
||
minnie1.setHpr(180,0,0)
|
||
minnie1.setScale(5)
|
||
minnie1.setColor(0.5,0,0)
|
||
|
||
minnie2 = Actor("phase_3/models/char/minnie-1200.bam",{"wait":"phase_3/models/char/minnie-wait.bam"})
|
||
minnie2.reparentTo(render)
|
||
minnie2.loop("wait")
|
||
minnie2.setPos(20,270,40)
|
||
minnie2.setHpr(180,0,0)
|
||
minnie2.setScale(5)
|
||
minnie2.setColor(0.5,0,0)
|
||
|
||
music1 = loader.loadModel("phase_6/models/props/music_treasure.bam")
|
||
music1.reparentTo(render)
|
||
music1.setPos(25,261,40)
|
||
|
||
bldg1 = loader.loadModel("phase_7/models/modules/boss_suit_office.bam")
|
||
bldg1.reparentTo(render)
|
||
bldg1.setPos(30,280,40)
|
||
bldg1.setColor(1,1,0)
|
||
|
||
gb1 = loader.loadModel("phase_10/models/cashbotHQ/GoldBarStack.bam")
|
||
gb1.reparentTo(render)
|
||
gb1.setPos(30,280,40)
|
||
gb1.setScale(1.5)
|
||
|
||
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
|
||
|
||
cake=Actor("phase_5/models/props/birthday-cake-mod.bam",
|
||
{"walk":"phase_5/models/props/birthday-cake-chan.bam"})
|
||
|
||
#Loopitsanimation.
|
||
cake.loop("walk")
|
||
cake.reparentTo(render)
|
||
cake.setScale(0.9)
|
||
cake.setPos(50,88,8.3)
|
||
cake.setHpr(180,0,0)
|
||
|
||
|
||
cogy=Actor("phase_13/models/parties/cogPinata_actor.bam",
|
||
{"move":"phase_13/models/parties/cogPinata_idle_anim.bam"})
|
||
|
||
#Loopitsanimation.
|
||
cogy.loop("move")
|
||
cogy.reparentTo(render)
|
||
cogy.setScale(0.7)
|
||
cogy.setPos(20,140,5.6)
|
||
cogy.setHpr(0,0,0)
|
||
#meter.setPlayRate(1.3,'move')
|
||
|
||
cogy2=Actor("phase_13/models/parties/cogPinata_actor.bam",
|
||
{"move":"phase_13/models/parties/cogPinata_idle_anim.bam"})
|
||
|
||
#Loopitsanimation.
|
||
cogy2.loop("move")
|
||
cogy2.reparentTo(render)
|
||
cogy2.setScale(0.7)
|
||
cogy2.setPos(-20,140,5.6)
|
||
cogy2.setHpr(0,0,0)
|
||
#meter.setPlayRate(1.3,'move')
|
||
|
||
|
||
cogy3=Actor("phase_13/models/parties/cogPinata_actor.bam",
|
||
{"move":"phase_13/models/parties/cogPinata_idle_anim.bam"})
|
||
|
||
cogy3.loop("move")
|
||
cogy3.reparentTo(render)
|
||
cogy3.setScale(0.7)
|
||
cogy3.setPos(-25,140,5.6)
|
||
cogy3.setHpr(0,0,0)
|
||
|
||
|
||
cogy4=Actor("phase_13/models/parties/cogPinata_actor.bam",
|
||
{"move":"phase_13/models/parties/cogPinata_idle_anim.bam"})
|
||
|
||
cogy4.loop("move")
|
||
cogy4.reparentTo(render)
|
||
cogy4.setScale(0.7)
|
||
cogy4.setPos(25,140,5.6)
|
||
cogy4.setHpr(0,0,0)
|
||
|
||
|
||
meter=Actor("phase_4/models/props/tt_a_ara_ttc_sillyMeter_default.bam",
|
||
{"move":"phase_4/models/props/tt_a_ara_ttc_sillyMeter_phaseFour.bam"})
|
||
|
||
meter.loop("move")
|
||
meter.reparentTo(render)
|
||
meter.setScale(1)
|
||
meter.setPos(0,115,5.7)
|
||
meter.setHpr(180,0,0)
|
||
|
||
|
||
|
||
hydrant3=Actor("phase_8/models/char/tt_r_ara_dga_hydrant.bam",
|
||
{"move":"phase_8/models/char/tt_a_ara_dga_hydrant_victoryDance.bam"})
|
||
|
||
|
||
hydrant3.loop("move")
|
||
hydrant3.reparentTo(render)
|
||
hydrant3.setScale(1)
|
||
hydrant3.setPos(20,5,5.7)
|
||
|
||
|
||
hydrant4=Actor("phase_8/models/char/tt_r_ara_dga_hydrant.bam",
|
||
{"move":"phase_8/models/char/tt_a_ara_dga_hydrant_victoryDance.bam"})
|
||
|
||
|
||
hydrant4.loop("move")
|
||
hydrant4.reparentTo(render)
|
||
hydrant4.setScale(1)
|
||
hydrant4.setPos(-20,5,5.7)
|
||
|
||
hydrant5=Actor("phase_8/models/char/tt_r_ara_ddl_hydrant.bam",
|
||
{"move":"phase_8/models/char/tt_a_ara_ddl_hydrant_fightCheer.bam"})
|
||
|
||
hydrant5.loop("move")
|
||
hydrant5.reparentTo(render)
|
||
hydrant5.setScale(1)
|
||
hydrant5.setPos(-43,80,5.7)
|
||
|
||
hydrant6=Actor("phase_8/models/char/tt_r_ara_ddl_hydrant.bam",
|
||
{"move":"phase_8/models/char/tt_a_ara_ddl_hydrant_fightCheer.bam"})
|
||
|
||
hydrant6.loop("move")
|
||
hydrant6.reparentTo(render)
|
||
hydrant6.setScale(1)
|
||
hydrant6.setPos(43,80,5.7)
|
||
|
||
|
||
|
||
jukebox=Actor("phase_13/models/parties/jukebox_model.bam",
|
||
{"move":"phase_13/models/parties/jukebox_dance.bam"})
|
||
|
||
#Loopitsanimation.
|
||
jukebox.loop("move")
|
||
jukebox.reparentTo(render)
|
||
jukebox.setScale(1)
|
||
jukebox.setPos(-210,120,3.525)
|
||
jukebox.setHpr(55,0,0)
|
||
|
||
|
||
environ = loader.loadModel("phase_4/models/minigames/tag_arena.bam")
|
||
environ.reparentTo(render)
|
||
environ.setPos(0,0,99)
|
||
environ.setHpr(0,0,0)
|
||
environ.setScale(2)
|
||
|
||
|
||
G = loader.loadModel("phase_4/models/modules/gazebo.bam")
|
||
G.reparentTo(render)
|
||
G.setPos(5,53,99)
|
||
G.setHpr(0,0,0)
|
||
G.setScale(1)
|
||
|
||
|
||
F = loader.loadModel("phase_4/models/props/toontown_central_fountain.bam")
|
||
F.reparentTo(render)
|
||
F.setPos(90,-60,99)
|
||
F.setHpr(0,0,0)
|
||
F.setScale(1)
|
||
|
||
|
||
F2 = loader.loadModel("phase_4/models/props/toontown_central_fountain.bam")
|
||
F2.reparentTo(render)
|
||
F2.setPos(-90,-60,99)
|
||
F2.setHpr(0,0,0)
|
||
F2.setScale(1)
|
||
|
||
TH = loader.loadModel("phase_4/models/modules/toonhall.bam")
|
||
TH.reparentTo(render)
|
||
TH.setPos(40,130,99)
|
||
TH.setHpr(0,0,0)
|
||
TH.setScale(0.7)
|
||
|
||
TH2 = loader.loadModel("phase_4/models/modules/toonhall.bam")
|
||
TH2.reparentTo(render)
|
||
TH2.setPos(-70,130,99)
|
||
TH2.setHpr(0,0,0)
|
||
TH2.setScale(0.7)
|
||
|
||
table = loader.loadModel("phase_12/models/bossbotHQ/BanquetTableChairs.bam")
|
||
table.reparentTo(render)
|
||
table.setPos(70,-27,99)
|
||
table.setHpr(0,0,0)
|
||
table.setScale(0.5)
|
||
|
||
table2 = loader.loadModel("phase_12/models/bossbotHQ/BanquetTableChairs.bam")
|
||
table2.reparentTo(render)
|
||
table2.setPos(70,27,99)
|
||
table2.setHpr(0,0,0)
|
||
table2.setScale(0.5)
|
||
|
||
table3 = loader.loadModel("phase_12/models/bossbotHQ/BanquetTableChairs.bam")
|
||
table3.reparentTo(render)
|
||
table3.setPos(-70,27,99)
|
||
table3.setHpr(0,0,0)
|
||
table3.setScale(0.5)
|
||
|
||
table4 = loader.loadModel("phase_12/models/bossbotHQ/BanquetTableChairs.bam")
|
||
table4.reparentTo(render)
|
||
table4.setPos(-70,-27,99)
|
||
table4.setHpr(0,0,0)
|
||
table4.setScale(0.5)
|
||
|
||
up = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up.reparentTo(render)
|
||
up.setPos(0,-50,101)
|
||
up.setHpr(0,0,0)
|
||
up.setScale(0.5)
|
||
|
||
up2 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up2.reparentTo(render)
|
||
up2.setPos(0,-54,104)
|
||
up2.setHpr(0,0,0)
|
||
up2.setScale(0.5)
|
||
|
||
up3 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up3.reparentTo(render)
|
||
up3.setPos(0,-58,106)
|
||
up3.setHpr(0,0,0)
|
||
up3.setScale(0.5)
|
||
|
||
up4 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up4.reparentTo(render)
|
||
up4.setPos(0,-62,108)
|
||
up4.setHpr(0,0,0)
|
||
up4.setScale(0.5)
|
||
|
||
up5 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up5.reparentTo(render)
|
||
up5.setPos(0,-66,110)
|
||
up5.setHpr(0,0,0)
|
||
up5.setScale(0.5)
|
||
|
||
up6 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up6.reparentTo(render)
|
||
up6.setPos(0,-70,112)
|
||
up6.setHpr(0,0,0)
|
||
up6.setScale(0.5)
|
||
|
||
up7 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up7.reparentTo(render)
|
||
up7.setPos(0,-74,114)
|
||
up7.setHpr(0,0,0)
|
||
up7.setScale(0.5)
|
||
|
||
|
||
up8 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up8.reparentTo(render)
|
||
up8.setPos(0,-78,116)
|
||
up8.setHpr(0,0,0)
|
||
up8.setScale(0.5)
|
||
|
||
up9 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up9.reparentTo(render)
|
||
up9.setPos(0,-82,118)
|
||
up9.setHpr(0,0,0)
|
||
up9.setScale(0.5)
|
||
|
||
up10 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up10.reparentTo(render)
|
||
up10.setPos(0,-86,120)
|
||
up10.setHpr(0,0,0)
|
||
up10.setScale(0.5)
|
||
|
||
up11 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up11.reparentTo(render)
|
||
up11.setPos(0,-200,124)
|
||
up11.setHpr(0,0,0)
|
||
up11.setScale(0.5)
|
||
|
||
|
||
up12 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up12.reparentTo(render)
|
||
up12.setPos(0,-204,128)
|
||
up12.setHpr(0,0,0)
|
||
up12.setScale(0.5)
|
||
|
||
up12 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up12.reparentTo(render)
|
||
up12.setPos(0,-208,132)
|
||
up12.setHpr(0,0,0)
|
||
up12.setScale(0.5)
|
||
|
||
up13 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up13.reparentTo(render)
|
||
up13.setPos(0,-212,136)
|
||
up13.setHpr(0,0,0)
|
||
up13.setScale(0.5)
|
||
|
||
|
||
up14 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up14.reparentTo(render)
|
||
up14.setPos(0,-216,140)
|
||
up14.setHpr(0,0,0)
|
||
up14.setScale(0.5)
|
||
|
||
|
||
up15 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up15.reparentTo(render)
|
||
up15.setPos(0,-220,144)
|
||
up15.setHpr(0,0,0)
|
||
up15.setScale(0.5)
|
||
|
||
|
||
up16 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up16.reparentTo(render)
|
||
up16.setPos(0,-224,148)
|
||
up16.setHpr(0,0,0)
|
||
up16.setScale(0.5)
|
||
|
||
|
||
up17 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up17.reparentTo(render)
|
||
up17.setPos(0,-228,152)
|
||
up17.setHpr(0,0,0)
|
||
up17.setScale(0.5)
|
||
|
||
|
||
up18 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up18.reparentTo(render)
|
||
up18.setPos(0,-232,152)
|
||
up18.setHpr(0,0,0)
|
||
up18.setScale(0.5)
|
||
|
||
|
||
up19 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up19.reparentTo(render)
|
||
up19.setPos(0,-236,152)
|
||
up19.setHpr(0,0,0)
|
||
up19.setScale(0.5)
|
||
|
||
up20 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up20.reparentTo(render)
|
||
up20.setPos(0,-250,152)
|
||
up20.setHpr(0,0,0)
|
||
up20.setScale(0.5)
|
||
|
||
up21 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up21.reparentTo(render)
|
||
up21.setPos(0,-260,148)
|
||
up21.setHpr(0,0,0)
|
||
up21.setScale(0.5)
|
||
|
||
|
||
up22 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up22.reparentTo(render)
|
||
up22.setPos(0,-270,144)
|
||
up22.setHpr(0,0,0)
|
||
up22.setScale(0.5)
|
||
|
||
|
||
up23 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up23.reparentTo(render)
|
||
up23.setPos(0,-280,140)
|
||
up23.setHpr(0,0,0)
|
||
up23.setScale(0.5)
|
||
|
||
up24 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up24.reparentTo(render)
|
||
up24.setPos(0,-290,136)
|
||
up24.setHpr(0,0,0)
|
||
up24.setScale(0.5)
|
||
|
||
|
||
up25 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up25.reparentTo(render)
|
||
up25.setPos(0,-300,132)
|
||
up25.setHpr(0,0,0)
|
||
up25.setScale(0.5)
|
||
|
||
|
||
|
||
up26 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up26.reparentTo(render)
|
||
up26.setPos(0,-310,128)
|
||
up26.setHpr(0,0,0)
|
||
up26.setScale(0.5)
|
||
|
||
up27 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up27.reparentTo(render)
|
||
up27.setPos(0,-320,124)
|
||
up27.setHpr(0,0,0)
|
||
up27.setScale(0.5)
|
||
|
||
|
||
up28 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up28.reparentTo(render)
|
||
up28.setPos(0,127,103)
|
||
up28.setHpr(0,0,0)
|
||
up28.setScale(0.5)
|
||
|
||
|
||
|
||
|
||
room1 = loader.loadModel("phase_10/models/cashbotHQ/ZONE15a.bam")
|
||
room1.reparentTo(render)
|
||
room1.setPos(0,-135,121)
|
||
room1.setHpr(90,0,0)
|
||
room1.setScale(1.1)
|
||
|
||
|
||
room3 = loader.loadModel("phase_9/models/cogHQ/BossRoomHQ.bam")
|
||
room3.reparentTo(render)
|
||
room3.setPos(0,308,96)
|
||
room3.setHpr(180,0,0)
|
||
room3.setScale(0.6)
|
||
|
||
shop1 = loader.loadModel("phase_8/models/modules/PetShopExterior_BR.bam")
|
||
shop1.reparentTo(render)
|
||
shop1.setPos(50,290,107)
|
||
shop1.setHpr(180,0,0)
|
||
shop1.setScale(0.6)
|
||
|
||
|
||
shop2 = loader.loadModel("phase_8/models/modules/PetShopExterior_BR.bam")
|
||
shop2.reparentTo(render)
|
||
shop2.setPos(-50,290,107)
|
||
shop2.setHpr(180,0,0)
|
||
shop2.setScale(0.6)
|
||
|
||
|
||
|
||
door1 = loader.loadModel("phase_10/models/cashbotHQ/DoorFrame.bam")
|
||
door1.reparentTo(render)
|
||
door1.setPos(0,-163,120)
|
||
door1.setHpr(0,0,0)
|
||
door1.setScale(0.6)
|
||
|
||
|
||
|
||
room2 = loader.loadModel("phase_12/models/bossbotHQ/BanquetInterior_1.bam")
|
||
room2.reparentTo(render)
|
||
room2.setPos(0,-233,121)
|
||
room2.setHpr(180,0,0)
|
||
room2.setScale(0.6)
|
||
|
||
trampoline3=loader.loadModel("phase_13/models/parties/trampoline_model.bam")
|
||
trampoline3.reparentTo(render)
|
||
trampoline3.setPos(-40,-430,121)
|
||
|
||
trampoline2=loader.loadModel("phase_13/models/parties/trampoline_model.bam")
|
||
trampoline2.reparentTo(render)
|
||
trampoline2.setPos(0,-430,121)
|
||
|
||
trampoline=loader.loadModel("phase_13/models/parties/trampoline_model.bam")
|
||
trampoline.reparentTo(render)
|
||
trampoline.setPos(40,-430,121)
|
||
|
||
|
||
dancefloor=loader.loadModel("phase_13/models/parties/danceFloor.bam")
|
||
dancefloor.reparentTo(render)
|
||
dancefloor.setPos(-40,-310,121)
|
||
carouselSpin=dancefloor.hprInterval(20, Vec3(360, 0, 0))
|
||
carouselSpin.loop()
|
||
|
||
|
||
merrygoround=loader.loadModel("phase_13/models/parties/partyMerryGoRound.bam")
|
||
merrygoround.reparentTo(render)
|
||
merrygoround.setPos(-50,-400,121)
|
||
merrygoround.setScale(1)
|
||
carouselSpin = merrygoround.hprInterval(2, Vec3(360, 0, 0))
|
||
carouselSpin.loop()
|
||
|
||
|
||
tunnel1 = loader.loadModel("phase_11/models/lawbotHQ/LB_Zone04a.bam")
|
||
tunnel1.reparentTo(render)
|
||
tunnel1.setPos(0,155,107)
|
||
tunnel1.setHpr(0,0,0)
|
||
tunnel1.setScale(0.3)
|
||
|
||
mic=Actor("phase_3/models/char/mickey-1200.bam",
|
||
{"move":"phase_3/models/char/mickey-wait.bam"})
|
||
|
||
#Loopitsanimation.
|
||
mic.loop("move")
|
||
mic.reparentTo(render)
|
||
mic.setScale(1.5)
|
||
mic.setPos(0,260,146.3)
|
||
mic.setHpr(0,0,0)
|
||
|
||
pond1 = loader.loadModel("phase_13/models/parties/partyTugOfWar.bam")
|
||
pond1.reparentTo(render)
|
||
pond1.setPos(0,270,107)
|
||
pond1.setHpr(0,0,0)
|
||
pond1.setScale(0.8)
|
||
|
||
|
||
room4 = loader.loadModel("phase_7/models/modules/suit_interior.bam")
|
||
room4.reparentTo(render)
|
||
room4.setPos(0,430,92.120)
|
||
room4.setHpr(0,0,0)
|
||
room4.setScale(0.8)
|
||
|
||
|
||
cage1 = loader.loadModel("phase_4/models/modules/tt_m_ara_int_ropes.bam")
|
||
cage1.reparentTo(render)
|
||
cage1.setPos(0,435,92.120)
|
||
cage1.setHpr(0,0,0)
|
||
cage1.setScale(0.5)
|
||
|
||
duck = loader.loadModel("phase_4/models/char/daisyduck_1600.bam")
|
||
duck.reparentTo(render)
|
||
duck.setPos(0,435,92.120)
|
||
duck.setHpr(180,0,0)
|
||
duck.setScale(2)
|
||
|
||
cog=Actor("phase_4/models/char/suitB-lose-mod.bam")
|
||
cog.loop("walk")
|
||
cog.reparentTo(render)
|
||
cog.setScale(0.9)
|
||
cog.setPos(0,280,107)
|
||
cog.setHpr(180,0,0)
|
||
|
||
|
||
up29 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up29.reparentTo(render)
|
||
up29.setPos(0,150,111)
|
||
up29.setHpr(0,0,0)
|
||
up29.setScale(0.5)
|
||
|
||
up30 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up30.reparentTo(render)
|
||
up30.setPos(0,154,115)
|
||
up30.setHpr(0,0,0)
|
||
up30.setScale(0.5)
|
||
|
||
|
||
up31 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up31.reparentTo(render)
|
||
up31.setPos(0,160,111)
|
||
up31.setHpr(0,0,0)
|
||
up31.setScale(0.5)
|
||
|
||
up32 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up32.reparentTo(render)
|
||
up32.setPos(0,185,107)
|
||
up32.setHpr(0,0,0)
|
||
up32.setScale(0.5)
|
||
|
||
up33 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up33.reparentTo(render)
|
||
up33.setPos(0,190,107)
|
||
up33.setHpr(0,0,0)
|
||
up33.setScale(0.5)
|
||
|
||
up34 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up34.reparentTo(render)
|
||
up34.setPos(0,180,107)
|
||
up34.setHpr(0,0,0)
|
||
up34.setScale(0.5)
|
||
|
||
|
||
up35 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up35.reparentTo(render)
|
||
up35.setPos(0,195,107)
|
||
up35.setHpr(0,0,0)
|
||
up35.setScale(0.5)
|
||
|
||
|
||
up36 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up36.reparentTo(render)
|
||
up36.setPos(0,200,107)
|
||
up36.setHpr(0,0,0)
|
||
up36.setScale(0.5)
|
||
|
||
|
||
up37 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up37.reparentTo(render)
|
||
up37.setPos(0,205,107)
|
||
up37.setHpr(0,0,0)
|
||
up37.setScale(0.5)
|
||
|
||
up38 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up38.reparentTo(render)
|
||
up38.setPos(0,210,107)
|
||
up38.setHpr(0,0,0)
|
||
up38.setScale(0.5)
|
||
|
||
|
||
up39 = loader.loadModel("phase_9/models/cogHQ/PaintMixer.bam")
|
||
up39.reparentTo(render)
|
||
up39.setPos(0,215,107)
|
||
up39.setHpr(0,0,0)
|
||
up39.setScale(0.5)
|
||
|
||
clipboard=loader.loadModel("phase_4/models/props/tt_m_prp_acs_clipboard.bam")
|
||
clipboard.reparentTo(render)
|
||
clipboard.setPos(0,0,-900)
|
||
clipboard.setHpr(0,0,0)
|
||
clipboard.setScale(1.5)
|
||
|
||
|
||
e = loader.loadModel("phase_9/models/cogHQ/Elevator.bam")
|
||
e.reparentTo(render)
|
||
e.setHpr(0,0,0)
|
||
e.setPos(-20,57.688,5.9)
|
||
pandaPosInterval22 = e.posInterval(13,Point3(-20,57.688,5.9),
|
||
startPos=Point3(-20,57.688,100))
|
||
pandaPosInterval33 = e.posInterval(13,Point3(-20,57.688,100),
|
||
startPos=Point3(-20,57.688,0.034))
|
||
pandaHprInterval11 = e.hprInterval(3,Point3(0,0,0),
|
||
startHpr=Point3(0, 0, 0))
|
||
pandaHprInterval22 = e.hprInterval(3,Point3(0, 0, 0),
|
||
startHpr=Point3(0, 0, 0))
|
||
pandaPace = Sequence(pandaPosInterval22,
|
||
pandaHprInterval11,
|
||
pandaPosInterval33,
|
||
pandaHprInterval22,
|
||
name="pandaPace")
|
||
pandaPace.loop()
|
||
e.find('**/wall_back').removeNode()
|
||
e.find('**/wall_front').removeNode()
|
||
c = loader.loadModel("phase_9/models/cogHQ/Elevator.bam")
|
||
c.setPos(-9.98,139.11,117.38)
|
||
c.setHpr(0,340.30,0)
|
||
c.hide()
|
||
c.reparentTo(render)
|
||
c.find('**/wall_back').removeNode()
|
||
c.find('**/wall_front').removeNode()
|
||
c.find('**/wall_left').removeNode()
|
||
c.find('**/wall_right').removeNode()
|
||
c.find('**/ceiling').removeNode()
|
||
|
||
and plenty more.
|
||
here is my list (1. part, other one will come after you sent me the part AFTER b_setSC Codes) :D
|
||
|
||
import toontown
|
||
def new():
|
||
return True
|
||
def new2(*a,**k):
|
||
return 2
|
||
base.cr.isPaid = new
|
||
base.cr.isParentPasswordSet = new
|
||
toontown.toon.LocalToon.LocalToon.getGameAccess = new2
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setTrackAccess([1,1,1,1,1,1,1]) - All Level 1 Gags
|
||
base.localAvatar.setTrackBonuslevel([7,7,7,7,7,7,7]) - Level 1-7 Gags get the "Garden-Gagup-Points"
|
||
base.localAvatar.setTrackProgress(3, 9999999999999999999999999999)
|
||
base.localAvatar.setExperience('9999999999999')
|
||
base.localAvatar.setMaxCarry(4)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setPetTrickPhrases([0,1,2,3,4,5,6]) - All Doodle Tricks
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setHp(137) - Set Laff to 137
|
||
base.localAvatar.setMaxHp(137) - Set Laff to 137
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
#Toontown Central
|
||
base.cr.sendSetZoneMsg(2000)
|
||
base.cr.sendSetZoneMsg(2520)
|
||
base.cr.sendSetZoneMsg(2513)
|
||
base.cr.sendSetZoneMsg(2520)
|
||
base.cr.sendSetZoneMsg(2521)
|
||
base.cr.sendSetZoneMsg(2522)
|
||
base.cr.sendSetZoneMsg(2519)
|
||
base.cr.sendSetZoneMsg(2518)
|
||
base.cr.sendSetZoneMsg(2516)
|
||
base.cr.sendSetZoneMsg(2514)
|
||
#Chip 'n' Dale's Acorn Acres
|
||
base.cr.sendSetZoneMsg(6000)
|
||
#Donald's Dock
|
||
base.cr.sendSetZoneMsg(1507)
|
||
base.cr.sendSetZoneMsg(1508)
|
||
base.cr.sendSetZoneMsg(1506)
|
||
#Daisy Garden
|
||
base.cr.sendSetZoneMsg(5501)
|
||
base.cr.sendSetZoneMsg(5502)
|
||
base.cr.sendSetZoneMsg(5503)
|
||
#Minnie's Melodyland
|
||
base.cr.sendSetZoneMsg(4503)
|
||
base.cr.sendSetZoneMsg(4504)
|
||
base.cr.sendSetZoneMsg(4506)
|
||
#The Burrgh
|
||
base.cr.sendSetZoneMsg(3507)
|
||
base.cr.sendSetZoneMsg(3508)
|
||
base.cr.sendSetZoneMsg(3509)
|
||
base.cr.sendSetZoneMsg(324112)
|
||
#Donald's Dreamland
|
||
base.cr.sendSetZoneMsg(9504)
|
||
base.cr.sendSetZoneMsg(9501)
|
||
base.cr.sendSetZoneMsg(9503)
|
||
base.cr.sendSetZoneMsg(9505)
|
||
#Sellbot HQ
|
||
base.cr.sendSetZoneMsg(11200)
|
||
base.cr.sendSetZoneMsg(11500)
|
||
base.cr.sendSetZoneMsg(11100)
|
||
#Cashbot HQ
|
||
base.cr.sendSetZoneMsg(12100)
|
||
#Lawbot HQ
|
||
base.cr.sendSetZoneMsg(13100)
|
||
base.cr.sendSetZoneMsg(13200)
|
||
#Bossbot HQ
|
||
base.cr.sendSetZoneMsg(14100)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.b_setAnimState(('swim')) - Swim at place
|
||
base.localAvatar.b_setAnimState(('run')) - Run at place
|
||
base.localAvatar.b_setAnimState(('walk')) - Walk at place
|
||
base.localAvatar.b_setAnimState(('cringe')) - Cringe (like Emote)
|
||
base.localAvatar.b_setAnimState(('Died')) - You will die
|
||
base.localAvatar.b_setAnimState(('Push')) - Push something
|
||
base.localAvatar.b_setAnimState(('Squish')) - Get squished
|
||
base.localAvatar.b_setAnimState(('victory')) - Dance after Cog Battle
|
||
base.localAvatar.b_setAnimState(('ScientistPlay')) - From Scientists by the Silly Meter
|
||
base.localAvatar.b_setAnimState(('ScientistWork')) - From Scientists by the Silly Meter
|
||
base.localAvatar.b_setAnimState(('ScientistEmcee')) - From Scientists by the Silly Meter
|
||
base.localAvatar.b_setAnimState(('ScientistJealous')) - From Scientists by the Silly Meter
|
||
base.localAvatar.b_setAnimState(('GolfPuttLoop')) - From Minigolf
|
||
base.localAvatar.b_setAnimState(('GolfPuttSwing')) - From Minigolf
|
||
base.localAvatar.b_setAnimState(('Catching')) - From Catch Game
|
||
base.localAvatar.b_setAnimState(('dive')) - Dive like in "Treasure Dive"-Minigame
|
||
base.localAvatar.b_setAnimState(('GolfRotateRight')) - From Minigolf
|
||
base.localAvatar.b_setAnimState(('GolfRotateLeft')) - From Minigolf
|
||
base.localAvatar.b_setAnimState(('TeleportOut')) - Don't Work?
|
||
base.localAvatar.b_setAnimState(('CogThiefRunning')) - Weird Running
|
||
base.localAvatar.b_setAnimState(('jumpSquat')) - Jump and Stuck in Air
|
||
base.localAvatar.b_setAnimState(('OpenBook')) - Opens Book
|
||
base.localAvatar.b_setAnimState(('CloseBook')) - Closes Book
|
||
base.localAvatar.b_setAnimState(('FallDown')) - Like "Banana Peel"
|
||
base.localAvatar.b_setAnimState("Sit")
|
||
base.localAvatar.b_setAnimState("Push")
|
||
base.localAvatar.b_setAnimState("Sad")
|
||
base.localAvatar.b_setAnimState("Sleep")
|
||
base.localAvatar.b_setAnimState('teleport') - Don't work?
|
||
base.localAvatar.b_setAnimState('Flattened') - You're Flat
|
||
base.localAvatar.b_setAnimState('ReadBook') - Open Book
|
||
base.localAvatar.b_setAnimState('CatchEating') - From Catch Game
|
||
base.localAvatar.b_setAnimState('TeleportOut') - Teleport
|
||
base.localAvatar.b_setAnimState('TeleportIn') - Teleport
|
||
base.localAvatar.b_setAnimState('CatchEating') - From Catch Game
|
||
base.localAvatar.enterSitStart() - Sit in Air
|
||
base.localAvatar.loop('reel') - Fishing?
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setEmoteAccess([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24]) - All Emotes
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.b_setSCSinging(4) - SPEEDCHAT PLUS (For more Speeches ask the Owner "Vanitas" at his Youtubeprofile "ImVirAs")
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setBankMoney(10000) - Get 10000 Beans into your Bean Bank
|
||
base.localAvatar.setMaxBankMoney(10000) - Set Max Beans
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setColor(0) - Black Nose
|
||
base.localAvatar.setColor(1) - White Nose
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setName(('I am from TheInjectedToons Clan')) - Changing Name Client
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setXYZH(86.419,-80.021,22.293,-10.502) - At the Roof on your Estate
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.numPies = 99 - Throwing Pie's like in VP Battle
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.find('**/hands').removeNode() - Do this one first
|
||
base.localAvatar.find('**/hands').setColor(1,0,0) - Red Gloves
|
||
base.localAvatar.find('**/hands').setColor(0,1,0) - Green Gloves
|
||
base.localAvatar.find('**/hands').setColor(0,0,1) - Blue Gloves
|
||
base.localAvatar.find('**/hands').setColor(1,1,0) - Yellow Gloves
|
||
base.localAvatar.find('**/hands').setColor(0,1,1) - Cyan Gloves
|
||
base.localAvatar.find('**/hands').setColor(1,0,1) - Purple Gloves
|
||
base.localAvatar.find('**/hands').setColor(0,0,0) - Black Gloves
|
||
base.localAvatar.find('**/hands').setColor(1,1,1) - White Gloves
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.talkAssistant.sendOpenTalk('You can enter a text - it will be as big you want')
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.physControls.avatarControlForwardSpeed=100
|
||
base.localAvatar.physControls.avatarControlRotateSpeed=130
|
||
base.localAvatar.physControls.avatarControlReverseSpeed=75
|
||
base.localAvatar.physControls.avatarControlJumpForce=50
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.book.pages[1].showPop = 1 - Showing PPL in Districts (Enter before you open Book)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setGhostMode(2) - Change yourself into a ghost (You can run into walls)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setTickets(0) - Set Race Tickets
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.toonUp(137) - Make a Toonup
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setHpr(0,0,0) - Change the numbers, then you'll see what it does.
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.takeDamage((137)) - You Laff will increase
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setPinkSlips((1)) - Set your Pink Slips to 1
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.collisionsOff() - Run into everything
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setScale(1,10,1) - Makes your Toon bigger
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setMaxMoney(1230) - Set Max Jellies
|
||
base.localAvatar.setMoney(1230) - Set your jellies to 1230
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setMaxClothes(100) - needs to be testing
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setSpeedChatStyleIndex(4) - changes color of speedchat
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setCogLevels([49,49,49,49]) - set's your disguise levels
|
||
base.localAvatar.setCogTypes([77,77,77,77]) - needs to be testing
|
||
base.localAvatar.setCogParts([0,0,0,0]) - Change the numbers = change the disguise parts
|
||
base.localAvatar.setCogMerits([0,0,0,0]) - Change the numbers = change the merits
|
||
base.localAvatar.setCogIndex(2) - Cog Suit Client Sided
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setMaxFishTank(255) - Changing the fish tank
|
||
base.localAvatar.setFishTank([???],[???],[???]) - I have to find that out
|
||
base.localAvatar.setFishingRod(3) - Changes the rod
|
||
base.localAvatar.setFishingTrohpies([1,2,3,4,5,6,7]) - All fishing trohpies
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setMaxFlowerBasket(255) - Changes the Max Flowers you can wear
|
||
base.localAvatar.setGardenTrophies([1,2,3,4]) - All garden trophies
|
||
base.localAvatar.setShovel(3)
|
||
base.localAvatar.setShovelSkill(1000)
|
||
base.localAvatar.setWateringCan(3)
|
||
base.localAvatar.setWateringCanSkill(1000)
|
||
base.localAvatar.promoteWateringCan(3)
|
||
base.localAvatar.promoteShovel(3)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
base.accept("f2", base.localAvatar.b_setAnimState, ['SitStart'])
|
||
base.accept("f3", base.localAvatar.b_setAnimState, ['Died'])
|
||
base.accept("f4", base.localAvatar.collisionsOff, [])
|
||
base.accept("f5", base.localAvatar.b_setAnimState, ['Flattened'])
|
||
base.accept("f6", base.localAvatar.b_setAnimState, ['CatchEating'])
|
||
base.accept("f9", base.localAvatar.b_setAnimState, ['TeleportIn'])
|
||
base.accept("f10", base.localAvatar.b_setAnimState, ['TeleportOut'])
|
||
base.accept("f11", base.localAvatar.b_setAnimState, ['Push'])
|
||
base.accept("f12", base.localAvatar.b_setAnimState, ['ReadBook'])
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
messenger.send.('gardenGame')
|
||
messenger.send('nameTagShowAvId')
|
||
messenger.send('clearOutToonInterior')
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.wireframeOn()
|
||
base.wireframeOff()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.b_setLocation(base.localAvatar.defaultShard, word) - Spy Code
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setSystemMessage(0,'Type in any message')
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setCheesyEffect(1,0,0) - change 1 to 1-15
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setExperience('99999999999999')
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setTeleportAccess([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.loop('firehose')
|
||
base.localAvatar.loop('right-hand-start')
|
||
base.localAvatar.loop('rotateL-putt')
|
||
base.localAvatar.loop('slip-forward')
|
||
base.localAvatar.loop('catch-eatnrun')
|
||
base.localAvatar.loop('tickle')
|
||
base.localAvatar.loop('water-gun')
|
||
base.localAvatar.loop('leverNeutral')
|
||
base.localAvatar.loop('swim')
|
||
base.localAvatar.loop('catch-run')
|
||
base.localAvatar.loop('sad-neutral')
|
||
base.localAvatar.loop('pet-loop')
|
||
base.localAvatar.loop('jump-squat')
|
||
base.localAvatar.loop('wave')
|
||
base.localAvatar.loop('reel-neutral')
|
||
base.localAvatar.loop('pole-neutral')
|
||
base.localAvatar.loop('bank')
|
||
base.localAvatar.loop('down')
|
||
base.localAvatar.loop('takePhone')
|
||
base.localAvatar.loop('good-putt')
|
||
base.localAvatar.loop('victory')
|
||
base.localAvatar.loop('lose')
|
||
base.localAvatar.loop('cringe')
|
||
base.localAvatar.loop('right')
|
||
base.localAvatar.loop('headdown-putt')
|
||
base.localAvatar.loop('conked')
|
||
base.localAvatar.loop('jump')
|
||
base.localAvatar.loop('into-putt')
|
||
base.localAvatar.loop('fish-end')
|
||
base.localAvatar.loop('running-jump-land')
|
||
base.localAvatar.loop('shrug')
|
||
base.localAvatar.loop('sprinkle-dust')
|
||
base.localAvatar.loop('hold-bottle')
|
||
base.localAvatar.loop('right-hand')
|
||
base.localAvatar.loop('melt')
|
||
base.localAvatar.loop('pet-start')
|
||
base.localAvatar.loop('look-putt')
|
||
base.localAvatar.loop('loop-putt')
|
||
base.localAvatar.loop('lookloop-putt')
|
||
base.localAvatar.loop('juggle')
|
||
base.localAvatar.loop('run')
|
||
base.localAvatar.loop('pushbutton')
|
||
base.localAvatar.loop('sidestep-right')
|
||
base.localAvatar.loop('water')
|
||
base.localAvatar.loop('right-point-start')
|
||
base.localAvatar.loop('jump-land')
|
||
base.localAvatar.loop('struggle')
|
||
base.localAvatar.loop('running-jump')
|
||
base.localAvatar.loop('callPet')
|
||
base.localAvatar.loop('throw')
|
||
base.localAvatar.loop('catch-eatneutral')
|
||
base.localAvatar.loop('tug-o-war')
|
||
base.localAvatar.loop('bow')
|
||
base.localAvatar.loop('swing')
|
||
base.localAvatar.loop('climb')
|
||
base.localAvatar.loop('think')
|
||
base.localAvatar.loop('catch-intro-throw')
|
||
base.localAvatar.loop('walk')
|
||
base.localAvatar.loop('leverPull')
|
||
base.localAvatar.loop('pole')
|
||
base.localAvatar.loop('periscope')
|
||
base.localAvatar.loop('duck')
|
||
base.localAvatar.loop('curtsy')
|
||
base.localAvatar.loop('bad-putt')
|
||
base.localAvatar.loop('loop-dig')
|
||
base.localAvatar.loop('angry')
|
||
base.localAvatar.loop('bored')
|
||
base.localAvatar.loop('swing-putt')
|
||
base.localAvatar.loop('pet-end')
|
||
base.localAvatar.loop('spit')
|
||
base.localAvatar.loop('right-point')
|
||
base.localAvatar.loop('start-dig')
|
||
base.localAvatar.loop('castlong')
|
||
base.localAvatar.loop('running-jump-squat')
|
||
base.localAvatar.loop('neutral')
|
||
base.localAvatar.loop('jump-idle')
|
||
base.localAvatar.loop('reel')
|
||
base.localAvatar.loop('slip-backward')
|
||
base.localAvatar.loop('sound')
|
||
base.localAvatar.loop('sidestep-left')
|
||
base.localAvatar.loop('up')
|
||
base.localAvatar.loop('fish-again')
|
||
base.localAvatar.loop('cast')
|
||
base.localAvatar.loop('phoneBack')
|
||
base.localAvatar.loop('phoneNeutral')
|
||
base.localAvatar.loop('battlecast')
|
||
base.localAvatar.loop('sit-start')
|
||
base.localAvatar.loop('toss')
|
||
base.localAvatar.loop('happy-dance')
|
||
base.localAvatar.loop('confused')
|
||
base.localAvatar.loop('teleport')
|
||
base.localAvatar.loop('sit')
|
||
base.localAvatar.loop('sad-walk')
|
||
base.localAvatar.loop('five-props-start')
|
||
base.localAvatar.loop('book')
|
||
base.localAvatar.loop('fish-neutral')
|
||
base.localAvatar.loop('tutorial-neutral')
|
||
base.localAvatar.loop('badloop-putt')
|
||
base.localAvatar.loop('give-props')
|
||
base.localAvatar.loop('hold-magnet')
|
||
base.localAvatar.loop('hypnotize')
|
||
base.localAvatar.loop('left-point')
|
||
base.localAvatar.loop('leverReach')
|
||
base.localAvatar.loop('feedPet')
|
||
base.localAvatar.loop('reel-H')
|
||
base.localAvatar.loop('applause')
|
||
base.localAvatar.loop('smooch')
|
||
base.localAvatar.loop('rotateR-putt')
|
||
base.localAvatar.loop('running-jump-idle')
|
||
base.localAvatar.loop('push')
|
||
base.localAvatar.loop('catch-neutral')
|
||
base.localAvatar.loop('left')
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
TTGloves = base.localAvatar.findAllMatches('**/hands')
|
||
base.accept('1', TTGloves.setColor, [0.97,0.3,0.3])
|
||
base.accept('2', TTGloves.setColor, [0.96,0.7,0.7])
|
||
base.accept('3', TTGloves.setColor, [0.69,0.29,0.95])
|
||
base.accept('4', TTGloves.setColor, [0.38,0.98,0.43])
|
||
base.accept('5', TTGloves.setColor, [1,0.90,0.30])
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setSystemMessage(0,Collisions Off')
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setCheesyEffect(1,0,0) - Change the first number 1-15
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
messenger.send('enterStickerBook')
|
||
def part2():
|
||
from toontown.shtiker.MapPage import MapPage
|
||
gohome = MapPage()
|
||
gohome.goHome()
|
||
def part3():
|
||
CurrentArea = base.localAvatar.getZoneId()
|
||
print CurrentArea
|
||
def part4():
|
||
messenger.send('kickToPlayground', [1])
|
||
def onTime():
|
||
update = Sequence()
|
||
update.append(Func(intro))
|
||
update.append(Wait(10))
|
||
update.append(Func(part2))
|
||
update.append(Wait(20))
|
||
update.append(Func(part3))
|
||
update.append(Wait(5))
|
||
update.append(Func(part4))
|
||
update.append(Wait(15))
|
||
update.start()
|
||
onTime()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setEmoteState(0,0)
|
||
base.localAvatar.b_setSCSinging(50701)
|
||
def part2():
|
||
base.talkAssistant.sendOpenTalk('LOOK I CAN DO IT TOO')
|
||
base.localAvatar.b_setEmoteState(23,1)
|
||
def part3():
|
||
base.talkAssistant.sendOpenTalk('I AM NOT THE ANTIS DONT GIVE THEM CREDIT')
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part4():
|
||
base.talkAssistant.sendOpenTalk('THE ANTIS FAIL THEY CANT DO ANYTHING DONT BE AFRAID')
|
||
base.localAvatar.b_setEmoteState(24,1)
|
||
def part5():
|
||
base.talkAssistant.sendOpenTalk('YOUR FRIENDS')
|
||
def part6():
|
||
base.talkAssistant.sendOpenTalk('TEAM DOG')
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part7():
|
||
base.localAvatar.b_setSCSinging(50202)
|
||
base.localAvatar.b_setEmoteState(0,0)
|
||
def addbase.cr.sendSetZoneMsg():
|
||
word = base.localAvatar.getZoneId()
|
||
word += 10
|
||
base.localAvatar.b_setLocation(base.localAvatar.defaultShard, word)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part3))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part4))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part5))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part6))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part7))
|
||
seq.append(Wait(4))
|
||
seq.append(Func(addZone))
|
||
seq.start()
|
||
onTime()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setEmoteState(0,0)
|
||
base.localAvatar.b_setSCSinging(50702)
|
||
def part2():
|
||
base.talkAssistant.sendOpenTalk('FAKER!?!?')
|
||
base.localAvatar.b_setEmoteState(23,1)
|
||
def part3():
|
||
base.talkAssistant.sendOpenTalk('MUAHAHA')
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part4():
|
||
base.talkAssistant.sendOpenTalk('OOO U GOT PWNED')
|
||
base.localAvatar.b_setEmoteState(24,1)
|
||
def part5():
|
||
base.talkAssistant.sendOpenTalk('AND REMEMBER')
|
||
def part6():
|
||
base.talkAssistant.sendOpenTalk('TOONTOWN FAILS AT STOPPING HOCK ERRS')
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part7():
|
||
base.localAvatar.b_setSCSinging(50800)
|
||
base.localAvatar.b_setEmoteState(0,0)
|
||
def addzone():
|
||
word = base.localAvatar.getZoneId()
|
||
word += 10
|
||
base.localAvatar.b_setLocation(base.localAvatar.defaultShard, word)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part3))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part4))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part5))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part6))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part7))
|
||
seq.append(Wait(4))
|
||
seq.append(Func(addzone))
|
||
seq.start()
|
||
onTime()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
CurrentArea = base.localAvatar.getZoneId()
|
||
print CurrentArea
|
||
file_path = "f:/output.txt"
|
||
file_to_write_to = open(file_path, 'w')
|
||
file_to_write_to.write(str(CurrentArea))
|
||
file_to_write_to.flush()
|
||
file_to_write_to.close()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
gloves = loader.loadTexture("phase_4/maps/robber-baron.jpg")
|
||
gloves = loader.loadTexture("phase_10/maps/BlackWhiteChecks.jpg")
|
||
gloves = loader.loadTexture("phase_13/maps/parties_palette_4amla_3.jpg")
|
||
gloves = loader.loadTexture("phase_9/maps/metal_plate_256_irregular.jpg")
|
||
gloves = loader.loadTexture("phase_10/maps/CBWrapperBill.jpg")
|
||
gloves = loader.loadTexture("phase_11/maps/LB_WoodPanel2.jpg")
|
||
gloves = loader.loadTexture("phase_4/maps/robber-baron.jpg")
|
||
gloves = loader.loadTexture("phase_8/maps/snow_particle.jpg")
|
||
gloves = loader.loadTexture("phase_8/maps/nightskytop.jpg")
|
||
gloves = loader.loadTexture("phase_5/maps/dollar_10.jpg")
|
||
gloves = loader.loadTexture("phase_4/maps/it.jpg")
|
||
|
||
base.localAvatar.findAllMatches('**/hands').setTexture(gloves, 1)
|
||
base.localAvatar.findAllMatches('**/torso-bot').setTexture(gloves, 1)
|
||
base.localAvatar.findAllMatches('**/torso-top').setTexture(gloves, 1)
|
||
base.localAvatar.findAllMatches('**/sleeves').setTexture(gloves, 1)
|
||
base.localAvatar.findAllMatches('**/feet').setTexture(gloves, 1)
|
||
base.localAvatar.findAllMatches('**/arms').setTexture(gloves, 1)
|
||
base.localAvatar.findAllMatches('**/neck').setTexture(gloves, 1)
|
||
base.localAvatar.findAllMatches('**/legs').setTexture(gloves, 1)
|
||
base.localAvatar.findAllMatches('**/top').setTexture(gloves, 1)
|
||
base.localAvatar.findAllMatches('**/muzzle-short-neutral').setTexture(gloves, 1)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.Disconnect('20.20.20')322374messenger.send('<<name/toonid>>')
|
||
|
||
base.Disconnect('Enter.Ip.Addresshere')
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setFriendsList([(Toon ID here, 1)])
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.disableAllAudio()
|
||
base.enableAllAudio()
|
||
base.enableMusic(False)
|
||
base.enableSoundEffects(True)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
#SIDEWAYS SWIM
|
||
|
||
base.localAvatar.setHpr(0,0,80)
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.b_setAnimState(('swim'))
|
||
base.localAvatar.collisionsOff()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
#SCARECROW
|
||
|
||
base.localAvatar.collisionsOff()
|
||
base.cr.sendSetZoneMsgMsg(7000)
|
||
base.localAvatar.b_setAnimState('teleport')
|
||
base.cr.sendSetZoneMsgMsg(2000)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
#MUSIC (Elevator, BLDG's last Floor, Somethin Weird, LB courtyard)
|
||
|
||
sfx1 = loader.loadSfx( 'phase_7/audio/bgm/tt_elevator.mid' )
|
||
base.accept('f1', sfx1.play, [])
|
||
|
||
sfx2 = loader.loadSfx( 'phase_7/audio/bgm/encntr_suit_winning_indoor.mid' )
|
||
base.accept('f2', sfx2.play, [])
|
||
|
||
sfx3 = loader.loadSfx( 'phase_9/audio/bgm/encntr_head_suit_theme.mid' )
|
||
base.accept('f3', sfx3.play, [])
|
||
|
||
sfx4 = loader.loadSfx( 'phase_11/audio/bgm/LB_courtyard.mid' )
|
||
base.accept('f4', sfx4.play, [])
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.winterCarolingTargetMet(9999)
|
||
base.localAvatar.trickOrTreatTargetMet(9999)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.announceBingo()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setQuestCarryLimit(4)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setShovelSkill(30)
|
||
base.localAvatar.setWateringCanSkill(50)
|
||
base.localAvatar.promoteWateringCan(3)
|
||
base.localAvatar.promoteShovel(3)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
#Smile
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part2():
|
||
base.localAvatar.setCheesyEffect(13, 0, 0)
|
||
def part3():
|
||
base.localAvatar.setCheesyEffect(0, 0, 0)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part3))
|
||
seq.start()
|
||
onTime()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.wireframeOn()
|
||
base.wireframeOff()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.enableBlend()
|
||
base.localAvatar.disableBlend()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
#Professor Shirt
|
||
shirts = loader.loadTexture("phase_4/maps/tt_t_chr_shirt_scientistB.jpg")
|
||
sleeve = loader.loadTexture("phase_4/maps/tt_t_chr_shirtSleeve_scientist.jpg")
|
||
shorts = loader.loadTexture("phase_4/maps/tt_t_chr_shorts_scientistB.jpg")
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/torso-top').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/sleeves').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/torso-top').setTexture(shirts, 1)
|
||
base.localAvatar.findAllMatches('**/torso-bot').setTexture(shorts, 1)
|
||
base.localAvatar.findAllMatches('**/sleeves').setTexture(sleeve, 1)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
TTGloves = base.localAvatar.findAllMatches('**/hands')
|
||
|
||
TTGloves.setColor(0.97,0.3,0.3)
|
||
TTGloves.setColor(0.96,0.7,0.7)
|
||
TTGloves.setColor(0.69,0.29,0.95)
|
||
TTGloves.setColor(0.38,0.98,0.43)
|
||
TTGloves.setColor(1,0.90,0.30)
|
||
TTGloves.setColor(0.35,0.35,0.85)
|
||
TTGloves.setColor(0.3,0.64,0.85)
|
||
TTGloves.setColor(1,0.5,0.18)
|
||
TTGloves.setColor(1,1,0.57)
|
||
TTGloves.setColor(0.55,0.55,1)
|
||
TTGloves.setColor(0.25,0.25,0.3)
|
||
TTGloves.setColor(1,1,1)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.setFriendsList(Toon ID here)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.disableAllAudio()
|
||
base.enableAllAudio()
|
||
base.enableMusic(False)
|
||
base.enableSoundEffects(True)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
messenger.send([base.localAvatar.b_setAnimState('victory', 10)])
|
||
messenger.send([base.localAvatar.b_setAnimState(('swim', 10))])
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
# No eyes (not tried yet)
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.setCogIndex(0)
|
||
def part2():
|
||
base.localAvatar.setGhostMode(1)
|
||
def part3():
|
||
base.localAvatar.setCogIndex(4)
|
||
def onTime():
|
||
s = Sequence()
|
||
s.append(Func(intro))
|
||
s.append(Wait(3))
|
||
s.append(Func(part2))
|
||
s.append(Wait(3))
|
||
s.append(Func(part3))
|
||
s.start()
|
||
onTime()
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
base.localAvatar.findAllMatches('**/hands').setColorScale(25)
|
||
shirts = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirt_halloween4.jpg")
|
||
sleeve = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirtSleeve_halloween4.jpg")
|
||
base.localAvatar.findAllMatches('**/hands').setTexture(sleeve, 2)
|
||
|
||
base.localAvatar.findAllMatches('**/torso-top').setColorScale(25)
|
||
shirts =loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirt_halloween4.jpg")
|
||
sleeve =loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirtSleeve_halloween4.jpg")
|
||
base.localAvatar.findAllMatches('**/torso-top').setTexture(sleeve, 2)
|
||
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColorScale(25)
|
||
shirts = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirt_halloween4.jpg")
|
||
sleeve = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirtSleeve_halloween4.jpg")
|
||
base.localAvatar.findAllMatches('**/torso-bot').setTexture(sleeve, 2)
|
||
|
||
base.localAvatar.findAllMatches('**/sleeves').setColorScale(25)
|
||
shirts = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirt_halloween4.jpg")
|
||
sleeve = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirtSleeve_halloween4.jpg")
|
||
base.localAvatar.findAllMatches('**/sleeves').setTexture(sleeve, 2)
|
||
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0,1,0)
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColor(0,1,0)
|
||
base.localAvatar.findAllMatches('**/torso-top').setColor(0,1,0)
|
||
base.localAvatar.findAllMatches('**/sleeves').setColor(0,1,0)
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
ToonTown Injector hacking codes!
|
||
|
||
To activate globalteleport: /globalteleport Must have multihack program for these codes to work
|
||
To activate goonbomb: /goonbomb
|
||
|
||
base.localAvatar.setNumPies(999)
|
||
base.localAvatar.setPieType(0) Enter 0-7 for different pie types! :O Note: If you enter 6, aka the wedding cake, you will be disconnected! Also, others can't see this.
|
||
|
||
base.accept('1', localAvatar.setNumPies(999))
|
||
base.accept('2', localAvatar.findAllMatches('**/hands').setColor, [0.96,0.7,0.7])
|
||
base.accept('3', localAvatar.findAllMatches('**/hands').setColor, [0.69,0.29,0.95])
|
||
base.accept('4', localAvatar.findAllMatches('**/hands').setColor, [0.38,0.98,0.43])
|
||
base.accept('5', localAvatar.findAllMatches('**/hands').setColor, [1,0.90,0.30])
|
||
Patcher Version 1.0b'])
|
||
base.localAvatar.b_setSCSinging(50103) Walk the Plank!
|
||
base.localAvatar.b_setSCSinging(50108) I don't fear death - I attune it!
|
||
base.localAvatar.b_setSCSinging(50702) Yo-Ho-Ho
|
||
base.localAvatar.b_setSCSinging(50107) treasure be the measure of our pleasure!
|
||
base.localAvatar.b_setSCSinging(50205) Addle-minded Fool!
|
||
base.localAvatar.b_setSCSinging(50305) Yer not so bad yerself!
|
||
base.localAvatar.b_setSCSinging(50207) Ye be one dubloon late of ye full hull mate!
|
||
base.localAvatar.b_setSCSinging(50104) Dead men tell no tales...
|
||
base.localAvatar.b_setSCSinging(50210) The horizon be as empty as yer head!
|
||
base.localAvatar.b_setSCSinging(50203) Scoundrel!
|
||
base.localAvatar.b_setSCSinging(50209) Touch me loot and ye'll get the boot!
|
||
|
||
|
||
|
||
base.cr.sendSetZoneMsg(7000)
|
||
base.localAvatar.setCogIndex(2) - its lets you be in cog suit where others cant see but they can see the chat phrases
|
||
base.localAvatar.setPinkSlips((1))
|
||
base.cr.sendSetZoneMsg(7000) - funny farm
|
||
base.localAvatar.b_setAnimState(('swim')) - swim in air
|
||
base.localAvatar.b_setAnimState(('run')) - run in place
|
||
base.localAvatar.b_setAnimState(('walk') ) - walk in place
|
||
base.localAvatar.b_setAnimState(('cringe ')) - cringe in place lol
|
||
base.localAvatar.enterSitStart()is sit - sit in air
|
||
base.localAvatar.takeDamage(500) - go sad wit full laff (will say u have no laff but u rly have full)
|
||
base.localAvatar.collisionsOff() - boundaries off walk through everything
|
||
base.localAvatar.setHpr(0,0,315) - sideways (alter th last number for degree)
|
||
base.localAvatar.setTrackAccess([1,1,1,1 ,1,1,1])
|
||
base.localAvatar.b_setAnimState('telepor t')
|
||
base.localAvatar.setTickets(800)
|
||
base.localAvatar.b_setAnimState(('Scient istJealous'))
|
||
base.localAvatar.b_setAnimState(('Push') )
|
||
base.localAvatar.b_setAnimState(('flat') )
|
||
base.localAvatar.b_setAnimState(('Squish '))
|
||
base.localAvatar.b_setAnimState(('victor y'))
|
||
base.localAvatar.setGhostMode(2)
|
||
base.localAvatar.b_setAnimState(('Scient istWork'))
|
||
base.localAvatar.b_setAnimState(('Scient istPlay'))
|
||
base.localAvatar.b_setAnimState('Scienti stLessWork')
|
||
base.localAvatar.b_setAnimState('Scienti stEmcee')
|
||
base.localAvatar.b_setAnimState(('GolfPu ttLoop'))
|
||
base.localAvatar.b_setAnimState(('GolfGo odPutt'))
|
||
base.localAvatar.b_setAnimState(('GolfPu ttSwing'))
|
||
base.localAvatar.b_setAnimState(('GolfBa dPutt'))
|
||
base.localAvatar.setEmoteAccess([1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1])
|
||
base.localAvatar.b_setAnimState(('Catchi ng'))
|
||
base.localAvatar.b_setAnimState('ReadBook')
|
||
base.localAvatar.b_setAnimState(('Flattened'))
|
||
base.localAvatar.b_setAnimState(('Died'))
|
||
base.localAvatar.b_setAnimState(('dive'))
|
||
base.localAvatar.b_setAnimState('CatchEating')
|
||
base.localAvatar.b_setAnimState('TeleportOut')
|
||
base.localAvatar.b_setAnimState('TeleportIn')
|
||
base.localAvatar.setName(('put the name here'))
|
||
base.localAvatar.setXYZH(86.419,-80.021, 22.293,-10.502)
|
||
base.localAvatar.b_setAnimState(('GolfRo tateRight'))
|
||
base.localAvatar.b_setAnimState(('GolfRo tateLeft'))
|
||
|
||
base.localAvatar.setBankMoney(10000)
|
||
base.localAvatar.setMaxBankMoney(10000)
|
||
|
||
base.localAvatar.b_setAnimState(('CogThiefRunning'))
|
||
base.localAvatar.b_setAnimState(('jumpSquat'))
|
||
base.localAvatar.b_setAnimState(('OpenBook'))
|
||
base.localAvatar.b_setAnimState(('FallDown'))
|
||
base.localAvatar.b_setAnimState(('TeleportingOut'))
|
||
|
||
base.localAvatar.takeDamage((500))
|
||
|
||
base.localAvatar.find('**/hands').setColor(255,0,0)
|
||
base.talkAssistant.sendOpenTalk('I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ I AM FRITZ')
|
||
|
||
base.cr.sendSetZoneMsg(14100)
|
||
base.cr.sendSetZoneMsg(13100)
|
||
base.cr.sendSetZoneMsg(12100)
|
||
base.cr.sendSetZoneMsg(11100)
|
||
|
||
base.localAvatar.b_setSCSinging(4)
|
||
base.localAvatar.loop('reel')
|
||
base.localAvatar.setEmoteAccess([1,1,1,1 ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 ,1])
|
||
|
||
base.localAvatar.setGhostMode(8)
|
||
base.localAvatar.setGhostMode(0)
|
||
base.localAvatar.setGhostMode(22)
|
||
|
||
base.localAvatar.setCogIndex(0)
|
||
|
||
base.wireframeOn()
|
||
|
||
base.localAvatar.setTeleportAccess([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
|
||
base.localAvatar.physControls.avatarControlJumpForce = 100
|
||
|
||
Hackers Chat Plans:
|
||
|
||
phase_3.5/models/gui/chat_input_gui.bam
|
||
|
||
use node.ls()
|
||
|
||
node.find('**/the name from the ls')
|
||
|
||
use it to type in onscreen text and display it on the other persons screen using a network connection
|
||
|
||
Display text using: phase_3.5/models/gui/frame.bam or: phase_3.5/models/gui/photo
|
||
_frame.bam
|
||
|
||
Display people in the chatroom using: phase_3.5/models/gui/frame4names.bam
|
||
|
||
Use the arrows from this file to scroll up and down the displayed text using a Direct Scroller:
|
||
|
||
phase_3.5/models/gui/friendslist_gui.bam
|
||
|
||
use node.ls() and find()
|
||
|
||
|
||
Good Plans:
|
||
|
||
Cog Games: phase_10/models/cashbothq/zone17a.bam
|
||
|
||
interior: phase_3.5/models/modules/toon_interior_t.bam or: phase_3.5/models/modules/toon_interior.bam etc.
|
||
|
||
Tutorial: phase_3.5/models/modules/toon_interior_tutorial.bam
|
||
|
||
Counter/wall: phase_3.5/models/modules/countershort.bam or: phase_3.5/models/modules/counter.bam
|
||
|
||
Gags: phase_3.5/models/gui/inventory_icons.bam
|
||
|
||
Clock: phase_3.5/models/gui/clock_gui.bam
|
||
|
||
Film Strip: phase_3.5/models/gui/filmstrip.bam
|
||
|
||
Holiday Trees: phase_3.5/models/props/winter_trees or phase_3.5/models/props/
|
||
|
||
Motion Path:
|
||
|
||
from direct.directutil import Mopath
|
||
from direct.interval.MopathInterval import *
|
||
|
||
motionPath1 = Mopath.Mopath()
|
||
motionPath1.loadFile("Filepath")
|
||
|
||
moInterval = MopathInterval(motionPath1, base.localAvatar, name = "avMoP")
|
||
moInterval.start()
|
||
|
||
messenger.send('entertreasureSphere-415151763', [1])
|
||
messenger.send('entertreasureSphere-415256834', [1])
|
||
messenger.send('entertreasureSphere-415924840', [1]) - Near Tree in the back
|
||
messenger.send('entertreasureSphere-415964177', [1])
|
||
messenger.send('entertreasureSphere-415972469', [1])
|
||
|
||
base.localAvatar.find('**/eyes-short').removeNode()
|
||
|
||
base.localAvatar.find('**/joint_pupilR_short').removeNode()
|
||
base.localAvatar.find('**/joint_pupilL_short').removeNode()
|
||
|
||
base.localAvatar.find('**/Fd Green Cat Fd').removeNode()
|
||
|
||
base.localAvatar.find('**/TT_sky.egg').setTexture(gloves, 1)
|
||
base.localAvatar.find('**/TT_sky.egg').setColor(1)
|
||
|
||
base.localAvatar.ls()
|
||
|
||
Escape The Fate - 286593520
|
||
Fever Ray - 286565303
|
||
|
||
|
||
SC:
|
||
|
||
Neutral:
|
||
|
||
base.localAvatar.setCustomMessages([550, 580, 6000, 6100, 12000, 11010, 590, 820, 40, 100, 170, 230, 890, 290, 320, 370, 380, 400, 420, 460, 470, 440, 480, 510, 500, 560, 570, 650, 660, 670, 680, 710, 770, 830])
|
||
|
||
Valentines:
|
||
|
||
base.localAvatar.setCustomMessages([12000, 12001, 12002, 12003, 12004, 12005, 12006, 12007, 12008, 12009, 12010, 12011, 12012, 12013, 12014, 12015, 12016, 12017, 12018])
|
||
|
||
Collision:
|
||
|
||
base.localAvatar.find('**/GW.cWallSphereNode').show()
|
||
base.localAvatar.find('**/GW.cEventSphereNode').show()
|
||
base.localAvatar.find('**/ccLineNode').show()
|
||
|
||
base.localAvatar.find('**/GW.cWallSphereNode').hide()
|
||
base.localAvatar.find('**/GW.cEventSphereNode').hide()
|
||
base.localAvatar.find('**/ccLineNode').hide()
|
||
|
||
|
||
Big Cheese Head blue:
|
||
|
||
avHead = base.localAvatar.find('**/head-short')
|
||
bAvHead = loader.loadModel("phase_4/models/char/suitA-heads.bam")
|
||
avBigCheeseHead = bAvHead.find('**/bigcheese')
|
||
avBigCheeseHead.setColor(0,0,1)
|
||
avBigCheeseHead.reparentTo(avHead)
|
||
avBigCheeseHead.setScale(2.3)
|
||
avBigCheeseHead.setPos(0,.3,-1)
|
||
|
||
List:
|
||
|
||
backstabber
|
||
bigwig
|
||
headhunter
|
||
legaleagle
|
||
numbercruncher
|
||
pennypincher
|
||
yesman
|
||
twoface
|
||
|
||
|
||
Convert BAM files to EGG files
|
||
|
||
Command Prompt:
|
||
|
||
cd\
|
||
|
||
cd\Users\cody\Desktop\Panda3D-1.7.0\Bin
|
||
|
||
bam2egg -ps rel -o danceFloor.egg danceFloor.ba
|
||
|
||
|
||
cd\Users\Desktop\Panda3D-1.7.0\Bin
|
||
|
||
pview partyCatchTree.bam grass.bam event Sign.bam danceFloor.bam cogPinataHole.bam cogPinata_actor.bam cogPinata_bodyHitBack_anim.bam partyGrounds.bam
|
||
|
||
|
||
Disco Pants:
|
||
|
||
base.localAvatar.b_setAnimState('victory')
|
||
base.localAvatar.b_setAnimState('ScientistPlay')
|
||
base.localAvatar.b_setEmoteState(3,1)
|
||
|
||
Then:
|
||
|
||
base.localAvatar.b_setAnimState('ScientistPlay')
|
||
|
||
from toontown.ai import DistributedBlackCatMgr
|
||
from toontown.ai.DistributedBlackCatMgr import *
|
||
messenger.send('DistributedBlackCatMgr-activate')
|
||
|
||
ball = loader.loadModel("rock.bam")
|
||
ball.reparentTo(render)
|
||
ball.setPos(69, -0, 6)
|
||
ball.setScale(4)
|
||
ball.setColor(0.97,0.3,0.3,1)
|
||
|
||
light1 = PointLight("light1")
|
||
light1transform = render.attachNewNode (light1)
|
||
ball.setLight(light1transform)
|
||
light1transform.setPos(0,-20,20)
|
||
|
||
rotator = ball.hprInterval(10, Vec3(360, 0, 0))
|
||
rotator.loop()
|
||
|
||
ball.setShaderInput("light",light1transform)
|
||
ball.setShaderAuto()
|
||
|
||
ballObj = ball.attachNewNode(CollisionNode('colNode'))
|
||
ballObj.node().addSolid(CollisionSphere(0, 0, 0, 1))
|
||
|
||
ballPusher = CollisionHandlerPusher()
|
||
pusher.addCollider(ballObj, ball)
|
||
|
||
|
||
:10-28-2010 12:18:28 LoginScreen: Paid from game server login: False
|
||
|
||
|
||
<toontown.ai.DistributedTrickOrTreatTarget.DistributedTrickOrTreatTarget instance at 0x1AB969E0>:
|
||
'SCCustomMsg'
|
||
|
||
|
||
messenger.send('SCStaticTextMsg', [10003])
|
||
|
||
|
||
base.localAvatar.systemWarning('Disconnected!')
|
||
|
||
from pandac.PandaModules import Material
|
||
from pandac.PandaModules import VBase4
|
||
|
||
myMaterial = Material()
|
||
myMaterial.setShininess(5.0) #Make this material shiny
|
||
myMaterial.setAmbient(VBase4(0,0,1,1))
|
||
|
||
myNode = base.localAvatar
|
||
myNode.setMaterial(myMaterial)
|
||
|
||
|
||
|
||
Name tag color change:
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
alight = AmbientLight('alight')
|
||
alight.setColor(VBase4(.93,0,0,1))
|
||
alnp = render.attachNewNode(alight)
|
||
messenger.send('nametagAmbientLightChanged', [alnp])
|
||
|
||
|
||
messenger.send('SCCustomMsg', [10003])
|
||
|
||
|
||
Kart Racing Hacks:
|
||
|
||
messenger.send('leaveRace')
|
||
messenger.send('imIn-banana')
|
||
messenger.send('leavingRace')
|
||
messenger.send('InputState-forward', [100])
|
||
|
||
|
||
messenger.send('hpChange-286412384', [137,137])
|
||
|
||
|
||
base.acceptOnce("escape", sys.exit )
|
||
|
||
messenger.send('hpChange-286313331', [137, 137])
|
||
|
||
messenger.send('enterFurnitureManager', [1, 1])
|
||
|
||
messenger.send('friendOnline', [286313331])
|
||
|
||
messenger.send('friendOffline', [286313331])
|
||
|
||
messenger.send('nameTagShowAvId', [286313331])
|
||
|
||
messenger.send('playerFriendInvitationEvent', [])
|
||
|
||
messenger.send('avatarNewFriendAddEvent', [273515701])
|
||
|
||
messenger.send('entertrolley_sphere', [1])
|
||
|
||
messenger.send('enterMickeyBlatherSphere', [1])
|
||
|
||
messenger.send('requestSkipTutorial')
|
||
|
||
messenger.send('rejectTutorial')
|
||
|
||
|
||
messenger.send('enterKnockKnockDoorSphere_1', [1]) - messenger.send('enterKnockKnockDoorSphere_4', [1])
|
||
|
||
|
||
CLOTHES STEAL:
|
||
|
||
messenger.send('purchaseDone-415360110')
|
||
|
||
messenger.send('reach-boat')
|
||
messenger.send('minigameAbort')
|
||
messenger.send('hoodDone')
|
||
messenger.send('enter')
|
||
|
||
boat game hack:
|
||
|
||
messenger.send('grab-0')
|
||
messenger.send('reach-boat')
|
||
messenger.send('hitby-crabby0')
|
||
messenger.send('FishHit')
|
||
messenger.send('minigameAbort')
|
||
messenger.send('hoodDone')
|
||
|
||
|
||
Disconnect:
|
||
|
||
base.cr.lostConnection()
|
||
|
||
|
||
Die:
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def die1():
|
||
base.localAvatar.b_setAnimState('Died')
|
||
def render1():
|
||
base.localAvatar.reparentTo(render)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(die1))
|
||
seq.append(Wait(7))
|
||
seq.append(Func(render1))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(onTime))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
|
||
boat1 = loader.loadModel("phase_6/models/neighborhoods/donalds_dock.bam")
|
||
boat1.reparentTo(render)
|
||
boat1.setPos(0,0,111111111111)
|
||
boat1.setHpr(0,0,0)
|
||
boat1.setScale(1)
|
||
|
||
boat2 = boat1.find('**/donalds_boat')
|
||
boat2.reparentTo(render)
|
||
boat2.setPos(31,-17,4)
|
||
boat2.setHpr(90,0,0)
|
||
boat2.setScale(1)
|
||
|
||
boatPosInterval1 = boat2.posInterval(13,
|
||
Point3(-37,-17,3.679))
|
||
boatPosInterval2 = boat2.posInterval(13,
|
||
Point3(31,-17,4))
|
||
|
||
boatPace = Sequence(boatPosInterval1,
|
||
boatPosInterval2,
|
||
name="boatPace")
|
||
|
||
boatPace.loop()
|
||
|
||
|
||
Mouse Tracker:
|
||
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
from direct.task import Task
|
||
|
||
text = OnscreenText(text='', style=1, fg=(1,1,1,1), align=TextNode.ALeft, pos=(-1.15, .8), scale=.07)
|
||
|
||
def mouseMoved(x, y):
|
||
updateText('Mouse X,Y (%0.3f, %0.3f)' % (x,y))
|
||
|
||
def mouseLost():
|
||
updateText('Mouse Lost')
|
||
|
||
def updateText(msg):
|
||
global text
|
||
text.setText(msg)
|
||
|
||
#Task to move the camera
|
||
def MouseMotion(task):
|
||
if base.mouseWatcherNode.hasMouse():
|
||
x = base.mouseWatcherNode.getMouseX()
|
||
y = base.mouseWatcherNode.getMouseY()
|
||
mouseMoved(x, y)
|
||
else:
|
||
mouseLost()
|
||
return Task.cont
|
||
|
||
taskMgr.add(MouseMotion, 'MouseMotion')
|
||
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
|
||
boatP1 = loader.loadModel("phase_6/models/neighborhoods/donalds_dock.bam")
|
||
boatP1.reparentTo(render)
|
||
boatP1.setPos(0,0,111111111111)
|
||
boatP1.setHpr(0,0,0)
|
||
boatP1.setScale(1)
|
||
|
||
boatL = boatP1.find('**/donalds_boat')
|
||
boatL.reparentTo(render)
|
||
boatL.setPos(28.423,-22.471,4.025)
|
||
boatL.setHpr(270,0,0)
|
||
boatL.setScale(1)
|
||
|
||
boatPosInterval1 = boatL.posInterval(13,
|
||
Point3(28.423,0.001,4.025),
|
||
startPos=Point3(28.423,-22.471,4.025)
|
||
boatPosInterval2 = boatL.posInterval(13,
|
||
Point3(28.423,-22.471,4.025),
|
||
startPos=Point3(28.423,-22.471,4.025)
|
||
boatHprInterval1 = boatL.hprInterval(13,
|
||
Point3(90,0,0),
|
||
startHpr=Point3(270,0,0)
|
||
boatHprInterval2 = boatL.hprInterval(13,
|
||
Point3(270,0,0)
|
||
startHpr=Point3(90,0,0)
|
||
|
||
boatPace = Sequence(boatPosInterval1,
|
||
boatHprInterval1,
|
||
boatPosInterval2,
|
||
boatHprInterval2,
|
||
name="boatPace")
|
||
boatPace.loop()
|
||
|
||
|
||
|
||
|
||
28.423,0.001,4.025
|
||
|
||
|
||
Custom Coder:
|
||
|
||
|
||
type = toontown.findAllMatches('**/phase_*/models/blah/bam.bam')
|
||
typeText = loader.loadTexture('folder/folder/image.jpg')
|
||
type.setTexture(typeText, 1)
|
||
|
||
base.localAvatar.nametag.setName('Fd Green Cat Fd')
|
||
|
||
|
||
messenger.send('playGameDone')
|
||
|
||
|
||
Swim Button:
|
||
|
||
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
|
||
bk_text = "Swim Hack Ready"
|
||
textObject = OnscreenText(text = bk_text, pos = (0.95,-0.95),
|
||
scale = 0.07,fg=(1,0.5,0.5,1),align=TextNode.ACenter,mayChange=1)
|
||
|
||
def setText():
|
||
bk_text = "Swimming"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('swim')
|
||
|
||
b = DirectButton(text = ("SWIM", "swim", "swim", "SWIM"), scale=.06, pos = (0,-.95,-.95), command=setText)
|
||
|
||
|
||
|
||
Button Hacks:
|
||
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
|
||
bk_text = "Button Hack Ready"
|
||
textObject = OnscreenText(text = bk_text, pos = (0.95,-0.95),
|
||
scale = 0.07,fg=(1,0.5,0.5,1),align=TextNode.ACenter,mayChange=1)
|
||
|
||
def normal1():
|
||
bk_text = "Button Hack Ready"
|
||
textObject.setText(bk_text)
|
||
|
||
def setText1():
|
||
bk_text = "Swimming"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('swim')
|
||
var = 0
|
||
|
||
def setText2():
|
||
bk_text = "Sitting"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('SitStart')
|
||
var = 1
|
||
|
||
|
||
def setText3():
|
||
bk_text = "Catching"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('Catching')
|
||
var = 1
|
||
|
||
def setText4():
|
||
bk_text = "Golf Turning Right"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('GolfRotateRight')
|
||
var = 1
|
||
|
||
def setText5():
|
||
bk_text = "Dying"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('Died')
|
||
var = 0
|
||
|
||
def setText6():
|
||
bk_text = "Sad"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('Sad')
|
||
var = 1
|
||
|
||
def setText7():
|
||
bk_text = "Pushing"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('Push')
|
||
var = 1
|
||
|
||
def setText8():
|
||
bk_text = "Scientist Play"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('ScientistPlay')
|
||
var = 1
|
||
|
||
base.accept("escape", normal1, [])
|
||
b1 = DirectButton(text = ("SWIM", "swim", "swim", "SWIM"), scale=.06, pos = (-.98,-0,-.95), command=setText1)
|
||
b2 = DirectButton(text = ("SIT", "sit", "sit", "SIT"), scale=.06, pos = (-.8,-0,-.95), command=setText2)
|
||
b3 = DirectButton(text = ("CATCH", "catch", "catch", "CATCH"), scale=.06, pos = (-.6,-0,-.95), command=setText3)
|
||
b4 = DirectButton(text = ("GOLF ROTATE", "golf rotate", "golf rotate", "GOLF ROTATE"), scale=.06, pos = (-.28,-0,-.95), command=setText4)
|
||
b5 = DirectButton(text = ("DIE", "die", "die", "DIE"), scale=.06, pos = (-0,-0,-.95), command=setText5)
|
||
b6 = DirectButton(text = ("SAD", "sad", "sad", "SAD"), scale=.06, pos = (.16,-0,-.95), command=setText6)
|
||
b7 = DirectButton(text = ("PUSH", "push", "push", "PUSH"), scale=.06, pos = (.35,-0,-.95), command=setText7)
|
||
b8 = DirectButton(text = ("R-P-C", "r-p-c", "r-p-c", "R-P-C"), scale=.06, pos = (.565,-0,-.95), command=setText8)
|
||
|
||
while var is 1:
|
||
base.accept("control", normal1, [])
|
||
|
||
while var is 0:
|
||
base.accept("control", base.localAvatar.b_setSCSinging, [4])
|
||
|
||
|
||
|
||
Book:
|
||
|
||
base.localAvatar.book.setColor(255,0.01,0.01)
|
||
|
||
base.localAvatar.book.setP(180)
|
||
|
||
base.localAvatar.book.setPage(0)
|
||
|
||
|
||
Black Toon:
|
||
|
||
base.localAvatar.findAllMatches('**/head-short').setColor(0.3,0.3,0.35)
|
||
base.localAvatar.findAllMatches('**/head-front-short').setColor(0.3,0.3,0.35)
|
||
base.localAvatar.findAllMatches('**/ears-short').setColor(0.3,0.3,0.35)
|
||
base.localAvatar.findAllMatches('**/neck').setColor(0.3,0.3,0.35)
|
||
base.localAvatar.findAllMatches('**/arms').setColor(0.3,0.3,0.35)
|
||
base.localAvatar.findAllMatches('**/legs').setColor(0.3,0.3,0.35)
|
||
base.localAvatar.findAllMatches('**/feet').setColor(0.3,0.3,0.35)
|
||
|
||
|
||
Red Toon:
|
||
|
||
base.localAvatar.findAllMatches('**/head-short').setColor(0.97,0.3,0.3,1)
|
||
base.localAvatar.findAllMatches('**/head-front-short').setColor(0.97,0.3,0.3,1)
|
||
base.localAvatar.findAllMatches('**/ears-short').setColor(0.97,0.3,0.3,1)
|
||
base.localAvatar.findAllMatches('**/neck').setColor(0.97,0.3,0.3,1)
|
||
base.localAvatar.findAllMatches('**/arms').setColor(0.97,0.3,0.3,1)
|
||
base.localAvatar.findAllMatches('**/legs').setColor(0.97,0.3,0.3,1)
|
||
base.localAvatar.findAllMatches('**/feet').setColor(0.97,0.3,0.3,1)
|
||
|
||
Sea Green:
|
||
|
||
base.localAvatar.findAllMatches('**/head-short').setColor(0.242, 0.742, 0.516, 1)
|
||
base.localAvatar.findAllMatches('**/head-front-short').setColor(0.242, 0.742, 0.516, 1)
|
||
base.localAvatar.findAllMatches('**/ears-short').setColor(0.242, 0.742, 0.516, 1)
|
||
base.localAvatar.findAllMatches('**/neck').setColor(0.242, 0.742, 0.516, 1)
|
||
base.localAvatar.findAllMatches('**/arms').setColor(0.242, 0.742, 0.516, 1)
|
||
base.localAvatar.findAllMatches('**/legs').setColor(0.242, 0.742, 0.516, 1)
|
||
base.localAvatar.findAllMatches('**/feet').setColor(0.242, 0.742, 0.516, 1)
|
||
|
||
|
||
|
||
Anim Control:
|
||
|
||
ac1 = base.localAvatar.getAllAnimControl('swing', 'legs')
|
||
ac1.setPlayRate(5)
|
||
ac1.loop(True)
|
||
|
||
ac1.stop()
|
||
ac1.loop(True)
|
||
ac1.pose(8)
|
||
ac1.setPlayRate(5)
|
||
|
||
base.localAvatar.play('happy-dance')
|
||
base.localAvatar.stop()
|
||
base.localAvatar.pose('climb', 30)
|
||
base.localAvatar.play('melt', fromFrame = 30)
|
||
base.localAvatar.loop('melt', fromFrame = 30)
|
||
base.localAvatar.loop('throw', fromFrame = 24, toFrame = 80)
|
||
base.localAvatar.play('throw', fromFrame = 24, toFrame = 80)
|
||
base.localAvatar.loop('swing', restart = 1, fromFrame = 24, toFrame = 36)
|
||
base.localAvatar.play('swing', restart = 1, fromFrame = 24, toFrame = 36)
|
||
base.localAvatar.pose('swing', 30)
|
||
|
||
|
||
base.localAvatar.clearTexture(variable)
|
||
|
||
|
||
base.setBackgroundColor(1,1,1)
|
||
|
||
base.setBackgroundColor(0,0,0)
|
||
|
||
|
||
Whisper Talk:
|
||
|
||
base.talkAssistant.sendWhisperTalk('LOL', 286071781)
|
||
|
||
|
||
base.talkAssistant.sendWhisperTalk('LOL ' * 50, 286071781)
|
||
|
||
|
||
Music Code:
|
||
|
||
music1 = base.loader.loadSfx("phase_9/audio/bgm/CHQ_FACT_bg.mid")
|
||
music1.setLoop(True)
|
||
music1.play()
|
||
|
||
music1 = base.loader.loadSfx("Custom/Sfx/Losing You.mp3")
|
||
music1.setVolume(.2)
|
||
music1.setLoop(True)
|
||
music1.play()
|
||
|
||
bgMusic1 = base.loader.loadSfx("phase_12/audio/bgm/Bossbot_Factory_v3.mid")
|
||
bgMusic1.setLoop(True)
|
||
bgMusic1.play()
|
||
|
||
music1.setLoopCount(3)
|
||
|
||
music1.setPlayRate(.5)
|
||
|
||
music1.setTime(20)
|
||
|
||
music1.getTime()
|
||
|
||
music1.length()
|
||
|
||
|
||
Music Loggers:
|
||
|
||
time = music1.getTime()
|
||
time = int(time)
|
||
time = str(time)
|
||
print time
|
||
|
||
length = music1.length()
|
||
length = int(length)
|
||
length = str(length)
|
||
print length
|
||
|
||
|
||
Messengers:
|
||
|
||
messenger.send('playerDetails', [286051117, 1])
|
||
|
||
messenger.send('control-arrow_down')
|
||
|
||
messenger.send('requestTutorial')
|
||
|
||
base.cam.setScale(1,.1,.5)
|
||
|
||
base.cam.setPos(0,3,-2)
|
||
|
||
base.cam.setScale(.25,.5,.5)
|
||
|
||
base.cam.setScale(.5,.5,.5)
|
||
|
||
base.cam.setPos(0,20,-1)
|
||
base.cam.setHpr(180,0,0)
|
||
base.cam.setScale(1,1,1)
|
||
|
||
from pandac.PandaModules import Point3
|
||
base.cam.lookAt(Point3(0, 0, 0))
|
||
|
||
base.localAvatar.thinkPos()
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
sky = loader.loadModel("phase_8/models/props/DL_sky.bam")
|
||
sky.reparentTo(render)
|
||
sky.setPos(0,0,0)
|
||
sky.setHpr(0,0,0)
|
||
sky.setScale(1.5)
|
||
|
||
chatBox1 = loader.loadModel("phase_3/models/props/chatbox.bam")
|
||
chatBox1.reparentTo(render)
|
||
chatBox1.setPos(54,6,7)
|
||
chatBox1.setHpr(90,0,0)
|
||
chatBox1.setScale(.5)
|
||
|
||
Send Codes:
|
||
|
||
messenger.send('periodTimerExpired')
|
||
|
||
base.localAvatar.sendFriendsListEvent()
|
||
|
||
LOGGER:
|
||
|
||
# Toontown Logger Script
|
||
# Created by greencatthethird - Fd Green Cat Fd - Youtube - gamecrazzy441
|
||
|
||
log = messenger.send
|
||
log = str(log)
|
||
|
||
filepath = "C:/Users/Kyle/Desktop/Log.txt"
|
||
|
||
def logger():
|
||
outfile = open(filepath, "w")
|
||
outfile.write(log + "\n")
|
||
outfile.close()
|
||
base.localAvatar.setSystemMessage(1, 'Logging...')
|
||
logger()
|
||
|
||
|
||
<bound method LocalToon.loop of render/Fd Green Cat Fd-286051117>
|
||
|
||
<bound method toontown.toonbase.ToonBase.ToonBase.LocalToon.LocalToon.getAvInfo of render/name-id>
|
||
|
||
|
||
toontown.toonbase.ToonBase.ToonBase
|
||
|
||
|
||
Logging Scripts:
|
||
|
||
code = base.localAvatar.setCogIndex
|
||
code = str(code)
|
||
print code
|
||
|
||
av = base.localAvatar
|
||
av = str(av)
|
||
print av
|
||
|
||
zone = base.localAvatar.getZoneId()
|
||
zone = str(zone)
|
||
print "Zone: " + zone
|
||
|
||
pos = base.localAvatar.getPos()
|
||
pos = str(pos)
|
||
print "Pos: " + pos
|
||
|
||
getHpr1 = base.localAvatar.getHpr()
|
||
getHpr1 = str(getHpr1)
|
||
print "Hpr: " + getHpr1
|
||
|
||
houseZoneGet = base.localAvatar.getZoneId()
|
||
houseZoneGet += 10
|
||
houseZoneGet = int(houseZoneGet)
|
||
base.cr.sendSetZoneMsg(houseZoneGet)
|
||
|
||
_________________________________________________
|
||
|
||
pos = base.localAvatar.getPos()
|
||
pos = str(pos)
|
||
base.talkAssistant.sendOpenTalk(pos)
|
||
base.localAvatar.setSystemMessage(1, pos)
|
||
|
||
getHpr1 = base.localAvatar.getHpr()
|
||
getHpr1 = str(getHpr1)
|
||
base.talkAssistant.sendOpenTalk(getHpr1)
|
||
base.localAvatar.setSystemMessage(1, getHpr1)
|
||
|
||
zone = base.localAvatar.getZoneId()
|
||
zone = str(zone)
|
||
base.talkAssistant.sendOpenTalk('.I am in Zone : ' + zone)
|
||
base.localAvatar.setSystemMessage(1, zone)
|
||
|
||
|
||
MetalText1 = loader.loadTexture("phase_3.5/maps/snow.jpg")
|
||
base.localAvatar.setTexture(MetalText1, 1)
|
||
|
||
glovesText = loader.loadTexture("Custom/Toon/yourImage.jpg")
|
||
base.localAvatar.findAllMatches('**/hands').setTexture(glovesText, 1)
|
||
|
||
Awake forever:
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def wakeUp():
|
||
base.localAvatar.wakeUp()
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(wakeUp))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(onTime))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
|
||
Talk:
|
||
|
||
base.talkAssistant.sendOpenTalk('lol '* 50)
|
||
|
||
base.talkAssistant.sendOpenTalk(' '* 200)
|
||
|
||
|
||
base.localAvatar.book.setPage(0)
|
||
|
||
|
||
Server Speed, Slow, reverse, animations:
|
||
|
||
messenger.send([base.localAvatar.b_setAnimState('victory', 1.5)])
|
||
|
||
messenger.send([base.localAvatar.b_setAnimState('victory', -1)])
|
||
|
||
messenger.send([base.localAvatar.b_setAnimState('victory', -.5)])
|
||
|
||
messenger.send([base.localAvatar.b_setAnimState('victory', .5)])
|
||
|
||
messenger.send([base.localAvatar.b_setAnimState('victory', 2)])
|
||
|
||
messenger.send([base.localAvatar.b_setAnimState('victory', 10)])
|
||
base.localAvatar.b_setSC(60677)
|
||
|
||
messenger.send([base.localAvatar.b_setAnimState('jumpLand', .1)])
|
||
|
||
messenger.send([base.localAvatar.b_setAnimState('jumpSquat', .1)])
|
||
|
||
messenger.send([base.localAvatar.b_setAnimState('jump', .1)])
|
||
|
||
base.localAvatar.setSystemMessage(1, 'It\'s Halloween in Toontown!')
|
||
|
||
|
||
avSpin = base.localAvatar.hprInterval(2, Vec3(360, 0, 0))
|
||
avSpin.loop()
|
||
|
||
avSpin.removeNode()
|
||
|
||
|
||
|
||
TT Texture Code:
|
||
|
||
TTGrassText1 = loader.loadTexture("phase_9/maps/FootFactoryMetalPlate.jpg")
|
||
TTGrass1 = base.cr.findAllMatches('**/grassTT')
|
||
TTGrass1.setTexture(TTGrassText1, 1)
|
||
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def victory():
|
||
base.localAvatar.b_setAnimState('victory')
|
||
def jump():
|
||
base.localAvatar.b_setAnimState('jump')
|
||
def jumpEmote():
|
||
base.localAvatar.b_setEmoteState(1,1)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(victory))
|
||
seq.append(Wait(.000000000000000000000000000001))
|
||
seq.append(Func(jump))
|
||
seq.append(Wait(.000000000000000000000000000001))
|
||
seq.append(Func(jumpEmote))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
SERVER NAME:
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def writeName():
|
||
base.localAvatar.setName('Fd Green Cat Fd')
|
||
base.localAvatar.setSystemMessage(1, 'Writing Name')
|
||
def startName():
|
||
base.localAvatar.getName(285855982, 'Fd Green Cat Fd')
|
||
base.localAvatar.setSystemMessage(1, 'Started The Process')
|
||
def readName():
|
||
base.localAvatar.receiveAcceptAddName('Fd Green Cat Fd')
|
||
base.localAvatar.receiveAcceptAddName('285855982')
|
||
base.localAvatar.setSystemMessage(1, 'Reading The Name')
|
||
def acceptName():
|
||
base.localAvatar.receiveAcceptGetName(285855982)
|
||
base.localAvatar.setSystemMessage(1, 'Accepting Name')
|
||
def end():
|
||
base.localAvatar.setSystemMessage(1, 'Name Add Succesful, Please Log Off For You New Name!')
|
||
messenger.send('enterStickerBook')
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(writeName))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(startName))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(readName))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(acceptName))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(end))
|
||
seq.start()
|
||
onTime()
|
||
|
||
base.localAvatar.setName('')
|
||
base.localAvatar.setName('Fd Green Cat Fd')
|
||
base.localAvatar.getName(ID)
|
||
base.localAvatar.receiveAcceptGetName('Fd Green Cat Fd')
|
||
base.localAvatar.addName(ID, 'Fd Green Cat Fd')
|
||
base.localAvatar.receiveAcceptAddName(ID)
|
||
|
||
base.localAvatar.receiveAcceptAddName(285855982)
|
||
base.localAvatar.receiveAcceptAddName(285855982, 'Fd Green Cat Fd')
|
||
base.localAvatar.receiveAcceptAddName('Fd Green Cat Fd')
|
||
base.localAvatar.getName(285855982)
|
||
base.localAvatar.getName('Fd Green Cat Fd')
|
||
base.localAvatar.getName(285855982, 'Fd Green Cat Fd')
|
||
base.localAvatar.receiveAcceptGetName(285855982)
|
||
base.localAvatar.receiveAcceptGetName(285855982, 'Fd Green Cat Fd')
|
||
base.localAvatar.receiveAcceptGetName('Fd Green Cat Fd')
|
||
|
||
|
||
TTGloves = base.localAvatar.findAllMatches('**/hands')
|
||
base.accept("1", TTGloves.setColorLive, [0.97,0.3,0.3])
|
||
base.accept("2", TTGloves.setColorLive, [0.96,0.7,0.7])
|
||
base.accept("3", TTGloves.setColorLive, [0.69,0.29,0.95])
|
||
base.accept("4", TTGloves.setColorLive, [0.38,0.98,0.43])
|
||
base.accept("5", TTGloves.setColorLive, [1,0.90,0.30])
|
||
base.accept("6", TTGloves.setColorLive, [0,0,1])
|
||
base.accept("7", TTGloves.setColorLive, [0,0,0])
|
||
base.accept("8", TTGloves.setColorLive, [0,255,255])
|
||
base.accept("9", TTGloves.setColorLive, [1,1,1])
|
||
|
||
Team Hack Tryouts:
|
||
|
||
ToonTown Central, Boingy Acres,
|
||
|
||
base.talkAssistant.sendOpenTalk('BON R')
|
||
base.localAvatar.b_setEmoteState(20,1)
|
||
|
||
|
||
Tunnel:
|
||
|
||
base.localAvatar.setTunnelOut(0, 0, 0, 0, 0, 0, 0)
|
||
|
||
base.localAvatar.setTunnelIn(0, 0, 0, 0, 0, 0)
|
||
|
||
base.localAvatar.setTunnelIn(0, 0, 10, 10, 4, 0)
|
||
|
||
|
||
Types:
|
||
|
||
base.localAvatar.setTunnelIn(0, 0, 0, 0, 0, 100) - Side Position
|
||
|
||
base.localAvatar.setTunnelIn(0, 0, 0, 0, 100, 0) - Height
|
||
|
||
base.localAvatar.setTunnelIn(0, 0, 0, 100, 0, 0) - Forward Position
|
||
|
||
base.localAvatar.setTunnelIn(0, 0, 100, 0, 0, 0) - Cam 1
|
||
|
||
base.localAvatar.setTunnelIn(0, 100, 0, 0, 0, 0) - Position 1
|
||
|
||
base.localAvatar.setTunnelIn(100, 0, 0, 0, 0, 0) - Position 2
|
||
|
||
|
||
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def count1():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 10 minutes')
|
||
def count2():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 9 minutes')
|
||
def count3():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 8 minutes')
|
||
def count4():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 7 minutes')
|
||
def count5():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 6 minutes')
|
||
def count6():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 5 minutes')
|
||
def count7():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 4 minutes')
|
||
def count8():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 3 minutes')
|
||
def count9():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 2 minutes')
|
||
def count10():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 1 minutes')
|
||
def count11():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 30 seconds')
|
||
def count12():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 15 seconds')
|
||
def count13():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 10 seconds')
|
||
def count14():
|
||
base.localAvatar.setSystemMessage(1, 'ADMIN: Toontown is going down for maintinance in 5 seconds')
|
||
def exit():
|
||
messenger.send('gotoAvatar', [415100032, 'Shutting Down', 1])
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(count1))
|
||
seq.append(Wait(60))
|
||
seq.append(Func(count2))
|
||
seq.append(Wait(60))
|
||
seq.append(Func(count3))
|
||
seq.append(Wait(60))
|
||
seq.append(Func(count4))
|
||
seq.append(Wait(60))
|
||
seq.append(Func(count5))
|
||
seq.append(Wait(60))
|
||
seq.append(Func(count6))
|
||
seq.append(Wait(60))
|
||
seq.append(Func(count7))
|
||
seq.append(Wait(60))
|
||
seq.append(Func(count8))
|
||
seq.append(Wait(60))
|
||
seq.append(Func(count9))
|
||
seq.append(Wait(60))
|
||
seq.append(Func(count10))
|
||
seq.append(Wait(30))
|
||
seq.append(Func(count11))
|
||
seq.append(Wait(15))
|
||
seq.append(Func(count12))
|
||
seq.append(Wait(10))
|
||
seq.append(Func(count13))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(count14))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
Activate/De-Activate Test:
|
||
|
||
def collisionshk1():
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setSystemMessage(1, 'No Collisions Activated')
|
||
base.accept("f1", collisionshk2, [])
|
||
|
||
def collisionshk2():
|
||
base.localAvatar.collisionsOn()
|
||
base.localAvatar.setSystemMessage(1, 'No Collisions De-Activated')
|
||
base.accept("f1", collisionshk1, [])
|
||
|
||
base.accept("f1", collisionshk1, [])
|
||
|
||
|
||
|
||
talking:
|
||
|
||
hi = 'hi'
|
||
base.talkAssistant.sendOpenTalk('LOL, ' + hi)
|
||
|
||
|
||
import time
|
||
base.localAvatar.b_setAnimState('victory')
|
||
time.wait(6)
|
||
base.localAvatar.b_setAnimState('neutral')
|
||
|
||
base.localAvatar.sendToGolfCourse(1)
|
||
|
||
|
||
|
||
Whisper:
|
||
|
||
setResistanceMessages(pair16 [])
|
||
|
||
base.localAvatar.setSleepAutoReply(285717803)
|
||
|
||
base.localAvatar.setSC(4)
|
||
|
||
base.localAvatar.setWhisperSCFrom(415100056, 4) - Flippy Panel
|
||
|
||
base.localAvatar.setWhisperSCFrom(415100032, 4) - Fisherman Freddy
|
||
|
||
base.localAvatar.setWhisperSCFrom(285717803, 4)
|
||
|
||
base.localAvatar.setWhisperSCEmoteFrom(285717803, 19)
|
||
|
||
base.localAvatar.setWhisperSCCustomFrom(285717803, 100)
|
||
|
||
base.localAvatar.setWhisperSCTo(285717803, 4)
|
||
|
||
base.localAvatar.setWhisperSCEmoteTo(285717803, 19)
|
||
|
||
base.localAvatar.setWhisperSCCustomTo(285717803, 100)
|
||
|
||
SC:
|
||
|
||
base.localAvatar.b_setSCCustom(10003) - Trick or Treat!
|
||
|
||
base.localAvatar.b_setSCCustom(400) - I need to go see a toon.
|
||
|
||
Friends:
|
||
|
||
base.localAvatar.setFriendsList([])
|
||
|
||
|
||
Teleport codes - ToonTown Central:
|
||
|
||
|
||
~ Playground ~
|
||
|
||
base.localAvatar.teleportQuery(285599684) - Green Cat
|
||
|
||
base.localAvatar.teleportGiveup(285599684) - Green Cat
|
||
|
||
base.localAvatar.teleportGreeting(285599684) - Green Cat
|
||
|
||
base.localAvatar.teleportGreeting(415100644) - Mickey
|
||
|
||
base.localAvatar.teleportGreeting(415100032) - Fisherman Freddy
|
||
|
||
base.localAvatar.teleportGreeting(415100033) - Party Planner Pumkin
|
||
|
||
base.localAvatar.teleportGreeting(415100034) - Party Planner Polly
|
||
|
||
|
||
~ Petshop ~
|
||
|
||
|
||
base.localAvatar.teleportGreeting(415100099) - Clerk Poppy
|
||
|
||
base.localAvatar.teleportGreeting(415100100) - Clerk Peppy
|
||
|
||
base.localAvatar.teleportGreeting(415100101) - Clerk Pappy
|
||
|
||
|
||
~ Gagshop ~
|
||
|
||
|
||
base.localAvatar.teleportGreeting(415100094) - Clerk Clark
|
||
|
||
base.localAvatar.teleportGreeting(415100095) - Clerk Clara
|
||
|
||
|
||
|
||
|
||
Client - Server Scare Crow!
|
||
|
||
1. Go on the Trolley, Any game.
|
||
2. Enter in the injector: base.localAvatar.enableBlend().
|
||
3. Wait till the end of the game.
|
||
4. Enter in the injector: base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
5. Enter in the injector:
|
||
|
||
base.localAvatar.collisionsOff()
|
||
base.cr.sendSetZoneMsg(7000)
|
||
base.localAvatar.b_setAnimState(('Teleport'))
|
||
base.cr.sendSetZoneMsg(2000)
|
||
|
||
Cog Jump:
|
||
|
||
base.accept("alt", base.localAvatar.setZ, [8])
|
||
|
||
base.accept("alt", base.localAvatar.setZ, [31])
|
||
|
||
|
||
base.accept('1', localAvatar.findAllMatches('**/hands').setColor, [0.97,0.3,0.3])
|
||
base.accept('2', localAvatar.findAllMatches('**/hands').setColor, [0.96,0.7,0.7])
|
||
base.accept('3', localAvatar.findAllMatches('**/hands').setColor, [0.69,0.29,0.95])
|
||
base.accept('4', localAvatar.findAllMatches('**/hands').setColor, [0.38,0.98,0.43])
|
||
base.accept('5', localAvatar.findAllMatches('**/hands').setColor, [1,0.90,0.30])
|
||
base.accept('6', localAvatar.findAllMatches('**/hands').setColor, [0.35,0.35,0.85])
|
||
base.accept('7', localAvatar.findAllMatches('**/hands').setColor, [0.3,0.64,0.85])
|
||
base.accept('8', localAvatar.findAllMatches('**/hands').setColor, [1,0.5,0.18])
|
||
base.accept('9', localAvatar.findAllMatches('**/hands').setColor, [1,1,0.57])
|
||
base.accept('0', localAvatar.findAllMatches('**/hands').setColor, [0.55,0.55,1])
|
||
base.accept('-', localAvatar.findAllMatches('**/hands').setColor, [0.25,0.25,0.3])
|
||
base.accept('=', localAvatar.findAllMatches('**/hands').setColor, [1,1,1])
|
||
base.accept('alt', localAvatar.setSystemMessage, [0,'TT Glove Patcher Version 1.0b'])
|
||
|
||
base.localAvatar.hide()
|
||
|
||
base.localAvatar.show()
|
||
|
||
Enter Codes:
|
||
|
||
base.localAvatar.stunToon()
|
||
|
||
base.localAvatar.enterWalk()
|
||
|
||
base.localAvatar.enterJumpAirborne()
|
||
|
||
base.localAvatar.enterCatchEating()
|
||
|
||
base.localAvatar.enterCatching()
|
||
|
||
base.localAvatar.enterJumpSquat()
|
||
|
||
base.localAvatar.enterJumpLand()
|
||
|
||
base.localAvatar.enterFallDown()
|
||
|
||
base.localAvatar.enterSad()
|
||
|
||
base.localAvatar.enterScientistPlay()
|
||
|
||
base.localAvatar.enterScientistJealous()
|
||
|
||
base.localAvatar.enterScientistWork()
|
||
|
||
base.localAvatar.enterScientistLessWork()
|
||
|
||
base.localAvatar.enterScientistEmcee()
|
||
|
||
base.localAvatar.enterGolfPuttLoop()
|
||
|
||
base.localAvatar.enterGolfPuttSwing()
|
||
|
||
base.localAvatar.enterGolfGoodPutt()
|
||
|
||
base.localAvatar.enterGolfBadPutt()
|
||
|
||
base.localAvatar.enterGolfRotateRight()
|
||
|
||
base.localAvatar.enterGolfRotateLeft()
|
||
|
||
base.localAvatar.enterHappy()
|
||
|
||
base.localAvatar.enterSitStart()
|
||
|
||
base.localAvatar.enterRun()
|
||
|
||
base.localAvatar.enterSwim()
|
||
|
||
base.localAvatar.doEmote(24-1)
|
||
|
||
base.disableMouse()
|
||
|
||
base.enableMouse()
|
||
|
||
|
||
Options Codes:
|
||
|
||
base.disableAllAudio()
|
||
|
||
base.enableAllAudio()
|
||
|
||
base.enableMusic(True)
|
||
|
||
base.enableMusic(False)
|
||
|
||
base.enableTypeChatSound(True)
|
||
|
||
base.enableTypeChatSound(False)
|
||
|
||
base.enableSoundEffects(True)
|
||
|
||
base.enableSoundEffects(False)
|
||
|
||
|
||
Camera Views:
|
||
|
||
base.oobe()
|
||
|
||
base.oobeCull()
|
||
|
||
base.useTrackball()
|
||
|
||
base.useDrive()
|
||
|
||
render.clearFog()
|
||
|
||
base.localAvatar.pageDown()
|
||
|
||
base.localAvatar.pageUp()
|
||
|
||
base.localAvatar.clearBillboard()
|
||
|
||
base.localAvatar.setBillboardAxis(5)
|
||
|
||
base.localAvatar.setBillboardAxis(10)
|
||
|
||
base.localAvatar.setBillboardAxis()
|
||
|
||
base.localAvatar.setBillboardPointEye()
|
||
|
||
base.localAvatar.setBillboardPointEye(5)
|
||
|
||
base.localAvatar.setBillboardPointEye(10)
|
||
|
||
base.localAvatar.setBillboardPointWorld()
|
||
|
||
base.localAvatar.setBillboardPointWorld(5)
|
||
|
||
base.localAvatar.setBillboardPointWorld(10)
|
||
|
||
base.camLens.setNear(9)
|
||
|
||
base.camLens.setNear(0)
|
||
|
||
base.camLens.setFov(100, 20)
|
||
|
||
base.camLens.setFov(150, 30)
|
||
|
||
base.camLens.setFov(50, 50)
|
||
|
||
base.camLens.setFov(200, 50)
|
||
|
||
actor = base.localAvatar actor.removeNode()
|
||
|
||
base.camLens.setFov(150)
|
||
|
||
base.camLens.setFar(200)
|
||
|
||
base.camLens.setFar(2000)
|
||
|
||
base.camLens.setFar(200000000)
|
||
|
||
base.localAvatar.printCamPos()
|
||
|
||
base.localAvatar.lookAt(-43,-59,0)
|
||
|
||
base.localAvatar.lookAt(1,1,1)
|
||
|
||
base.localAvatar.nextCameraPos(0)
|
||
|
||
base.localAvatar.lookAt(1,1,1)
|
||
|
||
|
||
Slow Rise:
|
||
|
||
base.localAvatar.physControls.avatarControlJumpForce = .1
|
||
base.localAvatar.physControls.setGravity(.00001)
|
||
|
||
|
||
Walk And Swim:
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def anim1():
|
||
base.localAvatar.b_setAnimState('swim')
|
||
def anim2():
|
||
base.localAvatar.enterHappy()
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(anim1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(anim2))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
Resistance salutes:
|
||
|
||
|
||
base.localAvatar.setSCResistance(100)
|
||
|
||
base.localAvatar.setSCResistance(1)
|
||
|
||
base.localAvatar.setSCResistance(200)
|
||
|
||
|
||
Move with Phone:
|
||
|
||
1. Go to your house inside, and get your zone for example: 945048
|
||
2. Ask your friend to get their houses zone for example: 945024
|
||
3. Go to your houses zone and keep your friend at their house.
|
||
4. Go on your phone and go to your friends zone
|
||
5. Go on your friends phone and go to your zone and "x" out of your phone and switch zones to your friends house...
|
||
6. press "x" on their phone and press esc and go on their phone "x" out and go on their phone again, repeat until moving without catalog screen and you have the phone in your hand.
|
||
|
||
messenger.send('[base.localAvatar.loop('climb'), 1]
|
||
|
||
|
||
Gloves Styles:
|
||
|
||
Tie Dye:
|
||
|
||
|
||
gloves = loader.loadTexture("phase_4/maps/sleeveTieDye.jpg")
|
||
|
||
base.localAvatar.findAllMatches('**/hands').setTexture(gloves, 1)
|
||
|
||
|
||
gloves = loader.loadTexture("phase_4/maps/robber-baron.jpg")
|
||
|
||
base.localAvatar.findAllMatches('**/hands').setTexture(gloves, 1)
|
||
|
||
|
||
Morse Code
|
||
|
||
base.localAvatar.find('**/hands').removeNode()
|
||
|
||
gloves = loader.loadTexture("phase_3/maps/Humanist.rgb")
|
||
|
||
base.localAvatar.find('**/hands').setTexture(gloves, 1)
|
||
|
||
|
||
Newest Anims:
|
||
|
||
base.localAvatar.loop('climb')
|
||
|
||
base.localAvatar.loop('swing')
|
||
|
||
base.localAvatar.loop('throw')
|
||
|
||
base.localAvatar.loop('sound')
|
||
|
||
base.localAvatar.b_setAnimState('dive')
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setZ(6)
|
||
|
||
base.localAvatar.setScale(.00001,1,1)
|
||
|
||
base.localAvatar.setBestHeightInfo(200)
|
||
|
||
|
||
base.localAvatar.b_setAnimState('SitStart')
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setZ(1.1)
|
||
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setZ(6)
|
||
base.localAvatar.b_setAnimState('cringe')
|
||
|
||
New Codes:
|
||
|
||
base.oobe()
|
||
|
||
base.oobeCull()
|
||
|
||
base.disableMouse()
|
||
|
||
Get Colored Gloves Zoomed In:
|
||
|
||
1. Zoom in.
|
||
2. Type this code in: base.localAvatar.find('**/hands').removeNode()
|
||
3. Zoom out.
|
||
4. Type this code in: base.localAvatar.find('**/hands').setColor(0,0,255)
|
||
5. Zoom in and you will have colored gloves
|
||
|
||
|
||
Newest Rare Codes:
|
||
|
||
base.accept("1", base.localAvatar.b_setAnimState, ['Sit'])
|
||
|
||
messenger.send('clearOutToonInterior')
|
||
|
||
base.cr.setOwnerId(id goes here)
|
||
base.cr.setOwnerName('name here')
|
||
|
||
base.localAvatar.setCogParts([56444, 56447, 56447, 56411])
|
||
|
||
base.cr.destroyGoon()
|
||
|
||
messenger.send('friendAvatar', [284720681, 'Fireball', 1])
|
||
|
||
messenger.send('friendAvatar', [285649678, 285638390, 1])
|
||
|
||
messenger.send('gardenGame')
|
||
|
||
base.localAvatar.setLastHood(2000)
|
||
|
||
localAvatar.cogLevels=[99, 99, 99, 99]
|
||
|
||
messenger.send('enterStickerBook')
|
||
|
||
messenger.send('openFriendsList')
|
||
|
||
messenger.send('kickToPlayground', [1])
|
||
|
||
messenger.send('enterStickerBook')
|
||
from toontown.shtiker.MapPage import MapPage
|
||
gohome = MapPage()
|
||
gohome.goHome()
|
||
|
||
messenger.send('enterStickerBook')
|
||
from toontown.shtiker.MapPage import MapPage
|
||
playgroundtp = MapPage()
|
||
playgroundtp.goToPlayground()
|
||
|
||
base.oobe()
|
||
|
||
base.localAvatar.setColorScale(3)
|
||
|
||
messenger.send('gotoAvatar', [415100651, 'Mickey', 1])
|
||
|
||
messenger.send('friendAvatar', [base.localAvatar.doId, 'you', 1])
|
||
|
||
messenger.send('gotoAvatar', [base.localAvatar.doId, 'you', 1])
|
||
|
||
messenger.send('friendAvatar', [415494817, 'Cold Caller', 1])
|
||
|
||
messenger.send('avatarDetails', [283591132, 'Emerald', 1])
|
||
|
||
messenger.send('whisperAvatar', [id, 'name of toon', 'text', 1])
|
||
|
||
messenger.send('[base.localAvatar.doBlackCatTransformation(), 1], [base.localAvatar.doId, 'you', 1])
|
||
|
||
base.localAvatar.setZ(1.1)
|
||
|
||
messenger.send([base.cr.sendSetZoneMsg(7000)], [base.localAvatar.doId, 272503222, 'starkit', 1])
|
||
|
||
messenger.send('avatarDetails', [base.localAvatar.doId, 'Mickey', 1])
|
||
|
||
messenger.send('avatarDetails', [base.localAvatar.doId, 'Green Cat', 1])
|
||
|
||
messenger.send('disconnectAvatar', [272503222, 'starkit', 1])
|
||
|
||
messenger.send('avatarDetails', [284387691, 'Gears Of War', 1])
|
||
|
||
messenger.send('avatarDetails', [219556312, 'Cosmic Creepers', 1])
|
||
|
||
messenger.send('avatarDetails', [282014928, 'Whitexflour', 1])
|
||
|
||
messenger.send('avatarDetails', [245681021, 'Meownaise', 1])
|
||
|
||
messenger.send('avatarDetails', [285307048, 'Hackett', 1])
|
||
|
||
messenger.send('avatarDetails', [264516024, 'Buster', 1]) (Team Dawgs Member)
|
||
|
||
messenger.send('avatarDetails', [280484132, 'Little Cheezysplat', 1])
|
||
|
||
messenger.send('avatarDetails', [260827101, 'Trixie Sparklehopper', 1])
|
||
|
||
messenger.send('rejectTutorial')
|
||
|
||
messenger.send([base.cr,sendSetZoneMsg(7000)], [base.localAvatar.doId, '284475854', 1])
|
||
|
||
messenger.send([base.cr,sendSetZoneMsg(7000)], [284387691, 'Gears Of War', 1])
|
||
|
||
base.localAvatar.find('**/torso-bot').removeNode()
|
||
|
||
base.localAvatar.find('**/torso-bot').removeNode()
|
||
|
||
base.localAvatar.find('**/torso-top').removeNode()
|
||
|
||
base.localAvatar.find('**/torso-top').removeNode()
|
||
|
||
base.localAvatar.find('**/sleeves').removeNode()
|
||
|
||
base.localAvatar.find('**/sleeves').removeNode()
|
||
|
||
base.localAvatar.find('**/torso-bot').setColorScale(25)
|
||
|
||
base.localAvatar.find('**/torso-top').setColorScale(25)
|
||
|
||
base.localAvatar.find('**/sleeves').setColorScale(25)
|
||
|
||
shirts=loader.loadTexture("phase_4/maps/tt_t_chr_shirt_scientistB.jpg")
|
||
|
||
sleve=loader.loadTexture("phase_4/maps/tt_t_chr_shirtSleeve_scientist.jpg")
|
||
|
||
shorts=loader.loadTexture("phase_4/maps/tt_t_chr_shorts_scientistB.jpg")
|
||
|
||
base.localAvatar.find('**/torso-top').setTexture(shirts, 1)
|
||
|
||
base.localAvatar.find('**/torso-bot').setTexture(shorts, 1)
|
||
|
||
base.localAvatar.find('**/sleeves').setTexture(sleve, 1)
|
||
|
||
base.localAvatar.setControlEffect('sit', 0.65)
|
||
|
||
base.localAvatar.doEmote(0-22)
|
||
|
||
|
||
base.localAvatar.hide()
|
||
word = base.localAvatar.getZoneId()
|
||
word += 10
|
||
base.localAvatar.b_setLocation(base.localAvatar.defaultShard, word)
|
||
base.localAvatar.setSystemMessage(1,'Admin View Activated')
|
||
base.talkAssistant.sendOpenTalk('Admin View Activated')
|
||
base.oobe()
|
||
|
||
base.localAvatar.show()
|
||
word = base.localAvatar.getZoneId()
|
||
word -= 10
|
||
base.localAvatar.b_setLocation(base.localAvatar.defaultShard, word)
|
||
base.localAvatar.setSystemMessage(1,'Admin View Deactivated')
|
||
base.oobe()
|
||
|
||
|
||
|
||
|
||
base.localAvatar.setXYZH(-60.491, -118.164, 10.690, -262.540)
|
||
|
||
base.localAvatar.playSplashEffect(1, 0, 0)
|
||
|
||
|
||
Sleep:
|
||
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setHpr(0,70,0)
|
||
base.localAvatar.setPos(44,-16,4)
|
||
base.localAvatar.b_setAnimState('Sleep')
|
||
|
||
New codes:
|
||
|
||
base.localAvatar.setScale(1,4,5)
|
||
|
||
base.localAvatar.stunToon()
|
||
|
||
base.localAvatar.takeOffSuit()
|
||
|
||
base.localAvatar.movieDone()
|
||
|
||
base.localAvatar.setLevelDist(10)
|
||
|
||
base.localAvatar.setMinigameZone()
|
||
|
||
base.localAvatar.setNearbyAvatarChat('HEY!')
|
||
|
||
base.localAvatar.rewardDone()
|
||
|
||
base.localAvatar.timeout()
|
||
|
||
base.localAvatar.denyLocalToonJoin()
|
||
|
||
base.localAvatar.setAwardNotify(1)
|
||
|
||
base.localAvatar.setAwardNotify(0)
|
||
|
||
base.localAvatar.setMaxFishTank(100)
|
||
|
||
base.localAvatar.setMaxFlowerBasket(100)
|
||
|
||
base.localAvatar.setSpeedChatStyleIndex(15)
|
||
|
||
|
||
http://sharecash.org/download.php?file=1171069
|
||
|
||
Fun Land Download
|
||
|
||
|
||
|
||
Search: Go to SBHQ for new cog suit hack without the cog suit
|
||
|
||
youtube: http://www.youtube.com/watch?v=JzX5OYxNHXQ&feature=player_embedded#at=101
|
||
|
||
|
||
Possible Codes:
|
||
|
||
base.localAvatar.setWhiteMode(10)
|
||
|
||
base.localAvatar.setTeleportaccsess(1)
|
||
|
||
|
||
Toon Tutorial
|
||
|
||
base.cr.sendSetZoneMsg(61361) (PLAY WITH IT)
|
||
|
||
|
||
GOOFY SPEEDWAY
|
||
|
||
|
||
base.cr.sendSetZoneMsg(8501) car store
|
||
|
||
|
||
|
||
TOONTOWN CENTERAL
|
||
|
||
base.cr.sendSetZoneMsg(2000) ttc
|
||
|
||
base.cr.sendSetZoneMsg(2520) ttc hq
|
||
|
||
base.cr.sendSetZoneMsg(2513) ttc toon hall 1
|
||
|
||
base.cr.sendSetZoneMsg(2520) ttc toon hall 2
|
||
|
||
base.cr.sendSetZoneMsg(2521) ttc cloth store
|
||
|
||
base.cr.sendSetZoneMsg(2522) ttc pet store
|
||
|
||
base.cr.sendSetZoneMsg(2519) ttc gag shop
|
||
|
||
base.cr.sendSetZoneMsg(2518) ttc library
|
||
|
||
base.cr.sendSetZoneMsg(2516) ttc school house
|
||
|
||
base.cr.sendSetZoneMsg(2514) ttc bank
|
||
|
||
|
||
|
||
|
||
CHIP 'N DALE'S ACORN ACRES
|
||
|
||
base.cr.sendSetZoneMsg(6000) Chip 'n Dale's Acorn Acres
|
||
|
||
|
||
|
||
|
||
DONALD DOCK
|
||
|
||
|
||
base.cr.sendSetZoneMsg(1507) donald dock hq
|
||
|
||
base.cr.sendSetZoneMsg(1508) donald dock cloth store (do after ttc hq)
|
||
|
||
base.cr.sendSetZoneMsg(1506) donald dock gag store
|
||
|
||
|
||
|
||
DAISY GARDEN
|
||
|
||
base.cr.sendSetZoneMsg(5501) daisy garden gag store
|
||
|
||
base.cr.sendSetZoneMsg(5502) daisy garden hq
|
||
|
||
base.cr.sendSetZoneMsg(5503) daisy garden cloth store
|
||
|
||
|
||
|
||
MINNIE'S MELODYLAND
|
||
|
||
|
||
base.cr.sendSetZoneMsg(4503) minnie's melodyland gag shop
|
||
|
||
base.cr.sendSetZoneMsg(4504) minnie's melodyland hq
|
||
|
||
minnie's melodyland cloth store
|
||
|
||
|
||
base.cr.sendSetZoneMsg(4506)
|
||
|
||
BRRRGH
|
||
|
||
|
||
base.cr.sendSetZoneMsg(3507) Brrrgh gag shop
|
||
|
||
base.cr.sendSetZoneMsg(3508) Brrrgh hq
|
||
|
||
base.cr.sendSetZoneMsg(3509) Brrrgh cloth store
|
||
|
||
|
||
|
||
|
||
|
||
DONALD DREAMLAND
|
||
|
||
|
||
base.cr.sendSetZoneMsg(9504) Donald Dreamland Gag shop
|
||
|
||
base.cr.sendSetZoneMsg(9501) Donald Dreamland Cloth store idk which
|
||
|
||
base.cr.sendSetZoneMsg(9503) Donald Dreamland Cloth store idk which
|
||
|
||
base.cr.sendSetZoneMsg(9505) Donald Dreamland hq
|
||
base.cr.sendSetZoneMsg(9506) clothes shop.
|
||
|
||
|
||
|
||
|
||
SELLBOT HQ
|
||
|
||
|
||
base.cr.sendSetZoneMsg(11200) sellbot factory Lobby
|
||
|
||
base.cr.sendSetZoneMsg(11500) sellbot factory
|
||
|
||
base.cr.sendSetZoneMsg(11100) sellbot hq vp lobby
|
||
|
||
|
||
CASHBOT HQ
|
||
|
||
base.cr.sendSetZoneMsg(12100) cashbot hq cfo lobby
|
||
|
||
|
||
LAWBOT HQ
|
||
|
||
base.cr.sendSetZoneMsg(13100) lawbot hq cj lobby
|
||
|
||
base.cr.sendSetZoneMsg(13200) lawbot hq da lobby
|
||
|
||
|
||
BOSSBOT HQ
|
||
|
||
base.cr.sendSetZoneMsg (17100) bossbot hq ceo lobby
|
||
|
||
|
||
|
||
|
||
|
||
Hpr
|
||
|
||
base.localAvatar.setHpr(0,0,80)
|
||
|
||
base.localAvatar.setHpr(0,0,160)
|
||
|
||
base.localAvatar.setHpr(0,0,90)
|
||
|
||
base.localAvatar.setHpr(0,0,135)
|
||
|
||
base.localAvatar.setHpr(0,0,180)
|
||
|
||
base.localAvatar.setHpr(0,0,225)
|
||
|
||
base.localAvatar.setHpr(0,0,270)
|
||
|
||
base.localAvatar.setHpr(0,0,315)
|
||
|
||
base.localAvatar.setHpr(0,0,360)
|
||
|
||
base.localAvatar.setHpr(0,0,315)
|
||
|
||
|
||
Laff
|
||
|
||
base.localAvatar.toonUp(137)
|
||
|
||
base.localAvatar.setMaxHp(137)
|
||
|
||
base.localAvatar.setHp(137)
|
||
|
||
base.localAvatar.takeDamage((500))
|
||
|
||
base.localAvatar.b_setAnimState(('Sad'))
|
||
|
||
base.localAvatar.b_setAnimState(('Died'))
|
||
|
||
|
||
How Many
|
||
|
||
base.localAvatar.setTeleportAccess ([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
|
||
base.localAvatar.winterCarolingTargetMet(9999)
|
||
|
||
base.localAvatar.setKartBodyType(1)
|
||
|
||
base.localAvatar.trickOrTreatTargetMet(9999)
|
||
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
|
||
base.localAvatar.setNumPies(999)
|
||
|
||
localAvatar.cogMerits=[0, 0, 0, 0]
|
||
|
||
base.localAvatar.setPosHpr(71,-64,0,0,0,315)
|
||
|
||
base.localAvatar.find('**/neck').removeNode()
|
||
|
||
base.localAvatar.find('**/muzzle-short-neutral').removeNode()
|
||
|
||
|
||
|
||
base.localAvatar.find('**/torso-bot').removeNode()
|
||
|
||
base.localAvatar.find('**/torso-bot').removeNode()
|
||
|
||
base.localAvatar.find('**/torso-top').removeNode()
|
||
|
||
base.localAvatar.find('**/torso-top').removeNode()
|
||
|
||
base.localAvatar.find('**/sleeves').removeNode()
|
||
|
||
base.localAvatar.find('**/sleeves').removeNode()
|
||
|
||
base.localAvatar.find('**/torso-bot').setColorScale(25)
|
||
|
||
base.localAvatar.find('**/torso-top').setColorScale(25)
|
||
|
||
base.localAvatar.find('**/sleeves').setColorScale(25)
|
||
|
||
shirts=loader.loadTexture("phase_4/maps/tt_t_chr_shirt_scientistB.jpg")
|
||
|
||
sleve=loader.loadTexture("phase_4/maps/tt_t_chr_shirtSleeve_scientist.jpg")
|
||
|
||
shorts=loader.loadTexture("phase_4/maps/tt_t_chr_shorts_scientistB.jpg")
|
||
|
||
base.localAvatar.find('**/torso-top').setTexture(shirts, 1)
|
||
|
||
base.localAvatar.find('**/torso-bot').setTexture(shorts, 1)
|
||
|
||
base.localAvatar.find('**/sleeves').setTexture(sleve, 1)
|
||
|
||
|
||
|
||
base.localAvatar.find('**/hands').removeNode()
|
||
|
||
gloves = loader.loadTexture("phase_10/maps/CBStationStripes2.jpg")
|
||
|
||
base.localAvatar.find('**/hands').setTexture(gloves, 1)
|
||
|
||
|
||
|
||
base.localAvatar.book.pages[1].showPop = 1 Districts Empty
|
||
|
||
base.localAvatar.setPinkSlips((#))
|
||
|
||
base.localAvatar.setMaxCarry(9999)
|
||
|
||
base.localAvatar.setBankMoney(10000)
|
||
|
||
base.localAvatar.setMoney(999)
|
||
|
||
base.localAvatar.setMaxBankMoney(10000)
|
||
|
||
base.localAvatar.setFishingTrophies([0,1,2,3,4,5,6])
|
||
|
||
base.localAvatar.setMaxClothes(500)
|
||
|
||
base.localAvatar.setQuestCarryLimit(4)
|
||
|
||
base.localAvatar.setTrackAccess([1,1,1,1,1,1,1])
|
||
|
||
base.localAvatar.setExperience('10500')
|
||
|
||
base.localAvatar.setTickets(#)
|
||
|
||
base.localAvatar.setColor(1,1,1,1,1)
|
||
|
||
base.localAvatar.setGardenStarted()
|
||
|
||
base.localAvatar.setEmoteAccess([1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1])
|
||
|
||
base.localAvatar.setTrackBonusLevel([7,7,7,7,7,7,7])
|
||
|
||
base.localAvatar.setPetTrickPhrases([0,1,2,3,4,5,6])
|
||
|
||
base.localAvatar.setEmoteAccess([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24])
|
||
|
||
base.localAvatar.setPinkSlips((#))
|
||
|
||
|
||
Pie Throw Server Sided
|
||
|
||
|
||
1. Go in vp
|
||
2. On pie round grab some pies and put this code in: base.cr.sendSetZoneMsg(2513)
|
||
3. When at the Toon Hall open your book and teleport to ToonTownCentral
|
||
4. When at ToonTownCentral teleport to a new District
|
||
5. Now go back to the District you were in
|
||
|
||
|
||
Free SOS (2 SOS Cards)
|
||
|
||
1. Go in vp
|
||
2. On pie round grab some pies and put this code in: base.cr.sendSetZoneMsg(2513)
|
||
3. When at the Toon Hall press Shift + F1.
|
||
4. Skip down to the part that says Zone
|
||
5. Now enter it the zone in the () marks: base.cr.sendSetZoneMsg()
|
||
6. Now go back and enter the code: base.cr.sendSetZoneMsg(2513)
|
||
7. Wait till your toon starts dancing and go back to the vp zone.
|
||
8. You will now have 2 SOS Cards instead of one.
|
||
|
||
|
||
Tranform
|
||
|
||
|
||
base.localAvatar.setCheesyEffect(14, 0, 0)
|
||
|
||
base.localAvatar.setCogIndex(2)
|
||
|
||
base.localAvatar.setCogIndex(-1)
|
||
|
||
base.localAvatar.setGhostMode(2)
|
||
|
||
base.localAvatar.setName('Name')
|
||
|
||
|
||
SpeedChat
|
||
|
||
Pirates:
|
||
|
||
base.localAvatar.b_setSC(50103) Walk the Plank!
|
||
|
||
base.localAvatar.b_setSC(50108) I don't fear death - I attune it!
|
||
|
||
base.localAvatar.b_setSC(50702) Yo-Ho-Ho
|
||
|
||
base.localAvatar.b_setSC(50107) treasure be the measure of our pleasure!
|
||
|
||
base.localAvatar.b_setSC(50205) Addle-minded Fool!
|
||
|
||
base.localAvatar.b_setSC(50305) Yer not so bad yerself!
|
||
|
||
base.localAvatar.b_setSC(50207) Ye be one dubloon late of ye full hull mate!
|
||
|
||
base.localAvatar.b_setSC(50104) Dead men tell no tales...
|
||
|
||
base.localAvatar.b_setSC(50210) The horizon be as empty as yer head!
|
||
|
||
base.localAvatar.b_setSC(50203) Scoundrel!
|
||
|
||
base.localAvatar.b_setSC(50209) Touch me loot and ye'll get the boot!
|
||
|
||
base.localAvatar.b_setSC(50106) Salty as a krackens kiss!
|
||
|
||
base.localAvatar.b_setSC(50703) Avast!
|
||
|
||
base.localAvatar.b_setSC(50306) A fine plunder haul!
|
||
|
||
base.localAvatar.b_setSC(50206) You need a sharp sword and sharper wits!
|
||
|
||
base.localAvatar.b_setSC(50105) Shiver me timbers!
|
||
|
||
base.localAvatar.b_setSC(50704) Hey bucko!
|
||
|
||
base.localAvatar.b_setSC(50304) We showed them!
|
||
|
||
base.localAvatar.b_setSC(50204) Landlubber!
|
||
|
||
base.localAvatar.b_setSC(50208) Watch yer tounge or i'll pickle it with sea salt!
|
||
|
||
base.localAvatar.b_setSC(50202) See ye in Davy Jones Locker!
|
||
|
||
base.localAvatar.b_setSC(50302) Nice Shot!
|
||
|
||
base.localAvatar.b_setSC(50303) Well met!
|
||
|
||
base.localAvatar.b_setSC(50102) Well Blow Me Down!
|
||
|
||
base.localAvatar.b_setSC(50802) Godspeed.
|
||
|
||
base.localAvatar.b_setSC(50002) Nay
|
||
|
||
base.localAvatar.b_setSC(50001) Aye
|
||
|
||
base.localAvatar.b_setSC(51202) Sorry, I was busy before.
|
||
|
||
base.localAvatar.b_setSC(50101) Blimey!
|
||
|
||
base.localAvatar.b_setSC(50400) Lets set sail.
|
||
|
||
base.localAvatar.b_setSC(50005) Ok
|
||
|
||
base.localAvatar.b_setSC(51000) It's like the sky is raining gold dubloons!
|
||
|
||
base.localAvatar.b_setSC(50201) Scurvey Dog!
|
||
|
||
base.localAvatar.b_setSC(50100) Gangway!
|
||
|
||
base.localAvatar.b_setSC(50700) Ahoy!
|
||
|
||
base.localAvatar.b_setSC(50900) How are ye mate?
|
||
|
||
base.localAvatar.b_setSC(50800) Until next time.
|
||
|
||
base.localAvatar.b_setSC(50300) Fine shooting Mate!
|
||
|
||
base.localAvatar.b_setSC(50301) A Well Placed Blow!
|
||
|
||
base.localAvatar.b_setSC(50701) Ahoy, Mate!
|
||
|
||
base.localAvatar.b_setSC(50801) May fair winds find ye!
|
||
|
||
base.localAvatar.b_setSC(50401) Lets get out of Here
|
||
|
||
base.localAvatar.b_setSC(51001) May our stiff winds be at our backs, the sun on our
|
||
|
||
faces and our cannons fire true!
|
||
|
||
|
||
|
||
Votes:
|
||
|
||
base.localAvatar.b_setSC(10000) The Choice is Yours!
|
||
|
||
base.localAvatar.b_setSC(10001) Who are you voting for?
|
||
|
||
base.localAvatar.b_setSC(10002) I'm pickin' Chicken!
|
||
|
||
base.localAvatar.b_setSC(10003) Vote Now! Vote Cow!
|
||
|
||
base.localAvatar.b_setSC(10004) Go bananas! Vote Monkey!
|
||
|
||
base.localAvatar.b_setSC(10005) Be a Honey! Vote Bear!
|
||
|
||
base.localAvatar.b_setSC(10006) Think Big vote Pig!
|
||
|
||
base.localAvatar.b_setSC(10007) Vote Goat - And thats all she wrote!
|
||
|
||
|
||
Fighting
|
||
|
||
base.localAvatar.b_setSC(51302) Attack me target!
|
||
|
||
base.localAvatar.b_setSC(51301) Attack the strongest one!
|
||
|
||
base.localAvatar.b_setSC(51303) I be needing help!
|
||
|
||
base.localAvatar.b_setSC(51304) I can't do any damage!
|
||
|
||
base.localAvatar.b_setSC(51305) I think we be in trouble.
|
||
|
||
base.localAvatar.b_setSCSinging(51306) Surround the most powerful one.
|
||
|
||
base.localAvatar.b_setSCSinging(51307) We should retreat.
|
||
|
||
base.localAvatar.b_setSCSinging(51308) run for it!
|
||
|
||
|
||
Cogs:
|
||
|
||
base.localAvatar.b_setSCSinging(20000) Its my day off!
|
||
|
||
base.localAvatar.b_setSCSinging(20001) I believe you're in the wrong office.
|
||
|
||
base.localAvatar.b_setSCSinging(20002) Have your people call my people.
|
||
|
||
base.localAvatar.b_setSCSinging(20003) Your in no position to meet with me.
|
||
|
||
base.localAvatar.b_setSCSinging(20004) Talk to my Assistant
|
||
|
||
base.localAvatar.b_setSCSinging(20005) Looks Like You've hit Rock Bottom!
|
||
|
||
base.localAvatar.b_setSCSinging(20006) I'm ready to feast.
|
||
|
||
base.localAvatar.b_setSCSinging(20007) I'm a sucker for Toons.
|
||
|
||
base.localAvatar.b_setSCSinging(2200) You should hit the scale.
|
||
|
||
base.localAvatar.b_setSCSinging(2201) I will hit the scale.
|
||
|
||
base.localAvatar.b_setSCSinging(20008) Oh goody, lunch time!
|
||
|
||
base.localAvatar.b_setSCSinging(20009) Perfect Timing, I need a quick bite.
|
||
|
||
base.localAvatar.b_setSCSinging(20010) I'd like some Feedback on my performance.
|
||
|
||
base.localAvatar.b_setSCSinging(20011) Let's talk about the Bottom line.
|
||
|
||
base.localAvatar.b_setSCSinging(20012) You'll find my tallents are Bottomless.
|
||
|
||
base.localAvatar.b_setSCSinging(20013) Good, I need a little pick-me-up.
|
||
|
||
base.localAvatar.b_setSCSinging(20014) I'd love to have you for lunch.
|
||
|
||
base.localAvatar.b_setSCSinging(20015) Looks like your number is up.
|
||
|
||
base.localAvatar.b_setSCSinging(20016) I hope you Perfer Extra Crunchy
|
||
|
||
base.localAvatar.b_setSCSinging(20017) Now your really in a crunch.
|
||
|
||
base.localAvatar.b_setSCSinging(20018) Is it time for Crunch already?
|
||
|
||
base.localAvatar.b_setSCSinging(20019) Let's do Crunch.
|
||
|
||
base.localAvatar.b_setSCSinging(20032) Are you positive you want to do this?
|
||
|
||
base.localAvatar.b_setSCSinging(20020) Where would you like to have your Crunch today?
|
||
|
||
base.localAvatar.b_setSCSinging(20021) You've given me something to crunch on.
|
||
|
||
base.localAvatar.b_setSCSinging(20022) I will not be smooth
|
||
|
||
base.localAvatar.b_setSCSinging(20023) Go ahead, try and take a number.
|
||
|
||
base.localAvatar.b_setSCSinging(20024) I could do with a nice crunch about now.
|
||
|
||
base.localAvatar.b_setSCSinging(20025) I'm positive your not going to like this.
|
||
|
||
base.localAvatar.b_setSCSinging(20026) I don't know the meaning of no.
|
||
|
||
base.localAvatar.b_setSCSinging(20027) Want to Meet i say yes everytime.
|
||
|
||
base.localAvatar.b_setSCSinging(20028) You need some positive Enforcment.
|
||
|
||
base.localAvatar.b_setSCSinging(20029) I'm going to make a postive impression.
|
||
|
||
base.localAvatar.b_setSCSinging(20030) I haven't been wrong yet.
|
||
|
||
base.localAvatar.b_setSCSinging(20047) I enjoy subtracting Toons.
|
||
|
||
base.localAvatar.b_setSCSinging(20087) I hope you brought a stretcher with you.
|
||
|
||
base.localAvatar.b_setSCSinging(20185) I'll prove your not dreaming.
|
||
|
||
base.localAvatar.b_setSCSinging(20200) I'm gonna tell the boss about you!
|
||
|
||
base.localAvatar.b_setSCSinging(20258) Today the role of deafeted toon will be played by -- YOU!
|
||
|
||
Appologize
|
||
|
||
base.localAvatar.b_setSCSinging(51201) Sorry.
|
||
|
||
base.localAvatar.b_setSCSinging(50211) Yer a canvas shy of full sail, aren't ye mate?
|
||
|
||
base.localAvatar.b_setSCSinging(51203) Sorry, I already have plans.
|
||
|
||
base.localAvatar.b_setSCSinging(51204) Sorry, I dont need to do that.
|
||
|
||
|
||
Boarding:
|
||
|
||
base.localAvatar.b_setSCSinging(5000) Let's form a boarding group.
|
||
|
||
base.localAvatar.b_setSCSinging(5001) Join my Boarding Group!
|
||
|
||
base.localAvatar.b_setSCSinging(5002) Can you invite me to your boarding group?
|
||
|
||
base.localAvatar.b_setSCSinging(5003) I'm already in a boarding gorup.
|
||
|
||
base.localAvatar.b_setSCSinging(5004)Leave your boarding Group
|
||
|
||
base.localAvatar.b_setSCSinging(5005) We are boarding Now.
|
||
|
||
base.localAvatar.b_setSCSinging(5006) Where are we going?
|
||
|
||
base.localAvatar.b_setSCSinging(5007) Are we ready?
|
||
|
||
base.localAvatar.b_setSCSinging(5008) Let's Go!
|
||
|
||
base.localAvatar.b_setSCSinging(5009) Don't leave this ara or you will leave the boarding
|
||
group!
|
||
|
||
|
||
|
||
Colors:
|
||
|
||
base.localAvatar.b_setSC(2000) Purple
|
||
|
||
base.localAvatar.b_setSC(2001) Blue
|
||
|
||
base.localAvatar.b_setSC(2002) Cyan
|
||
|
||
base.localAvatar.b_setSC(2003) Teal
|
||
|
||
base.localAvatar.b_setSC(2004) Green
|
||
|
||
base.localAvatar.b_setSC(2005) Yellow
|
||
|
||
base.localAvatar.b_setSC(2006) Orange
|
||
|
||
base.localAvatar.b_setSC(2007) Red
|
||
|
||
base.localAvatar.b_setSC(2008) Pink
|
||
|
||
base.localAvatar.b_setSC(2009) Brown
|
||
|
||
|
||
Greeting:
|
||
|
||
base.localAvatar.b_setSC(60102) Hey!
|
||
|
||
base.localAvatar.b_setSC(60103) Yo!
|
||
|
||
|
||
Silly Meter:
|
||
|
||
base.localAvatar.b_setSC(60301) Have you been to the Silly Meter Yet?
|
||
|
||
|
||
Christmas:
|
||
|
||
base.localAvatar.b_setSC(60200) Deck the halls...
|
||
|
||
|
||
Sad:
|
||
|
||
base.localAvatar.b_setSC(60400) :-(
|
||
|
||
base.localAvatar.b_setSC(60402) Aww man!
|
||
|
||
base.localAvatar.b_setSC(60401) Doh!
|
||
|
||
base.localAvatar.b_setSC(60404) Bummer!
|
||
|
||
|
||
|
||
April Toons Week:
|
||
|
||
base.localAvatar.b_setSC(60100)
|
||
|
||
|
||
Lets go to (weird phrases)
|
||
|
||
base.localAvatar.b_setSC(60500) Where are you?
|
||
|
||
base.localAvatar.b_setSC(60501) Let's go to the Gateway Store!
|
||
|
||
base.localAvatar.b_setSC(60502) Let's go to the Disco
|
||
|
||
base.localAvatar.b_setSC(60503) Let's go to Toontown!
|
||
|
||
base.localAvatar.b_setSC(60504) Let's go to Piarates of the Caribean!
|
||
|
||
|
||
Animations:
|
||
|
||
base.localAvatar.b_setSC(60505) Flip Coin
|
||
|
||
base.localAvatar.b_setSC(60506) Dance
|
||
|
||
base.localAvatar.b_setSC(60507) Chant 1
|
||
|
||
base.localAvatar.b_setSC(60508) Chant 2
|
||
|
||
base.localAvatar.b_setSC(60509) Dance a jig
|
||
|
||
base.localAvatar.b_setSC(60510) Sleep
|
||
|
||
base.localAvatar.b_setSC(60511) Flex
|
||
|
||
base.localAvatar.b_setSC(60512) Play lute
|
||
|
||
base.localAvatar.b_setSC(60513) Play Flute
|
||
|
||
base.localAvatar.b_setSC(60514) Frustrated
|
||
|
||
base.localAvatar.b_setSC(60515) Searching
|
||
|
||
base.localAvatar.b_setSC(60516) Yawn
|
||
|
||
base.localAvatar.b_setSC(60517) Kneel
|
||
|
||
base.localAvatar.b_setSC(60518) Sweep
|
||
|
||
base.localAvatar.b_setSC(60519) Primp
|
||
|
||
base.localAvatar.b_setSC(60522) No
|
||
|
||
base.localAvatar.b_setSC(60523) Yes
|
||
|
||
base.localAvatar.b_setSC(60524) Laugh
|
||
|
||
base.localAvatar.b_setSC(60525) Clap
|
||
|
||
base.localAvatar.b_setSC(60526) Smile
|
||
|
||
base.localAvatar.b_setSC(60527) Anger
|
||
|
||
base.localAvatar.b_setSC(60528) Fear
|
||
|
||
base.localAvatar.b_setSC(60529) Sad
|
||
|
||
base.localAvatar.b_setSC(60530) Celebrate
|
||
|
||
|
||
|
||
CFO
|
||
|
||
(GO DOWN AND UP)
|
||
|
||
base.localAvatar.b_setSC(2104)
|
||
|
||
|
||
Rude:
|
||
|
||
base.localAvatar.b_setSC(20007) I'm a sucker for toons!
|
||
|
||
base.localAvatar.b_setSC(50103) Walk the Plank!
|
||
|
||
base.localAvatar.b_setSC(50704) Hey Bucko
|
||
|
||
base.localAvatar.b_setSC(50205) Addle-minded Fool!
|
||
|
||
base.localAvatar.b_setSC(50208) Watch yer tounge or i'll pickle it with sea salt!
|
||
|
||
base.localAvatar.b_setSC(20152) I'm going to make motzerilla outa ya!
|
||
|
||
base.localAvatar.b_setSC(20150) I'm going to cream ya!
|
||
|
||
base.localAvatar.b_setSC(50210) The horizon be as empty as yer head!
|
||
|
||
base.localAvatar.b_setSC(2200) You should hit the scale!
|
||
|
||
base.localAvatar.b_setSC(50201) Scurvy Dog!
|
||
|
||
base.localAvatar.b_setSC(20056) I've been waiting for you!
|
||
|
||
base.localAvatar.b_setSC(20038) Move it or lose it!
|
||
|
||
|
||
Parties:
|
||
|
||
base.localAvatar.setSC(5303) - Come to my party!
|
||
|
||
base.localAvatar.setSC(5300) - Let's go to a party!
|
||
|
||
base.localAvatar.setSC(5302) - My party has started!
|
||
|
||
base.localAvatar.setSC(5316) - Let's Dance!
|
||
|
||
base.localAvatar.setSC(5317) - To the dance floor!
|
||
|
||
base.localAvatar.setSC(5318) - Let's play tug-o-war!
|
||
|
||
base.localAvatar.setSC(5319) - Start the fireworks!
|
||
|
||
base.localAvatar.setSC(5320) - These fireworks are beutiful!
|
||
|
||
base.localAvatar.setSC(5321) - Nice Decorations!
|
||
|
||
base.localAvatar.setSC(5322) - I wish I could eat this cake!
|
||
|
||
base.localAvatar.setSC(5313) - Watch me jump!
|
||
|
||
base.localAvatar.setSC(5308) - Time is running out!
|
||
|
||
base.localAvatar.setSC(5307) - It's party time!
|
||
|
||
|
||
Other Phrases:
|
||
|
||
base.localAvatar.b_setSC(60673) If you were a booger, I'd pick you first.
|
||
|
||
base.localAvatar.b_setSC(20300) You make my hair curl.
|
||
|
||
base.localAvatar.b_setSC(20136) RAID!
|
||
|
||
base.localAvatar.b_setSC(2222) I have a bonus weight of 11.
|
||
base.localAvatar.b_setSC(2221) I have a bonus weight of 10.
|
||
|
||
base.localAvatar.b_setSC(4) SPEEDCHAT PLUS
|
||
|
||
base.localAvatar.announceBingo() BINGO!
|
||
|
||
|
||
Golf:
|
||
|
||
base.localAvatar.b_setSC(4002) Want to golf?
|
||
|
||
base.localAvatar.b_setSC(4102) Let's Play Hole And Cabootale
|
||
|
||
base.localAvatar.b_setSC(4202) Try standing right in the middle
|
||
|
||
|
||
Wrong:
|
||
|
||
base.localAvatar.b_setSC(3301) Your too fast for me!
|
||
|
||
base.localAvatar.b_setSC(50401) Let's get out of here!
|
||
|
||
base.localAvatar.b_setSC(4203) Try Hitting it Harder
|
||
|
||
base.localAvatar.b_setSC(4207) Try aiming right down the middle.
|
||
|
||
base.localAvatar.b_setSC(4204) Try Hitting it Softer
|
||
|
||
|
||
Speed Chat List
|
||
|
||
base.accept("1", base.localAvatar.b_setSCSinging, [20136])
|
||
base.accept("2", base.localAvatar.b_setSCSinging, [4])
|
||
base.accept("3", base.localAvatar.b_setSCSinging, [50205])
|
||
base.accept("4", base.localAvatar.b_setSCSinging, [60509])
|
||
base.accept("5", base.localAvatar.b_setSCSinging, [60501])
|
||
base.accept("6", base.localAvatar.b_setSCSinging, [60502])
|
||
base.accept("7", base.localAvatar.b_setSCSinging, [60103])
|
||
base.accept("8", base.localAvatar.b_setSCSinging, [2222])
|
||
base.accept("9", base.localAvatar.b_setSCSinging, [20150])
|
||
base.accept("0", base.localAvatar.b_setSCSinging, [50704])
|
||
|
||
Actions
|
||
|
||
base.localAvatar.b_setAnimState(('jumpAirborne'))
|
||
|
||
base.localAvatar.b_setAnimState(('jumpLand'))
|
||
|
||
base.localAvatar.b_setAnimState(('jumpSquat'))
|
||
|
||
base.localAvatar.loop('climb')
|
||
|
||
base.localAvatar.loop('running-jump')
|
||
|
||
base.localAvatar.loop('callPet')
|
||
|
||
base.localAvatar.loop('feedPet')
|
||
|
||
base.localAvatar.loop('phoneBack')
|
||
|
||
base.localAvatar.loop('phoneNeutral')
|
||
|
||
base.localAvatar.loop('takePhone')
|
||
|
||
base.localAvatar.loop('sidestep-left')
|
||
|
||
base.localAvatar.loop('sidestep-right')
|
||
|
||
base.localAvatar.loop('lookloop-putt')
|
||
|
||
base.localAvatar.loop('loop-dig')
|
||
|
||
base.localAvatar.loop('leverNeutral')
|
||
|
||
base.localAvatar.loop('leverReach')
|
||
|
||
base.localAvatar.loop('leverPull')
|
||
|
||
base.localAvatar.loop('duck')
|
||
|
||
base.localAvatar.loop('spit')
|
||
|
||
base.localAvatar.loop('struggle')
|
||
|
||
base.localAvatar.loop('toss')
|
||
|
||
base.localAvatar.loop('water-gun')
|
||
|
||
base.localAvatar.loop('smooch')
|
||
|
||
base.localAvatar.loop('firehose')
|
||
|
||
base.localAvatar.loop('hold-bottle')
|
||
|
||
base.localAvatar.loop('hold-magnet')
|
||
|
||
base.localAvatar.loop('melt') - quick sand
|
||
|
||
base.localAvatar.loop('happy-dance')
|
||
|
||
base.localAvatar.loop('hypnotize')
|
||
|
||
base.localAvatar.loop('tickle')
|
||
|
||
base.localAvatar.loop('sprinkle-dust')
|
||
|
||
base.localAvatar.loop('reel-H')
|
||
|
||
base.localAvatar.loop('tug-o-war')
|
||
|
||
base.localAvatar.loop('pet-end')
|
||
|
||
base.localAvatar.loop('catch-intro-throw')
|
||
|
||
base.localAvatar.loop('catch-eatnrun')
|
||
|
||
base.localAvatar.loop('fish-end')
|
||
|
||
base.localAvatar.loop('fish-again')
|
||
|
||
base.localAvatar.loop('push')
|
||
|
||
base.localAvatar.loop('swing')
|
||
|
||
base.localAvatar.loop('reel')
|
||
|
||
base.localAvatar.loop('throw')
|
||
|
||
base.localAvatar.loop('left')
|
||
|
||
base.localAvatar.loop('right')
|
||
|
||
base.localAvatar.loop('sound')
|
||
|
||
base.localAvatar.loop('pole')
|
||
|
||
base.localAvatar.loop('cast')
|
||
|
||
base.localAvatar.loop('pole-neutral')
|
||
|
||
base.localAvatar.loop('pet-loop')
|
||
|
||
base.localAvatar.loop('castlong')
|
||
|
||
base.localAvatar.loop('slip-forward')
|
||
|
||
base.localAvatar.loop('slip-backward')
|
||
|
||
base.localAvatar.loop('scientistGame')
|
||
|
||
base.localAvatar.loop('scientistWork')
|
||
|
||
base.localAvatar.loop('sad-neutral')
|
||
|
||
base.localAvatar.loop('reel-neutral')
|
||
|
||
base.localAvatar.loop('curtsy')
|
||
|
||
base.localAvatar.loop('down')
|
||
|
||
base.localAvatar.loop('up')
|
||
|
||
base.localAvatar.loop('think')
|
||
|
||
base.localAvatar.loop('lose')
|
||
|
||
base.localAvatar.loop('swim')
|
||
|
||
base.localAvatar.loop('cringe')
|
||
|
||
base.localAvatar.loop('applause')
|
||
|
||
base.localAvatar.loop('confused')
|
||
|
||
base.localAvatar.loop('run')
|
||
|
||
base.localAvatar.loop('walk')
|
||
|
||
base.localAvatar.loop('juggle')
|
||
|
||
base.localAvatar.loop('bored')
|
||
|
||
base.localAvatar.loop('jump')
|
||
|
||
base.localAvatar.loop('bow')
|
||
|
||
base.localAvatar.loop('teleport')
|
||
|
||
base.localAvatar.loop('wave')
|
||
|
||
base.localAvatar.loop('angry')
|
||
|
||
base.localAvatar.loop('shrug')
|
||
|
||
base.localAvatar.loop('book')
|
||
|
||
base.localAvatar.loop('sit')
|
||
|
||
|
||
Pie Aim:
|
||
|
||
Get pies Hold it and walk forward then use the scientistEmcee code
|
||
|
||
|
||
base.localAvatar.b_setAnimState(('swim'))
|
||
|
||
base.localAvatar.b_setAnimState(('jump'))
|
||
|
||
base.localAvatar.b_setAnimState(('CogThiefRunning'))
|
||
|
||
base.localAvatar.b_setAnimState(('run'))
|
||
|
||
base.localAvatar.b_setAnimState(('ScientistLessWork'))
|
||
|
||
base.localAvatar.b_setAnimState(('walk'))
|
||
|
||
base.localAvatar.b_setAnimState(('cringe'))
|
||
|
||
base.localAvatar.b_setAnimState(('dive'))
|
||
|
||
base.localAvatar.b_setAnimState(('FallDown'))
|
||
|
||
base.localAvatar.enterSitStart()
|
||
|
||
base.localAvatar.enterSad()
|
||
|
||
base.localAvatar.enterHappy()
|
||
|
||
base.localAvatar.b_setAnimState('teleport')
|
||
|
||
base.localAvatar.b_setAnimState(('Push'))
|
||
|
||
base.localAvatar.b_setAnimState(('flat'))
|
||
|
||
base.localAvatar.b_setAnimState(('Squish'))
|
||
|
||
base.localAvatar.b_setAnimState(('victory'))
|
||
|
||
base.localAvatar.b_setAnimState(('ScientistJealous'))
|
||
|
||
base.localAvatar.b_setAnimState('ScientistPlay')
|
||
|
||
base.localAvatar.b_setAnimState('ScientistWork')
|
||
|
||
base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
|
||
base.localAvatar.b_setAnimState(('GolfPuttLoop'))
|
||
|
||
base.localAvatar.b_setAnimState(('GolfPuttSwing'))
|
||
|
||
base.localAvatar.b_setAnimState(('Sit'))
|
||
|
||
base.localAvatar.b_setAnimState('CatchEating')
|
||
|
||
base.localAvatar.b_setAnimState('Flattened')
|
||
|
||
base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
|
||
swim and toons unite for floating dead person
|
||
|
||
base.localAvatar.b_setAnimState(('ReadBook'))
|
||
|
||
base.localAvatar.b_setAnimState(('GolfPuttSwing'))
|
||
|
||
base.localAvatar.b_setAnimState(('GolfPuttLoop'))
|
||
|
||
base.localAvatar.b_setAnimState(('GolfRotateRight'))
|
||
|
||
base.localAvatar.b_setAnimState(('GolfRotateLeft'))
|
||
|
||
base.localAvatar.b_setAnimState('walk')
|
||
|
||
base.localAvatar.b_setAnimState(('TeleportIn'))
|
||
|
||
base.localAvatar.b_setAnimState(('TeleportOut'))
|
||
|
||
base.localAvatar.b_setAnimState('SitStart')
|
||
|
||
base.localAvatar.b_setAnimState(('Catching'))
|
||
|
||
base.localAvatar.b_setAnimState(('ScientistPlay'))
|
||
base.localAvatar.b_setSCSinging(20150)
|
||
|
||
base.localAvatar.b_setAnimState(('ScientistPlay'))
|
||
base.localAvatar.b_setSCSinging(20155)
|
||
|
||
Bots:
|
||
|
||
|
||
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setEmoteState(0,0)
|
||
base.localAvatar.b_setSCSinging(50702)
|
||
def part2():
|
||
base.talkAssistant.sendOpenTalk('YOU LOSE')
|
||
base.localAvatar.b_setEmoteState(23,1)
|
||
def part3():
|
||
base.talkAssistant.sendOpenTalk('OH YA I SAID IT')
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part4():
|
||
base.talkAssistant.sendOpenTalk('MY TEAM WILL OWN ALL YOU LOSE ERRS!')
|
||
base.localAvatar.b_setEmoteState(24,1)
|
||
def part5():
|
||
base.talkAssistant.sendOpenTalk('We are Epic Hock errs!')
|
||
def part6():
|
||
base.talkAssistant.sendOpenTalk('AND YOU CAN'T STOP US')
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part7():
|
||
base.localAvatar.b_setSCSinging(50800)
|
||
base.localAvatar.b_setEmoteState(0,0)
|
||
def addzone():
|
||
word = base.localAvatar.getZoneId()
|
||
word += 10
|
||
base.localAvatar.b_setLocation(base.localAvatar.defaultShard, word)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(5))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(part3))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(part4))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(part5))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(part6))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(part7))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(addzone))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
Long
|
||
|
||
Long Bubble:
|
||
|
||
base.talkAssistant.sendOpenTalk('I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! I AM NOT FRITZ! ')
|
||
|
||
Member:
|
||
|
||
import toontown
|
||
def new():
|
||
return True
|
||
def new2(*a,**k):
|
||
return 2
|
||
def new3():
|
||
return 999 * 999
|
||
base.cr.isPaid = new
|
||
base.cr.allowSecretChat = new
|
||
base.cr.isParentPasswordSet = new
|
||
base.cr.freeTimeLeft = new3
|
||
toontown.toon.LocalToon.LocalToon.getGameAccess = new2
|
||
|
||
|
||
Member:
|
||
|
||
import toontown
|
||
def new():
|
||
return True
|
||
def new2(*a,**k):
|
||
return 1
|
||
base.cr.isPaid = new
|
||
base.cr.allowSecretChat = new
|
||
base.cr.isParentPasswordSet = new
|
||
base.localAvatar.getGameAccess = new2
|
||
|
||
Enter Test Server:
|
||
|
||
import toontown
|
||
def enter():
|
||
return 1
|
||
base.cr.isTestServer = enter
|
||
|
||
Sf Hack:
|
||
|
||
base.cr.isParentPasswordSet = True
|
||
|
||
def new():
|
||
return True
|
||
base.cr.isPaid = new
|
||
base.cr.isParentPasswordSet = new
|
||
|
||
Sideways Swim:
|
||
|
||
base.localAvatar.setHpr(0,0,80)
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.b_setAnimState(('swim'))
|
||
base.localAvatar.collisionsOff()
|
||
|
||
|
||
Gloves - Zoom out to see -
|
||
|
||
base.localAvatar.find('**/hands').removeNode()
|
||
|
||
base.localAvatar.find('**/hands').setColor(255,0,0) Colored Gloves Red
|
||
|
||
base.localAvatar.find('**/hands').setColor(0,0,0) Colored Gloves Black
|
||
|
||
base.localAvatar.find('**/hands').setColor(0,255,0) Colored Gloves Green
|
||
|
||
base.localAvatar.find('**/hands').setColor(0,0,255) Colored Gloves Blue
|
||
|
||
base.localAvatar.find('**/hands').setColor(1,0000,1) Colored Gloves Pink
|
||
|
||
base.localAvatar.find('**/hands').setColor(0,0000,1) Colored Gloves blue
|
||
|
||
base.localAvatar.find('**/hands').setColor(0,1000,0) Colored Gloves green
|
||
|
||
base.localAvatar.find('**/hands').setColor(0,1000,1) Colored Gloves cyan
|
||
|
||
base.localAvatar.find('**/hands').setColor(1,1000,0) Colored Gloves yellow
|
||
|
||
base.localAvatar.find('**/hands').setColor(1,1000,1) Colored Gloves white
|
||
|
||
|
||
Toontown Start Code: Do show pop on loading.
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def wakeUp():
|
||
base.localAvatar.wakeUp()
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(wakeUp))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(onTime))
|
||
seq.start()
|
||
onTime()
|
||
|
||
base.localAvatar.setNametagStyle(10)
|
||
|
||
base.localAvatar.setTeleportAccess ([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000,9000, 10000, 11000, 12000, 13000])
|
||
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
|
||
base.localAvatar.setPinkSlips((9999))
|
||
|
||
base.localAvatar.setColor(0.97,0.3,0.3)
|
||
|
||
base.localAvatar.setMaxHp(137)
|
||
|
||
base.localAvatar.b_setSC(60401)
|
||
|
||
base.localAvatar.setHp(137)
|
||
|
||
base.localAvatar.setBankMoney(10000)
|
||
|
||
base.localAvatar.setMaxBankMoney(10000)
|
||
|
||
base.localAvatar.setTrackAccess([1,1,1,1,1,1,1])
|
||
|
||
base.localAvatar.setCogParts([56444, 56447, 56447, 56411])
|
||
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
|
||
base.localAvatar.setExperience('9999999999999999')
|
||
|
||
base.localAvatar.setFishingRod(4)
|
||
|
||
base.localAvatar.setMaxMoney(250)
|
||
|
||
base.localAvatar.setTickets(99999)
|
||
|
||
base.localAvatar.setSpeedChatStyleIndex(15)
|
||
|
||
gloves = loader.loadTexture("phase_4/maps/sleeveTieDye.jpg")
|
||
|
||
base.localAvatar.findAllMatches('**/hands').setTexture(gloves, 1)
|
||
|
||
base.localAvatar.setSystemMessage(1,'Green Team Starter Pack Activated!')
|
||
|
||
localAvatar.cogMerits=[10000, 10000, 10000, 10000]
|
||
|
||
music1 = base.loader.loadSfx("Custom/Sfx/Losing You.mp3")
|
||
music1.setVolume(.2)
|
||
music1.setLoop(True)
|
||
music1.play()
|
||
|
||
base.localAvatar.find('**/TT_sky.egg').setTexture(gloves, 1)
|
||
base.localAvatar.find('**/TT_sky.egg').setColor(1)
|
||
|
||
base.localAvatar.setCogLevels([49,49,49,49])
|
||
|
||
base.localAvatar.setCustomMessages([550, 580, 6000, 6100, 12000, 11010, 590, 820, 40, 100, 170, 230, 890, 290, 320, 370, 380, 400, 420, 460, 470, 440, 480, 510, 500, 560, 570, 650, 660, 670, 680, 710, 770, 830])
|
||
|
||
base.localAvatar.setQuestCarryLimit(4)
|
||
|
||
base.localAvatar.setMaxFishTank(100)
|
||
|
||
base.localAvatar.setMaxFlowerBasket(100)
|
||
|
||
base.localAvatar.setFishingTrophies([0,1,2,3,4,5,6])
|
||
|
||
base.localAvatar.setCogTypes([7,7,7,7])
|
||
|
||
zone = base.cr.sendSetZoneMsg
|
||
|
||
base.localAvatar.setEmoteAccess([1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1])
|
||
|
||
base.localAvatar.setTrackBonusLevel([7,7,7,7,7,7,7])
|
||
|
||
base.localAvatar.setPetTrickPhrases([0,1,2,3,4,5,6])
|
||
|
||
neck = base.localAvatar.findAllMatches('**/neck')
|
||
|
||
base.localAvatar.book.setColor(255,0.01,0.01)
|
||
|
||
base.localAvatar.book.setHpr(0,0,180)
|
||
|
||
base.localAvatar.book.setZ(.2)
|
||
|
||
neck.setColor(0,0,0)
|
||
|
||
base.localAvatar.find('**/GW.cWallSphereNode').show()
|
||
base.localAvatar.find('**/GW.cEventSphereNode').show()
|
||
base.localAvatar.find('**/ccLineNode').show()
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
alight = AmbientLight('alight')
|
||
alight.setColor(VBase4(.93,0,0,1))
|
||
alnp = render.attachNewNode(alight)
|
||
messenger.send('nametagAmbientLightChanged', [alnp])
|
||
|
||
messenger.send('hpChange-286313331', [137, 137])
|
||
|
||
base.localAvatar.findAllMatches('**/head-short').setColor(0.25,0.25,0.3)
|
||
|
||
base.localAvatar.findAllMatches('**/head-front-short').setColor(0.25,0.25,0.3)
|
||
|
||
base.localAvatar.findAllMatches('**/ears-short').setColor(0.25,0.25,0.3)
|
||
|
||
base.localAvatar.findAllMatches('**/neck').setColor(0.25,0.25,0.3)
|
||
|
||
base.localAvatar.findAllMatches('**/arms').setColor(0.25,0.25,0.3)
|
||
|
||
base.localAvatar.findAllMatches('**/legs').setColor(0.25,0.25,0.3)
|
||
|
||
base.localAvatar.findAllMatches('**/feet').setColor(0.25,0.25,0.3)
|
||
|
||
base.localAvatar.findAllMatches('**/hands').setColor(0.25,0.25,0.25)
|
||
|
||
base.localAvatar.findAllMatches('**/muzzle-short-neutral').setColor(0.25,0.25,0.3)
|
||
|
||
feet = loader.loadTexture("phase_3/maps/Humanist.rgb")
|
||
|
||
base.localAvatar.findAllMatches('**/feet').setTexture(feet, 1)
|
||
|
||
legs = loader.loadTexture("phase_3/maps/Humanist.rgb")
|
||
|
||
base.localAvatar.findAllMatches('**/legs').setTexture(legs, 1)
|
||
|
||
arms = loader.loadTexture("phase_3/maps/Humanist.rgb")
|
||
|
||
base.localAvatar.findAllMatches('**/arms').setTexture(arms, 1)
|
||
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColorScale(1)
|
||
|
||
base.localAvatar.findAllMatches('**/torso-top').setColorScale(25)
|
||
|
||
base.localAvatar.findAllMatches('**/sleeves').setColorScale(25)
|
||
|
||
base.localAvatar.setInventory('99999999999999999999999999999999999999999999999999999999999999999999999999')
|
||
|
||
base.localAvatar.setMaxCarry(2394)
|
||
|
||
shirts=loader.loadTexture("Custom/Toon/Bioshock1.jpg")
|
||
|
||
sleve=loader.loadTexture("Custom/Toon/BioshockSleeve1.jpg")
|
||
|
||
shorts=loader.loadTexture("Custom/Toon/Bioshock1.jpg")
|
||
|
||
mouth = base.localAvatar.findAllMatches('**/muzzle-short-neutral')
|
||
|
||
mouthtext = loader.loadTexture("phase_3/maps/Humanist.rgb")
|
||
|
||
mouth.setTexture(mouthtext, 1)
|
||
|
||
base.localAvatar.setKartBodyType(1)
|
||
|
||
def collisionshk1():
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setSystemMessage(1, 'No Collisions Activated')
|
||
base.accept("f1", collisionshk2, [])
|
||
|
||
def collisionshk2():
|
||
base.localAvatar.collisionsOn()
|
||
base.localAvatar.setSystemMessage(1, 'No Collisions De-Activated')
|
||
base.accept("f1", collisionshk1, [])
|
||
|
||
base.accept("f1", collisionshk1, [])
|
||
|
||
def sjasshk1():
|
||
base.localAvatar.physControls.avatarControlReverseSpeed=50
|
||
base.localAvatar.physControls.avatarControlRotateSpeed=140
|
||
base.localAvatar.physControls.avatarControlJumpForce = 45
|
||
base.localAvatar.physControls.setGravity(35)
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 60
|
||
base.localAvatar.setSystemMessage(1, 'Super Jump/Super Speed Activated')
|
||
base.accept("f2", sjasshk2, [])
|
||
|
||
def sjasshk2():
|
||
base.localAvatar.physControls.avatarControlReverseSpeed=10
|
||
base.localAvatar.physControls.avatarControlRotateSpeed=80
|
||
base.localAvatar.physControls.avatarControlJumpForce = 20
|
||
base.localAvatar.physControls.setGravity(40)
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 17
|
||
base.localAvatar.setSystemMessage(1, 'Super Jump/Super Speed De-Activated')
|
||
base.accept("f2", sjasshk1, [])
|
||
|
||
base.accept("f2", sjasshk1, [])
|
||
|
||
def laugh():
|
||
base.localAvatar.b_setEmoteState(24,1)
|
||
base.localAvatar.b_setEmoteState(17,1)
|
||
|
||
base.accept("f3", laugh, [])
|
||
|
||
def schk1():
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/torso-top').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/sleeves').setColorScale(25)
|
||
shirts=loader.loadTexture("phase_4/maps/tt_t_chr_shirt_scientistA.jpg")
|
||
sleve=loader.loadTexture("phase_4/maps/tt_t_chr_shirtSleeve_scientist.jpg")
|
||
shorts=loader.loadTexture("phase_4/maps/tt_t_chr_shorts_scientistA.jpg")
|
||
base.localAvatar.findAllMatches('**/torso-top').setTexture(shirts, 1)
|
||
base.localAvatar.findAllMatches('**/torso-bot').setTexture(shorts, 1)
|
||
base.localAvatar.findAllMatches('**/sleeves').setTexture(sleve, 1)
|
||
base.localAvatar.setSystemMessage(1, 'Scientist Outfit 1 Activated')
|
||
base.accept("f4", schk2, [])
|
||
|
||
|
||
def schk2():
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/torso-top').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/sleeves').setColorScale(25)
|
||
shirts1=loader.loadTexture("phase_4/maps/tt_t_chr_shirt_scientistB.jpg")
|
||
sleve1=loader.loadTexture("phase_4/maps/tt_t_chr_shirtSleeve_scientist.jpg")
|
||
shorts1=loader.loadTexture("phase_4/maps/tt_t_chr_shorts_scientistB.jpg")
|
||
base.localAvatar.findAllMatches('**/torso-top').setTexture(shirts1, 1)
|
||
base.localAvatar.findAllMatches('**/torso-bot').setTexture(shorts1, 1)
|
||
base.localAvatar.findAllMatches('**/sleeves').setTexture(sleve1, 1)
|
||
base.localAvatar.setSystemMessage(1, 'Scientist Outfit 2 Activated')
|
||
base.accept("f4", schk3, [])
|
||
|
||
def schk3():
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/torso-top').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/sleeves').setColorScale(25)
|
||
shirts2=loader.loadTexture("phase_4/maps/tt_t_chr_shirt_scientistC.jpg")
|
||
sleve2=loader.loadTexture("phase_4/maps/tt_t_chr_shirtSleeve_scientist.jpg")
|
||
shorts2=loader.loadTexture("phase_4/maps/tt_t_chr_shorts_scientistC.jpg")
|
||
base.localAvatar.findAllMatches('**/torso-top').setTexture(shirts2, 1)
|
||
base.localAvatar.findAllMatches('**/torso-bot').setTexture(shorts2, 1)
|
||
base.localAvatar.findAllMatches('**/sleeves').setTexture(sleve2, 1)
|
||
base.localAvatar.setSystemMessage(1, 'Scientist Outfit 3 Activated')
|
||
base.accept("f4", schk1, [])
|
||
|
||
base.accept("f4", schk1, [])
|
||
|
||
def animsachk():
|
||
base.localAvatar.setSystemMessage(1, 'Animation Hotkeys Activated')
|
||
base.accept("f1", base.localAvatar.b_setAnimState, ['SitStart'])
|
||
base.accept("f2", base.localAvatar.b_setAnimState, ['swim'])
|
||
base.accept("f3", base.localAvatar.b_setAnimState, ['TeleportIn'])
|
||
base.accept("f4", base.localAvatar.b_setAnimState, ['FallDown'])
|
||
base.accept("f5", base.localAvatar.b_setAnimState, ['GolfRotateRight'])
|
||
base.accept("f6", base.localAvatar.b_setAnimState, ['ScientistPlay'])
|
||
base.accept("f7", base.localAvatar.b_setAnimState, ['ScientistJealous'])
|
||
base.accept("f8", base.localAvatar.b_setAnimState, ['ScientistLessWork'])
|
||
base.accept("f9", base.localAvatar.b_setAnimState, ['Flattened'])
|
||
base.accept("f10", base.localAvatar.b_setAnimState, ['Died'])
|
||
base.accept("f11", base.localAvatar.b_setAnimState, ['ScientistEmcee'])
|
||
base.accept("f12", animsachk1, [])
|
||
|
||
def animsachk1():
|
||
base.localAvatar.setSystemMessage(1, 'Animation Hotkeys De-Activated')
|
||
def collisionshk1():
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setSystemMessage(1, 'No Collisions Activated')
|
||
base.accept("f1", collisionshk2, [])
|
||
|
||
def collisionshk2():
|
||
base.localAvatar.collisionsOn()
|
||
base.localAvatar.setSystemMessage(1, 'No Collisions De-Activated')
|
||
base.accept("f1", collisionshk1, [])
|
||
|
||
base.accept("f1", collisionshk1, [])
|
||
|
||
def sjasshk1():
|
||
base.localAvatar.physControls.avatarControlReverseSpeed=50
|
||
base.localAvatar.physControls.avatarControlRotateSpeed=140
|
||
base.localAvatar.physControls.avatarControlJumpForce = 45
|
||
base.localAvatar.physControls.setGravity(35)
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 60
|
||
base.localAvatar.setSystemMessage(1, 'Super Jump/Super Speed Activated')
|
||
base.accept("f2", sjasshk2, [])
|
||
|
||
def sjasshk2():
|
||
base.localAvatar.physControls.avatarControlReverseSpeed=10
|
||
base.localAvatar.physControls.avatarControlRotateSpeed=80
|
||
base.localAvatar.physControls.avatarControlJumpForce = 20
|
||
base.localAvatar.physControls.setGravity(40)
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 17
|
||
base.localAvatar.setSystemMessage(1, 'Super Jump/Super Speed De-Activated')
|
||
base.accept("f2", sjasshk1, [])
|
||
|
||
base.accept("f2", sjasshk1, [])
|
||
|
||
def laugh():
|
||
base.localAvatar.b_setEmoteState(24,1)
|
||
base.localAvatar.b_setEmoteState(17,1)
|
||
|
||
base.accept("f3", laugh, [])
|
||
|
||
def schk1():
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/torso-top').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/sleeves').setColorScale(25)
|
||
shirts=loader.loadTexture("phase_4/maps/tt_t_chr_shirt_scientistA.jpg")
|
||
sleve=loader.loadTexture("phase_4/maps/tt_t_chr_shirtSleeve_scientist.jpg")
|
||
shorts=loader.loadTexture("phase_4/maps/tt_t_chr_shorts_scientistA.jpg")
|
||
base.localAvatar.findAllMatches('**/torso-top').setTexture(shirts, 1)
|
||
base.localAvatar.findAllMatches('**/torso-bot').setTexture(shorts, 1)
|
||
base.localAvatar.findAllMatches('**/sleeves').setTexture(sleve, 1)
|
||
base.localAvatar.setSystemMessage(1, 'Scientist Outfit 1 Activated')
|
||
base.accept("f4", schk2, [])
|
||
|
||
|
||
def schk2():
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/torso-top').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/sleeves').setColorScale(25)
|
||
shirts1=loader.loadTexture("phase_4/maps/tt_t_chr_shirt_scientistB.jpg")
|
||
sleve1=loader.loadTexture("phase_4/maps/tt_t_chr_shirtSleeve_scientist.jpg")
|
||
shorts1=loader.loadTexture("phase_4/maps/tt_t_chr_shorts_scientistB.jpg")
|
||
base.localAvatar.findAllMatches('**/torso-top').setTexture(shirts1, 1)
|
||
base.localAvatar.findAllMatches('**/torso-bot').setTexture(shorts1, 1)
|
||
base.localAvatar.findAllMatches('**/sleeves').setTexture(sleve1, 1)
|
||
base.localAvatar.setSystemMessage(1, 'Scientist Outfit 2 Activated')
|
||
base.accept("f4", schk3, [])
|
||
|
||
def schk3():
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/torso-top').setColorScale(25)
|
||
base.localAvatar.findAllMatches('**/sleeves').setColorScale(25)
|
||
shirts2=loader.loadTexture("phase_4/maps/tt_t_chr_shirt_scientistC.jpg")
|
||
sleve2=loader.loadTexture("phase_4/maps/tt_t_chr_shirtSleeve_scientist.jpg")
|
||
shorts2=loader.loadTexture("phase_4/maps/tt_t_chr_shorts_scientistC.jpg")
|
||
base.localAvatar.findAllMatches('**/torso-top').setTexture(shirts2, 1)
|
||
base.localAvatar.findAllMatches('**/torso-bot').setTexture(shorts2, 1)
|
||
base.localAvatar.findAllMatches('**/sleeves').setTexture(sleve2, 1)
|
||
base.localAvatar.setSystemMessage(1, 'Scientist Outfit 3 Activated')
|
||
base.accept("f4", schk1, [])
|
||
base.accept("f4", schk1, [])
|
||
base.accept("f5", base.localAvatar.b_setSCSinging, [60502])
|
||
base.accept("f6", base.localAvatar.b_setSCSinging, [60502])
|
||
base.accept("f7", base.localAvatar.b_setSCSinging, [60502])
|
||
base.accept("f8", base.localAvatar.b_setSCSinging, [60502])
|
||
base.accept("f9", base.localAvatar.b_setSCSinging, [60502])
|
||
base.accept("f10", base.localAvatar.b_setSCSinging, [60502])
|
||
base.accept("f11", base.localAvatar.b_setSCSinging, [60502])
|
||
base.accept("f12", base.localAvatar.b_setSCSinging, [60502])
|
||
base.accept("f12", animsachk, [])
|
||
|
||
base.accept("f12", animsachk, [])
|
||
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
from direct.task import Task
|
||
|
||
text = OnscreenText(text='', style=1, fg=(1,1,1,1), align=TextNode.ALeft, pos=(-1.15, .8), scale=.07)
|
||
|
||
def mouseMoved(x, y):
|
||
updateText('Mouse X,Y (%0.3f, %0.3f)' % (x,y))
|
||
|
||
def mouseLost():
|
||
updateText('Mouse Lost')
|
||
|
||
def updateText(msg):
|
||
global text
|
||
text.setText(msg)
|
||
|
||
#Task to move the camera
|
||
def MouseMotion(task):
|
||
if base.mouseWatcherNode.hasMouse():
|
||
x = base.mouseWatcherNode.getMouseX()
|
||
y = base.mouseWatcherNode.getMouseY()
|
||
mouseMoved(x, y)
|
||
else:
|
||
mouseLost()
|
||
return Task.cont
|
||
|
||
taskMgr.add(MouseMotion, 'MouseMotion')
|
||
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
|
||
bk_text = "Button Hack Ready"
|
||
textObject = OnscreenText(text = bk_text, pos = (0.95,-0.95),
|
||
scale = 0.07,fg=(1,0.5,0.5,1),align=TextNode.ACenter,mayChange=1)
|
||
|
||
def normal1():
|
||
bk_text = "Button Hack Ready"
|
||
textObject.setText(bk_text)
|
||
|
||
def setText1():
|
||
bk_text = "Swimming"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('swim')
|
||
var = 0
|
||
|
||
def setText2():
|
||
bk_text = "Sitting"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('SitStart')
|
||
var = 1
|
||
|
||
|
||
def setText3():
|
||
bk_text = "Catching"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('Catching')
|
||
var = 1
|
||
|
||
def setText4():
|
||
bk_text = "Golf Turning Right"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('GolfRotateRight')
|
||
var = 1
|
||
|
||
def setText5():
|
||
bk_text = "Dying"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('Died')
|
||
var = 0
|
||
|
||
def setText6():
|
||
bk_text = "Sad"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('Sad')
|
||
var = 1
|
||
|
||
def setText7():
|
||
bk_text = "Pushing"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('Push')
|
||
var = 1
|
||
|
||
def setText8():
|
||
bk_text = "Scientist Play"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.b_setAnimState('ScientistPlay')
|
||
var = 1
|
||
|
||
base.accept("escape", normal1, [])
|
||
b1 = DirectButton(text = ("SWIM", "swim", "swim", "SWIM"), scale=.06, pos = (-.98,-0,-.95), command=setText1)
|
||
b2 = DirectButton(text = ("SIT", "sit", "sit", "SIT"), scale=.06, pos = (-.8,-0,-.95), command=setText2)
|
||
b3 = DirectButton(text = ("CATCH", "catch", "catch", "CATCH"), scale=.06, pos = (-.6,-0,-.95), command=setText3)
|
||
b4 = DirectButton(text = ("GOLF ROTATE", "golf rotate", "golf rotate", "GOLF ROTATE"), scale=.06, pos = (-.28,-0,-.95), command=setText4)
|
||
b5 = DirectButton(text = ("DIE", "die", "die", "DIE"), scale=.06, pos = (-0,-0,-.95), command=setText5)
|
||
b6 = DirectButton(text = ("SAD", "sad", "sad", "SAD"), scale=.06, pos = (.16,-0,-.95), command=setText6)
|
||
b7 = DirectButton(text = ("PUSH", "push", "push", "PUSH"), scale=.06, pos = (.35,-0,-.95), command=setText7)
|
||
b8 = DirectButton(text = ("R-P-C", "r-p-c", "r-p-c", "R-P-C"), scale=.06, pos = (.565,-0,-.95), command=setText8)
|
||
|
||
while var is 1:
|
||
base.accept("control", normal1, [])
|
||
|
||
while var is 0:
|
||
base.accept("control", base.localAvatar.b_setSCSinging, [4])
|
||
|
||
|
||
|
||
|
||
|
||
Green Bot Professor Start:
|
||
|
||
base.localAvatar.setNametagStyle(10)
|
||
|
||
base.localAvatar.setTeleportAccess ([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
|
||
base.localAvatar.setPinkSlips((9999))
|
||
|
||
base.localAvatar.setMaxHp(137)
|
||
|
||
base.localAvatar.b_setSCSinging(60401)
|
||
|
||
base.localAvatar.setMaxFishTank(100)
|
||
|
||
base.localAvatar.setHp(137)
|
||
|
||
base.localAvatar.setBankMoney(10000)
|
||
|
||
base.localAvatar.setMaxBankMoney(10000)
|
||
|
||
base.localAvatar.setTrackAccess([1,1,1,1,1,1,1])
|
||
|
||
base.localAvatar.setCogParts([56444, 56447, 56447, 56411])
|
||
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
|
||
base.localAvatar.setExperience('9999999999999999')
|
||
|
||
base.localAvatar.setFishingRod(4)
|
||
|
||
base.localAvatar.setMaxMoney(250)
|
||
|
||
base.localAvatar.setTickets(99999)
|
||
|
||
base.localAvatar.setSpeedChatStyleIndex(15)
|
||
|
||
base.localAvatar.setSystemMessage(1,'Green Cat : Bot Start')
|
||
|
||
base.localAvatar.setCheesyEffect(0, 0, 0)
|
||
|
||
localAvatar.cogMerits=[10000, 10000, 10000, 10000]
|
||
|
||
base.localAvatar.setCogLevels([49,49,49,49])
|
||
|
||
base.localAvatar.setQuestCarryLimit(4)
|
||
|
||
base.localAvatar.setFishingTrophies([0,1,2,3,4,5,6])
|
||
|
||
base.localAvatar.setCogTypes([7,7,7,7])
|
||
|
||
base.localAvatar.setEmoteAccess([1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1])
|
||
|
||
base.localAvatar.setTrackBonusLevel([7,7,7,7,7,7,7])
|
||
|
||
base.localAvatar.setPetTrickPhrases([0,1,2,3,4,5,6])
|
||
|
||
base.localAvatar.findAllMatches('**/torso-bot').setColorScale(25)
|
||
|
||
base.localAvatar.findAllMatches('**/torso-top').setColorScale(25)
|
||
|
||
base.localAvatar.findAllMatches('**/sleeves').setColorScale(25)
|
||
|
||
shirts=loader.loadTexture("phase_4/maps/tt_t_chr_shirt_scientistC.jpg")
|
||
|
||
sleve=loader.loadTexture("phase_4/maps/tt_t_chr_shirtSleeve_scientist.jpg")
|
||
|
||
shorts=loader.loadTexture("phase_4/maps/tt_t_chr_shorts_scientistA.jpg")
|
||
|
||
base.localAvatar.findAllMatches('**/torso-top').setTexture(shirts, 1)
|
||
|
||
base.localAvatar.findAllMatches('**/torso-bot').setTexture(shorts, 1)
|
||
|
||
base.localAvatar.findAllMatches('**/sleeves').setTexture(sleve, 1)
|
||
|
||
base.accept("f1", base.localAvatar.setEmoteState, [24,0])
|
||
|
||
base.accept("f2", base.localAvatar.b_setAnimState, ['ScientistLessWork'])
|
||
|
||
base.accept("f3", base.localAvatar.b_setAnimState, ['ScientistJealous'])
|
||
|
||
base.accept("f4", base.localAvatar.b_setAnimState, ['ScientistPlay'])
|
||
|
||
base.accept("f5", base.localAvatar.b_setAnimState, ['GolfRotateRight'])
|
||
|
||
base.accept("f6", base.localAvatar.b_setAnimState, ['Flattened'])
|
||
|
||
base.accept("f7", base.localAvatar.b_setAnimState, ['CatchEating'])
|
||
|
||
base.accept("f8", base.localAvatar.b_setSCSinging, [60502])
|
||
|
||
base.accept("f9", base.localAvatar.b_setSCSinging, [60502])
|
||
|
||
base.accept("1", base.localAvatar.b_setSCSinging, [20136])
|
||
|
||
base.accept("2", base.localAvatar.b_setSCSinging, [4])
|
||
|
||
base.accept("3", base.localAvatar.b_setSCSinging, [50205])
|
||
|
||
base.accept("4", base.localAvatar.b_setSCSinging, [60509])
|
||
|
||
base.accept("5", base.localAvatar.b_setSCSinging, [60501])
|
||
|
||
base.accept("6", base.localAvatar.b_setSCSinging, [60502])
|
||
|
||
base.accept("7", base.localAvatar.b_setSCSinging, [60103])
|
||
|
||
base.accept("8", base.localAvatar.b_setSCSinging, [2222])
|
||
|
||
base.accept("9", base.localAvatar.b_setSCSinging, [20150])
|
||
|
||
base.accept("0", base.localAvatar.b_setSCSinging, [50704])
|
||
|
||
base.accept("alt", base.localAvatar.setZ, [8])
|
||
|
||
base.accept("f10", base.localAvatar.b_setAnimState, ['Died'])
|
||
|
||
|
||
Emotes:
|
||
|
||
|
||
base.accept("f1", base.localAvatar.b_setEmoteState, [24,0])
|
||
|
||
base.accept("f2", base.localAvatar.b_setAnimState, ['ReadBook'])
|
||
|
||
base.accept("f3", base.localAvatar.b_setEmoteState, [23,0])
|
||
|
||
base.accept("f4", base.localAvatar.b_setEmoteState, [22,0])
|
||
|
||
base.accept("f5", base.localAvatar.b_setEmoteState, [21,0])
|
||
|
||
base.accept("f6", base.localAvatar.b_setEmoteState, [20,0])
|
||
|
||
Super flip ttc
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def start():
|
||
base.localAvatar.setZ(7)
|
||
def anim1():
|
||
base.localAvatar.b_setAnimState(('jumpLand'))
|
||
base.localAvatar.collisionsOff()
|
||
def anim2():
|
||
base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
def flip1():
|
||
base.localAvatar.setP(90)
|
||
def flip2():
|
||
base.localAvatar.setP(180)
|
||
def flip3():
|
||
base.localAvatar.setP(270)
|
||
def flip4():
|
||
base.localAvatar.setP(360)
|
||
def end():
|
||
base.localAvatar.collisionsOn()
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(anim1))
|
||
seq.append(Wait(.45))
|
||
seq.append(Func(anim2))
|
||
seq.append(Func(start))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(flip4))
|
||
seq.append(Func(end))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
|
||
Super Uber Starter
|
||
|
||
base.localAvatar.setNametagStyle(10)
|
||
|
||
base.localAvatar.setTeleportAccess ([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
|
||
base.localAvatar.setTrackAccess([0,0,0,0,1,1,0])
|
||
|
||
base.localAvatar.setSystemMessage(1,'Super Uber Pack Activated!')
|
||
|
||
base.localAvatar.setCheesyEffect(0, 0, 0)
|
||
|
||
localAvatar.cogMerits=[10000, 10000, 10000, 10000]
|
||
|
||
base.localAvatar.setFishingTrophies([0,1,2,3,4,5,6])
|
||
|
||
base.localAvatar.setEmoteAccess([1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1])
|
||
|
||
base.localAvatar.setTrackBonusLevel([7,7,7,7,7,7,7])
|
||
|
||
base.localAvatar.setPetTrickPhrases([0,1,2,3,4,5,6])
|
||
|
||
def collisionshk1():
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setSystemMessage(1, 'No Collisions Activated')
|
||
base.accept("f1", collisionshk2, [])
|
||
|
||
def collisionshk2():
|
||
base.localAvatar.collisionsOn()
|
||
base.localAvatar.setSystemMessage(1, 'No Collisions De-Activated')
|
||
base.accept("f1", collisionshk1, [])
|
||
|
||
base.accept("f1", collisionshk1, [])
|
||
|
||
def sjasshk1():
|
||
base.localAvatar.physControls.avatarControlReverseSpeed=50
|
||
base.localAvatar.physControls.avatarControlRotateSpeed=140
|
||
base.localAvatar.physControls.avatarControlJumpForce = 45
|
||
base.localAvatar.physControls.setGravity(35)
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 60
|
||
base.localAvatar.setSystemMessage(1, 'Super Jump/Super Speed Activated')
|
||
base.accept("f2", sjasshk2, [])
|
||
|
||
def sjasshk2():
|
||
base.localAvatar.physControls.avatarControlReverseSpeed=10
|
||
base.localAvatar.physControls.avatarControlRotateSpeed=80
|
||
base.localAvatar.physControls.avatarControlJumpForce = 20
|
||
base.localAvatar.physControls.setGravity(40)
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 17
|
||
base.localAvatar.setSystemMessage(1, 'Super Jump/Super Speed De-Activated')
|
||
base.accept("f2", sjasshk1, [])
|
||
|
||
base.accept("f2", sjasshk1, [])
|
||
|
||
def laugh():
|
||
base.localAvatar.b_setEmoteState(24,1)
|
||
base.localAvatar.b_setEmoteState(17,1)
|
||
|
||
base.accept("f3", laugh, [])
|
||
|
||
|
||
|
||
|
||
Uber Starter
|
||
|
||
base.localAvatar.setNametagStyle(10)
|
||
|
||
base.localAvatar.setTeleportAccess ([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000])
|
||
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
|
||
base.localAvatar.setSystemMessage(1,'Uber Starter Pack Activated!')
|
||
|
||
localAvatar.cogMerits=[10000, 10000, 10000, 10000]
|
||
|
||
base.localAvatar.setFishingTrophies([0,1,2,3,4,5,6])
|
||
|
||
base.localAvatar.setEmoteAccess([1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1])
|
||
|
||
base.localAvatar.setPetTrickPhrases([0,1,2,3,4,5,6])
|
||
|
||
|
||
1: Go to SBHQ
|
||
2: Go by the VP doors
|
||
3: When a Cog walks through the door, type this code:
|
||
chqd = base.cr.doFindAll("CogHQDoor")
|
||
base.cr.doFindAll("CogHQDoor"):
|
||
chqd.rejectEnter = chqd.avatarEnter(base.localAvatar.doIf)
|
||
chqd.setOtherZoneIdAndDoId(11100, 284475854)
|
||
4: On TTinjector, Click submit.
|
||
5: Then type in this code:
|
||
base.cr.sendSetZoneMsg(2513)
|
||
6: Click Submit on TTinjector
|
||
|
||
You will have a Cog Suit
|
||
|
||
|
||
Controls
|
||
|
||
base.localAvatar.physControls.avatarControlJumpForce = .1
|
||
base.localAvatar.physControls.setGravity(.00001)
|
||
|
||
base.localAvatar.physControls.setGravity(15)
|
||
|
||
base.localAvatar.physControls.avatarControlReverseSpeed = 100
|
||
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = 100
|
||
|
||
base.localAvatar.physControls.avatarControlForwardSpeed = -100
|
||
|
||
base.localAvatar.physControls.avatarControlJumpForce = 100
|
||
|
||
base.localAvatar.physControls.avatarControlRotateSpeed=300
|
||
|
||
base.localAvatar.setScale(3)
|
||
|
||
|
||
Walk And Swim:
|
||
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def anim1():
|
||
base.localAvatar.b_setAnimState('swim')
|
||
def anim2():
|
||
base.localAvatar.enterHappy()
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(anim1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(anim2))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
Annoy:
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def tpfast():
|
||
base.localAvatar.setGhostMode(2)
|
||
def tp():
|
||
messenger.send('gotoAvatar', [245681021, 'Meownaise', 1])
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(tpfast))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(tp))
|
||
seq.append(Wait(.2))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
Smile:
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
base.localAvatar.b_setSCSinging(60526)
|
||
def part2():
|
||
base.localAvatar.setCheesyEffect(13, 0, 0)
|
||
def part3():
|
||
base.localAvatar.setCheesyEffect(0, 0, 0)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(part3))
|
||
seq.start()
|
||
onTime()
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setAnimState('ReadBook')
|
||
base.localAvatar.b_setSCSinging(60526)
|
||
def part2():
|
||
base.localAvatar.b_setEmoteState(24,1)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Func(part2))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
|
||
Shake TTC:
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def anim():
|
||
base.localAvatar.b_setAnimState('Sad')
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setX(1)
|
||
def rise1():
|
||
base.localAvatar.setZ(4.1)
|
||
def rise2():
|
||
base.localAvatar.setZ(4.2)
|
||
def rise3():
|
||
base.localAvatar.setZ(4.3)
|
||
def rise4():
|
||
base.localAvatar.setZ(4.4)
|
||
def rise5():
|
||
base.localAvatar.setZ(4.5)
|
||
def rise6():
|
||
base.localAvatar.setZ(4.6)
|
||
def rise7():
|
||
base.localAvatar.setZ(4.7)
|
||
def rise8():
|
||
base.localAvatar.setZ(4.8)
|
||
def rise9():
|
||
base.localAvatar.setZ(4.9)
|
||
def rise10():
|
||
base.localAvatar.setZ(5)
|
||
def rise11():
|
||
base.localAvatar.setZ(5.1)
|
||
def rise12():
|
||
base.localAvatar.setZ(5.2)
|
||
def rise13():
|
||
base.localAvatar.setZ(5.3)
|
||
def rise14():
|
||
base.localAvatar.setZ(5.4)
|
||
def rise15():
|
||
base.localAvatar.setZ(5.5)
|
||
def rise16():
|
||
base.localAvatar.setZ(5.6)
|
||
def rise17():
|
||
base.localAvatar.setZ(5.7)
|
||
def rise18():
|
||
base.localAvatar.setZ(5.8)
|
||
def rise19():
|
||
base.localAvatar.setZ(5.9)
|
||
def rise20():
|
||
base.localAvatar.setZ(6)
|
||
def anim2():
|
||
base.localAvatar.b_setAnimState(('jumpLand'))
|
||
base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
def shake1():
|
||
base.localAvatar.setX(1)
|
||
def shake2():
|
||
base.localAvatar.setX(0)
|
||
def shake3():
|
||
base.localAvatar.setX(1)
|
||
def shake4():
|
||
base.localAvatar.setX(0)
|
||
def shake4():
|
||
base.localAvatar.setX(1)
|
||
def shake5():
|
||
base.localAvatar.setX(0)
|
||
def shake6():
|
||
base.localAvatar.setX(1)
|
||
def shake7():
|
||
base.localAvatar.setX(0)
|
||
def shake8():
|
||
base.localAvatar.setX(1)
|
||
def shake9():
|
||
base.localAvatar.setX(0)
|
||
def shake10():
|
||
base.localAvatar.setX(1)
|
||
def shake11():
|
||
base.localAvatar.setX(0)
|
||
def shake12():
|
||
base.localAvatar.setX(1)
|
||
def shake13():
|
||
base.localAvatar.setX(0)
|
||
def shake14():
|
||
base.localAvatar.setX(1)
|
||
def shake15():
|
||
base.localAvatar.setX(0)
|
||
def shake16():
|
||
base.localAvatar.setX(1)
|
||
def shake17():
|
||
base.localAvatar.setX(0)
|
||
def shake18():
|
||
base.localAvatar.setX(1)
|
||
def shake19():
|
||
base.localAvatar.setX(0)
|
||
def shake20():
|
||
base.localAvatar.setX(1)
|
||
def endanim():
|
||
base.localAvatar.setZ(4)
|
||
base.localAvatar.b_setAnimState('FallDown')
|
||
def neutral():
|
||
base.localAvatar.b_setAnimState('k.neutral')
|
||
base.localAvatar.enterHappy()
|
||
base.localAvatar.collisionsOn()
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(anim))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise5))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise6))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise7))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise8))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise9))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise10))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise11))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise12))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise13))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise14))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise15))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise16))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise17))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise18))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise19))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise20))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(anim2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake5))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake6))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake7))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake8))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake9))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake10))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake11))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake12))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake13))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake14))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake15))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake16))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake17))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake18))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake19))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake20))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(endanim))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(neutral))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def anim():
|
||
base.localAvatar.b_setAnimState('Sad')
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setZ(0)
|
||
base.localAvatar.setX(1)
|
||
def rise1():
|
||
base.localAvatar.setZ(0.1)
|
||
def rise2():
|
||
base.localAvatar.setZ(0.2)
|
||
def rise3():
|
||
base.localAvatar.setZ(0.3)
|
||
def rise4():
|
||
base.localAvatar.setZ(0.4)
|
||
def rise5():
|
||
base.localAvatar.setZ(0.5)
|
||
def rise6():
|
||
base.localAvatar.setZ(0.6)
|
||
def rise7():
|
||
base.localAvatar.setZ(0.7)
|
||
def rise8():
|
||
base.localAvatar.setZ(0.8)
|
||
def rise9():
|
||
base.localAvatar.setZ(0.9)
|
||
def rise10():
|
||
base.localAvatar.setZ(1)
|
||
def rise11():
|
||
base.localAvatar.setZ(1.1)
|
||
def rise12():
|
||
base.localAvatar.setZ(1.2)
|
||
def rise13():
|
||
base.localAvatar.setZ(1.3)
|
||
def rise14():
|
||
base.localAvatar.setZ(1.4)
|
||
def rise15():
|
||
base.localAvatar.setZ(1.5)
|
||
def rise16():
|
||
base.localAvatar.setZ(1.6)
|
||
def rise17():
|
||
base.localAvatar.setZ(1.7)
|
||
def rise18():
|
||
base.localAvatar.setZ(1.8)
|
||
def rise19():
|
||
base.localAvatar.setZ(1.9)
|
||
def rise20():
|
||
base.localAvatar.setZ(2)
|
||
def anim2():
|
||
base.localAvatar.b_setAnimState(('jumpLand'))
|
||
base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
def shake1():
|
||
base.localAvatar.setX(1)
|
||
def shake2():
|
||
base.localAvatar.setX(0)
|
||
def shake3():
|
||
base.localAvatar.setX(1)
|
||
def shake4():
|
||
base.localAvatar.setX(0)
|
||
def shake4():
|
||
base.localAvatar.setX(1)
|
||
def shake5():
|
||
base.localAvatar.setX(0)
|
||
def shake6():
|
||
base.localAvatar.setX(1)
|
||
def shake7():
|
||
base.localAvatar.setX(0)
|
||
def shake8():
|
||
base.localAvatar.setX(1)
|
||
def shake9():
|
||
base.localAvatar.setX(0)
|
||
def shake10():
|
||
base.localAvatar.setX(1)
|
||
def shake11():
|
||
base.localAvatar.setX(0)
|
||
def shake12():
|
||
base.localAvatar.setX(1)
|
||
def shake13():
|
||
base.localAvatar.setX(0)
|
||
def shake14():
|
||
base.localAvatar.setX(1)
|
||
def shake15():
|
||
base.localAvatar.setX(0)
|
||
def shake16():
|
||
base.localAvatar.setX(1)
|
||
def shake17():
|
||
base.localAvatar.setX(0)
|
||
def shake18():
|
||
base.localAvatar.setX(1)
|
||
def shake19():
|
||
base.localAvatar.setX(0)
|
||
def shake20():
|
||
base.localAvatar.setX(1)
|
||
def endanim():
|
||
base.localAvatar.setZ(0)
|
||
base.localAvatar.b_setAnimState('FallDown')
|
||
def neutral():
|
||
base.localAvatar.collisionsOn()
|
||
base.localAvatar.b_setAnimState('neutral')
|
||
base.localAvatar.enterHappy()
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(anim))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise5))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise6))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise7))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise8))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise9))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise10))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise11))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise12))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise13))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise14))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise15))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise16))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise17))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise18))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise19))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(rise20))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(anim2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake1))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake2))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake3))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake4))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake5))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake6))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake7))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake8))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake9))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake10))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake11))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake12))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake13))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake14))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake15))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake16))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake17))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake18))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake19))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(shake20))
|
||
seq.append(Wait(.1))
|
||
seq.append(Func(endanim))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(neutral))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
|
||
Team Bot:
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setEmoteState(0,0)
|
||
base.localAvatar.b_setSC(50702)
|
||
def part2():
|
||
base.talkAssistant.sendOpenTalk('YOU LOSE')
|
||
base.localAvatar.b_setEmoteState(23,1)
|
||
def part3():
|
||
base.talkAssistant.sendOpenTalk('YES YOU ALL DO')
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part4():
|
||
base.talkAssistant.sendOpenTalk('MY TEAM WILL OWN ALL YOU MUCK ERRS')
|
||
base.localAvatar.b_setEmoteState(24,1)
|
||
def part5():
|
||
base.talkAssistant.sendOpenTalk('WE ARE TEAM HOCK')
|
||
def part6():
|
||
base.talkAssistant.sendOpenTalk('AND YOU CANT STOP US')
|
||
base.localAvatar.b_setEmoteState(22,1)
|
||
def part7():
|
||
base.localAvatar.b_setSC(20004)
|
||
base.localAvatar.b_setEmoteState(0,0)
|
||
def addzone():
|
||
word = base.localAvatar.getZoneId()
|
||
word += 10
|
||
base.localAvatar.b_setLocation(base.localAvatar.defaultShard, word)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(part3))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(part4))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(part5))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(part6))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(part7))
|
||
seq.append(Wait(3))
|
||
seq.append(Func(addzone))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
Invisible:
|
||
|
||
base.localAvatar.hide()
|
||
|
||
|
||
Scare
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setAnimState(('jumpLand'))
|
||
def part2():
|
||
base.localAvatar.b_setAnimState(('ScientistEmcee'))
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(.2555777775))
|
||
seq.append(Func(part2))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
Unlimited Pie:
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def pie():
|
||
base.localAvatar.setNumPies(1)
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(pie))
|
||
seq.append(Func(onTime))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
Funny Farms TP
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setAnimState(('OpenBook'))
|
||
def intro2():
|
||
base.localAvatar.b_setAnimState(('ReadBook'))
|
||
def part2():
|
||
base.localAvatar.b_setAnimState(('CloseBook'))
|
||
def part3():
|
||
base.localAvatar.b_setAnimState('TeleportOut')
|
||
def part4():
|
||
base.cr.sendSetZoneMsg(7000)
|
||
def spot():
|
||
base.localAvatar.setPos(689.118,-1155.604,2.525)
|
||
base.localAvatar.setHpr(270,0,0)
|
||
def part5():
|
||
base.localAvatar.b_setAnimState('TeleportIn')
|
||
def part6():
|
||
base.localAvatar.b_setAnimState('Happy')
|
||
def part7():
|
||
base.localAvatar.setSystemMessage(1,'Welcome to Funny Farm!')
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(intro2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part3))
|
||
seq.append(Wait(4))
|
||
seq.append(Func(part4))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(spot))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(part5))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(part7))
|
||
seq.append(Wait(2.3))
|
||
seq.append(Func(part6))
|
||
seq.start()
|
||
onTime()
|
||
|
||
non land farms:
|
||
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setAnimState(('OpenBook'))
|
||
def intro2():
|
||
base.localAvatar.b_setAnimState(('ReadBook'))
|
||
def part2():
|
||
base.localAvatar.b_setAnimState(('CloseBook'))
|
||
def part3():
|
||
base.localAvatar.b_setAnimState('TeleportOut')
|
||
def part4():
|
||
base.cr.sendSetZoneMsg(7000)
|
||
def spot():
|
||
base.localAvatar.setHpr(270,0,0)
|
||
def part5():
|
||
base.localAvatar.b_setAnimState('TeleportIn')
|
||
def part6():
|
||
base.localAvatar.b_setAnimState('Happy')
|
||
def part7():
|
||
base.localAvatar.setSystemMessage(1,'Welcome to Funny Farm!')
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(intro2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part2))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(part3))
|
||
seq.append(Wait(4))
|
||
seq.append(Func(part4))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(spot))
|
||
seq.append(Wait(2))
|
||
seq.append(Func(part5))
|
||
seq.append(Wait(.2))
|
||
seq.append(Func(part7))
|
||
seq.append(Wait(2.3))
|
||
seq.append(Func(part6))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
|
||
Gardening
|
||
|
||
base.localAvatar.setShovelSkill(30)
|
||
|
||
base.localAvatar.setWateringCanSkill(50)
|
||
|
||
base.localAvatar.promoteWateringCan(3)
|
||
|
||
base.localAvatar.promoteShovel(3)
|
||
|
||
|
||
Other
|
||
|
||
base.localAvatar.setSystemMessage(1,'(NAME): (TEXT)')
|
||
|
||
Invisible Book:
|
||
|
||
base.localAvatar.b_setAnimState('ReadBook')
|
||
base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
|
||
base.Disconnect('20.20.20') 322374
|
||
messenger.send('<<toon id here/enter here toon name>>')
|
||
|
||
|
||
base.Disconnect('20.30.')
|
||
322275Messenger.sent('<<name/toonsidnumber>>')
|
||
|
||
base.localAvatar.b_setEmoteState(1,0)
|
||
|
||
base.localAvatar.collisionsOff()
|
||
base.cr.sendSetZoneMsg(7000)
|
||
base.localAvatar.b_setAnimState(('Teleport'))
|
||
base.cr.sendSetZoneMsg(2000)
|
||
|
||
base.wireframeOn()
|
||
|
||
base.wireframeOff()
|
||
|
||
base.localAvatar.enableBlend()
|
||
|
||
base.localAvatar.disableBlend()
|
||
|
||
|
||
base.localAvatar.collisionsOff()
|
||
|
||
base.localAvatar.collisionsOn()
|
||
|
||
base.localAvatar.setNumPies(100)
|
||
base.localAvatar.setPieType(5)
|
||
|
||
|
||
Get all toon id's
|
||
|
||
messenger.send('nameTagShowAvId')
|
||
|
||
Black Mouth:
|
||
|
||
base.localAvatar.setColor(0)
|
||
|
||
|
||
White Mouth:
|
||
|
||
base.localAvatar.setColor(1)
|
||
|
||
base.localAvatar.setSystemMessage(1,'Admin: Type your test here')
|
||
|
||
|
||
|
||
Super man
|
||
|
||
base.localAvatar.collisionsOff()
|
||
base.localAvatar.setPos(0,0,5)
|
||
base.localAvatar.setHpr(0,270,0)
|
||
base.localAvatar.b_setAnimState('ScientistEmcee')
|
||
|
||
|
||
Cannon Place:
|
||
|
||
1 base.localAvatar.setPinkSlips((1))
|
||
|
||
2 fight a cog, first fire the cog then defeat it
|
||
|
||
3 go in the grey anywhere, if you dont know how heres the code
|
||
base.localAvatar.collisionsOff()
|
||
|
||
4 you will see a cannon, thats it
|
||
|
||
|
||
|
||
Find Codes:
|
||
|
||
def getmembers(object, predicate=None):
|
||
results = []
|
||
for key in dir(object):
|
||
value = getattr(object, key)
|
||
if not predicate or predicate(value):
|
||
results.append((key, value))
|
||
print key,value
|
||
results.sort()
|
||
return results
|
||
getmembers [[base.localAvatar]]
|
||
|
||
|
||
Replace 'Enter Class Here' With: localAvatar
|
||
|
||
messenger.send('nameTagShowAvId')
|
||
|
||
|
||
base.localAvatar.setPos(22,-10,8888880)
|
||
|
||
ANNOYING BOT
|
||
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setAnimState('Died')
|
||
base.talkAssistant.sendOpenTalk('EAT A BIG MAC!!!')
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.start()
|
||
onTime()
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
def intro():
|
||
base.localAvatar.b_setSCSinging(60401)
|
||
base.localAvatar.b_setAnimState('FallDown')
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(intro))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
#import the string module...
|
||
import string
|
||
|
||
#open the log file
|
||
filepath = "C:/Program Files/The Spoof Net/The ToonTown Spoofer/ToonTown/toontown-100724_041549.log"
|
||
#you need to fill in the rest of the path above with a filename, it needs the full path name between the quotes
|
||
|
||
file_to_read_from = open('%s'%(filepath),'r')
|
||
trash = file_to_read_from.read() #skips to end of file so only new messages are processed
|
||
del trash
|
||
print
|
||
print
|
||
|
||
####set up a loop (infinite unless we "break" it)
|
||
|
||
while True:
|
||
####each pass of the loop, check for new data
|
||
line_to_parse = file_to_read_from.readline()
|
||
if line_to_parse == "": #if it gets a blank string, no new input... start the loop over
|
||
continue
|
||
if string.find(line_to_parse.lower(), 'command') != -1:
|
||
message = "'"+line_to_parse[string.find(line_to_parse.lower(), 'command')+8:]+"'"
|
||
base.localAvatar.base.localAvatar.b_setAnimState(message)
|
||
|
||
|
||
______________________________________________________________________________________
|
||
|
||
import string
|
||
from direct.interval.IntervalGlobal import *
|
||
def read():
|
||
#define the command log file - this needs to be the same as the "write" file in whisper_monitor.py
|
||
filepath = "C:/Program Files/The Spoof Net/The ToonTown Spoofer/ToonTown/commands.log"
|
||
|
||
file_to_read_from = open(filepath,'w+') #open the command log file
|
||
linelist = file_to_read_from.readlines() #reads the list of commands
|
||
file_to_read_from.seek(0) #go to the begining of the file
|
||
file_to_read_from.truncate() #and chop it
|
||
|
||
if linelist != []: #if the commands log list isn't empty:
|
||
message = linelist.pop(0) #take out the oldest command from the log
|
||
file_to_read_from.writelines(linelist) #put the rest of the commands back in the file
|
||
base.localAvatar.b_setAnimState(message) #send the command
|
||
|
||
file_to_read_from.flush() #flush file the buffer
|
||
file_to_read_from.close() #close the file
|
||
return #return nothing
|
||
def onTime():
|
||
seq = Sequence()
|
||
seq.append(Func(read))
|
||
seq.append(Func(onTime))
|
||
seq.start()
|
||
onTime()
|
||
|
||
|
||
______________________________________________________________________________________
|
||
|
||
def read():
|
||
#open the log file
|
||
filepath = "C:/Program Files/Disney/Disney Online/ToontownOnline/"
|
||
#you need to fill in the rest of the path above with a filename, it needs the full path name between the quotes
|
||
|
||
|
||
file_to_read_from = open('%s'%(filepath),'r')
|
||
trash = file_to_read_from.read() #skips to end of file so only new messages are processed
|
||
del trash
|
||
|
||
while True:
|
||
#the next line of the log is read
|
||
line_to_parse = file_to_read_from.readline()
|
||
|
||
if string.find(line_to_parse.lower(), 'command') != -1:
|
||
message = line_to_parse[string.find(line_to_parse.lower(), 'command')+8:]
|
||
if len(message) != 0:
|
||
base.localAvatar.b_setAnimState(message)
|
||
break
|
||
else:
|
||
continue
|
||
|
||
"Based on a violation of the house rules we have Terminated your account KatMeister1041 for being fucked up the ass by a Toon named 'Penis' any attempts to suck his dick will be blocked, and any attempts to redeem you're account will be pretty retarded, Won't they? So because of the incident you must cease use of all Disney: Sex toys, play mates, condoms, and other sexual Material."
|
||
toontown.toon.DistributedNPCFisherman.lookAt(0,0,0)
|
||
base.localAvatar.closeEyes()
|
||
base.localAvatar.pauseGlitchKiller()
|
||
|
||
|
||
base.localAvatar.setNametagScale(2)
|
||
|
||
jbs
|
||
base.localAvatar.setSCResistance(200, nearbyToons=[286531738])
|
||
|
||
base.localAvatar.setWalkSpeedSlow()
|
||
|
||
base.localAvatar.setWalkSpeedNormal()
|
||
|
||
base.localAvatar.setScissor(5,0)
|
||
|
||
|
||
base.localAvatar.setRenderModeWireframe()
|
||
base.localAvatar.setRenderModeFilled()
|
||
|
||
base.localAvatar.surpriseEyes()
|
||
|
||
server sided lose hp code
|
||
base.localAvatar.d_squish(1)
|
||
|
||
base.localAvatar.generateToonColor()
|
||
|
||
base.localAvatar.generateToonHead()
|
||
|
||
|
||
base.localAvatar.generateToonTorso()
|
||
|
||
base.localAvatar.generateToonLegs()
|
||
|
||
base.localAvatar.showHpText('lol')
|
||
base.localAvatar.showHpString('lol')
|
||
base.localAvatar.showAllBounds()
|
||
|
||
|
||
base.localAvatar.gotoSleep()
|
||
|
||
base.localAvatar.hideName()
|
||
|
||
base.localAvatar.showSmileMuzzle()
|
||
|
||
base.localAvatar.showAngryMuzzle()
|
||
|
||
base.cr.waitForDatabaseTimeout()
|
||
|
||
base.cr.networkPlugPulled()
|
||
|
||
base.cr.pullNetworkPlug()
|
||
|
||
base.cr.restoreNetworkPlug()
|
||
|
||
base.localAvatar.flush()
|
||
|
||
base.localAvatar.cr.toons.flush()
|
||
|
||
dont do cr.toons.flush it del u
|
||
|
||
|
||
base.cr.enterCreateAccount(self, createAccountDoneData={'back': 'login', 'backArgs': []})
|
||
|
||
name tag show messenger.send('nameTagShowAvId')
|
||
|
||
base.localAvatar.toonUp(16)
|
||
not server tho
|
||
|
||
base.localAvatar.setFriendsList([(236031563, 1)])
|
||
|
||
base.accept("f7", base.localAvatar.blinkEyes, [])
|
||
|
||
base.localAvatar.flush()
|
||
|
||
|
||
|
||
shirt = base.localAvatar.findAllMatches('**/torso-top')
|
||
shirttex = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirt_sellbotCrusher.jpg")
|
||
shirt.setTexture(shirttex, 1)
|
||
short = base.localAvatar.findAllMatches('**/torso-bot')
|
||
shorttex = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shorts_sellbotCrusher.jpg")
|
||
short.setTexture(shorttex, 1)
|
||
sleeves = base.localAvatar.findAllMatches('**/sleeves')
|
||
sleevestex = loader.loadTexture("phase_4/maps/tt_t_chr_avt_shirtSleeve_sellbotCrusher.jpg")
|
||
sleeves.setTexture(sleevestex, 1)
|
||
base.localAvatar.setName('RESISTANCE RANGER crazy')
|
||
base.localAvatar.hideShadow()
|
||
|
||
base.localAvatar.stash()
|
||
|
||
base.localAvatar.useGhostControls()
|
||
|
||
base.localAvatar.localPresentPie(2)
|
||
|
||
|
||
base.localAvatar.localTossPie(100)
|
||
set that in vp n have full pie throw
|
||
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
ttHat = loader.loadModel("phase_3.5/models/gui/tt_m_gui_gm_toontroop_whistle.bam")
|
||
ttHat.reparentTo(base.localAvatar)
|
||
ttHat.setZ(4.1)
|
||
ttHat.setColorScale(25)
|
||
|
||
|
||
|
||
toon troop
|
||
|
||
|
||
|
||
|
||
|
||
another party hat
|
||
|
||
|
||
closet code 4 king sammie messenger.send('purchaseDone-415266493')
|
||
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import *
|
||
|
||
tTroopHat = loader.loadModel("phase_3.5/models/gui/tt_m_gui_gm_toontroop_whistle.bam")
|
||
tTroopHat.reparentTo(base.localAvatar.find('**/head-short'))
|
||
tTroopHat.setZ(0.45)
|
||
tTroopHat.setX(-0.05)
|
||
tTroopHat.setColorScale(25)
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
# Toontown Logger Script
|
||
# Created by greencatthethird - Fd Green Cat Fd - Youtube - gamecrazzy441
|
||
|
||
log = messenger.send
|
||
log = str(log)
|
||
|
||
filepath = "C:/Log.txt"
|
||
|
||
def logger():
|
||
outfile = open(filepath, "w")
|
||
outfile.write(log + "\n")
|
||
outfile.close()
|
||
base.localAvatar.setSystemMessage(1, 'Logging...')
|
||
logger()
|
||
|
||
|
||
make a Log file put it in my comptuer local disk
|
||
|
||
look 4 a girl with mroe then 1 skirt
|
||
go in closet dont click ok
|
||
then put in that code then go 2 log n do ctrl f n put in purchase done
|
||
then get purchase done code pick a skirt
|
||
then do purschace done
|
||
then go back to closet
|
||
click cancel n there
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
print help(base.localAvatar)
|
||
print help(base.cr)
|
||
print help(toontown)
|
||
print help(base.localAvatar.physControls)
|
||
print help(base.talkAssistant)
|
||
print dir(localAvatar)
|
||
print help(localAvatar)
|
||
|
||
messenger.send('Mickeywalkdone')
|
||
|
||
|
||
|
||
|
||
|
||
greencatthethird 11:11 am
|
||
?
|
||
oh
|
||
go in the closet
|
||
go to the vampire clothes
|
||
click shuffle
|
||
go back to the vampire clothes
|
||
get the closet id
|
||
nd run the code
|
||
go back in the closet after
|
||
and click cancel
|
||
its just like ur stealing vampire skirt except
|
||
you use shuffle
|
||
|
||
|
||
base.localAvatar.setTeleportAccess([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000,
|
||
12000, 13000])
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000,
|
||
12000, 13000])
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
import toontown
|
||
def new():
|
||
return True
|
||
def new2(*a,**k):
|
||
return 2
|
||
base.cr.isPaid = new
|
||
base.cr.isParentPasswordSet = new
|
||
toontown.toon.LocalToon.LocalToon.getGameAccess = new2
|
||
|
||
|
||
messenger.send('SCEmoteNoAccess')
|
||
|
||
messenger.send('enterStickerBook')
|
||
|
||
messenger.send('escape')
|
||
|
||
messenger.send('jumpHardLand')
|
||
|
||
|
||
|
||
|
||
my own buttons
|
||
|
||
|
||
|
||
|
||
|
||
take away hp
|
||
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
|
||
bk_text = "1HPAWAY Hack Ready"
|
||
textObject = OnscreenText(text = bk_text, pos = (0.105,-0.105),
|
||
scale = 0.07,fg=(1,0.5,0.5,1),align=TextNode.ACenter,mayChange=1)
|
||
|
||
def setText():
|
||
bk_text = "1HpAway"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.d_squish(1)
|
||
|
||
b = DirectButton(text = ("1HPAWAY", "1hpaway", "1hpaway", "1HPAWAY"), scale=.06, pos = (0,-.100,-.100), command=setText)
|
||
|
||
|
||
|
||
|
||
purchase done
|
||
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
|
||
bk_text = "purchaseDone Hack Ready"
|
||
textObject = OnscreenText(text = bk_text, pos = (0.98,-0.98),
|
||
scale = 0.07,fg=(1,0.5,0.5,1),align=TextNode.ACenter,mayChange=1)
|
||
|
||
def setText():
|
||
bk_text = "purchaseDone"
|
||
textObject.setText(bk_text)
|
||
messenger.send('purchaseDone')
|
||
|
||
b = DirectButton(text = ("PURCHASEDone", "purchaseDone", "purchaseDone", "purchaseDone"), scale=.06, pos = (0,-.98,-.98), command=setText)
|
||
|
||
|
||
stealth
|
||
|
||
|
||
|
||
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
|
||
bk_text = "stealth Hack Ready"
|
||
textObject = OnscreenText(text = bk_text, pos = (0.105,-0.105),
|
||
scale = 0.07,fg=(1,0.5,0.5,1),align=TextNode.ACenter,mayChange=1)
|
||
|
||
def setText():
|
||
bk_text = "stealth"
|
||
textObject.setText(bk_text)
|
||
base.cr.sendSetZoneMsg(2000)
|
||
|
||
b = DirectButton(text = ("stealth, "stealth", "stelath", "STEALTHDONE"), scale=.06, pos = (0,-.95,-.95), command=setText)
|
||
|
||
|
||
|
||
|
||
|
||
stealth undone
|
||
|
||
|
||
|
||
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
|
||
bk_text = "unstealth Hack Ready"
|
||
textObject = OnscreenText(text = bk_text, pos = (0.105,-0.105),
|
||
scale = 0.07,fg=(1,0.5,0.5,1),align=TextNode.ACenter,mayChange=1)
|
||
|
||
def setText():
|
||
bk_text = "1HpAway"
|
||
textObject.setText(bk_text)
|
||
base.cr.sendSetZoneMsg(2010)
|
||
|
||
b = DirectButton(text = ("unstealth, "unstealth", "unstealth", "unSTEALTHDONE!!!!!"), scale=.06, pos = (0,-.95,-.95), command=setText)
|
||
|
||
silly trixie -217158463
|
||
|
||
|
||
stealth base.cr.sendSetZoneMsg(2010)
|
||
|
||
|
||
mewonasie-245681021
|
||
|
||
|
||
|
||
|
||
global tp
|
||
|
||
|
||
|
||
|
||
|
||
|
||
from direct.gui.OnscreenText import OnscreenText
|
||
from direct.gui.DirectGui import *
|
||
from pandac.PandaModules import TextNode
|
||
|
||
bk_text = "globaltpHack Ready"
|
||
textObject = OnscreenText(text = bk_text, pos = (0.96,-0.96),
|
||
scale = 0.08,fg=(1,0.5,0.5,1),align=TextNode.ACenter,mayChange=1)
|
||
|
||
def setText():
|
||
bk_text = "globaltp"
|
||
textObject.setText(bk_text)
|
||
base.localAvatar.setTeleportAccess([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000,
|
||
12000, 13000])
|
||
base.localAvatar.setHoodsVisited([1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 11000,
|
||
12000, 13000])
|
||
base.localAvatar.book.pages[1].showPop = 1
|
||
b = DirectButton(text = ("GLOBALTP", "globaltp", "globaltp", "GLOBALTP"), scale=.06, pos = (0,-.96,-.96), command=setText)
|
||
|
||
|
||
|
||
|
||
|
||
|
||
# Toontown Logger Script
|
||
# Created by greencatthethird - Fd Green Cat Fd - Youtube - gamecrazzy441
|
||
|
||
log = messenger.send
|
||
log = str(log)
|
||
|
||
filepath = "C:/Log.txt"
|
||
|
||
def logger():
|
||
outfile = open(filepath, "w")
|
||
outfile.write(log + "\n")
|
||
outfile.close()
|
||
base.localAvatar.setSystemMessage(1, 'Logging...')
|
||
logger()
|
||
|
||
|
||
|
||
|
||
|
||
Bank Customization :
|
||
|
||
bank = base.cr.doFindAll("Bank")
|
||
for bank in base.cr.doFindAll("Bank"):
|
||
bank.find('**/pigBody').setColor(0.242, 0.742, 0.516, 1)
|
||
bank.find('**/pigHead').setColor(0.242, 0.742, 0.516, 1)
|
||
bank.find('**/earR').setColor(0.242, 0.742, 0.516, 1)
|
||
bank.find('**/earL').setColor(0.242, 0.742, 0.516, 1)
|
||
bank.find('**/bowl').setColor(0.97,0.3,0.3,1)
|
||
bank.find('**/pedal').setColor(0.97,0.3,0.3,1)
|
||
bank.find('**/base').setColor(0,0,255)
|
||
bank.find('**/main_base').setColor(0,0,255)
|
||
bank.find('**/label').setColor(0,0,255)
|
||
bank.find('**/lid').setColor(0,0,255)
|
||
bank.find('**/jellybeans').removeNode()
|
||
|
||
|
||
npc control :
|
||
|
||
fishman = base.cr.doFindAll("Fisherman")
|
||
for fishman in base.cr.doFindAll("Fisherman"):
|
||
fishman.displayTalk('GREEN CAT PWNS ALL')
|
||
|
||
fishman = base.cr.doFindAll("Fisherman")
|
||
for fishman in base.cr.doFindAll("Fisherman"):
|
||
fishman.setAnimState('Sit')
|
||
|
||
|
||
server toon up :
|
||
|
||
ttt = base.cr.doFindAll("TTTreasure")
|
||
for ttt in base.cr.doFindAll("TTTreasure"):
|
||
ttt.d_requestGrab()
|
||
|
||
|
||
racing code
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
ttv = base.cr.doFindAll("Vehicle")
|
||
for ttv in base.cr.doFindAll("Vehicle"):
|
||
ttv.setTurbo(999999)
|
||
base.accept("f6", ttv.startTurbo, [])
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
keep doing it
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
getColor = base.localAvatar.find('**/arms').getColor()
|
||
getColor = str(getColor)
|
||
base.localAvatar.systemWarning(getColor)
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
color gloves
|
||
|
||
|
||
|
||
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
|
||
def reset():
|
||
fd = base.cr.doFindAll("render/Fd Green Cat Fd")
|
||
for fd in base.cr.doFindAll("render/Fd Green Cat Fd"):
|
||
fd.findAllMatches('**/hands').setColor(0.97,0.3,0.3,1)
|
||
|
||
mm = base.cr.doFindAll("render/Magic Maker")
|
||
for mm in base.cr.doFindAll("render/Magic Maker"):
|
||
mm.findAllMatches('**/hands').setColor(0.996,0.898,0.32,1)
|
||
|
||
inc = base.cr.doFindAll("render/Incorrect")
|
||
for inc in base.cr.doFindAll("render/Incorrect"):
|
||
inc.findAllMatches('**/hands').setColor(0.547, 0.281, 0.75, 1)
|
||
|
||
b = base.cr.doFindAll("render/Butch")
|
||
for b in base.cr.doFindAll("render/Butch"):
|
||
b.findAllMatches('**/hands').setColor(0.1, 0.9, 0.99, 1)
|
||
|
||
db = base.cr.doFindAll("render/Duck Budy")
|
||
for db in base.cr.doFindAll("render/Duck Buddy"):
|
||
db.findAllMatches('**/hands').setColor(0.547, 0.281, 0.75, 1)
|
||
|
||
cbsn = base.cr.doFindAll("render/Crazy Butch Sournoodle")
|
||
for cbsn in base.cr.doFindAll("render/Crazy Butch Sournoodle"):
|
||
cbsn.findAllMatches('**/hands').setColor(0.992, 0.48, 0.168, 1)
|
||
|
||
d = base.cr.doFindAll("render/Disyer")
|
||
for d in base.cr.doFindAll("render/Disyer"):
|
||
d.findAllMatches('**/hands').setColor(0.64,0.35,0.27)
|
||
|
||
def glovesTime():
|
||
seq = Sequence()
|
||
seq.append(Func(reset))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(glovesTime))
|
||
seq.start()
|
||
|
||
glovesTime()
|
||
|
||
|
||
http://www.mediafire.com/?nam4v9d5wz7xvlb
|
||
|
||
|
||
|
||
|
||
|
||
|
||
emeblem 4 weareteamfd:
|
||
|
||
|
||
|
||
|
||
from direct.actor.Actor import Actor
|
||
from pandac.PandaModules import *
|
||
from direct.task import Task
|
||
import math
|
||
from math import pi, sin, cos
|
||
from direct.showbase.ShowBase import ShowBase
|
||
from direct.task import Task
|
||
from direct.interval.IntervalGlobal import Sequence
|
||
from pandac.PandaModules import Point3
|
||
from pandac.PandaModules import *
|
||
|
||
fd = base.cr.doFindAll("render/Short Greencat Short")
|
||
for fd in base.cr.doFindAll("render/Short Greencat Short"):
|
||
print "Loaded..."
|
||
|
||
getEmblemSource = loader.loadModel("phase_3.5/models/gui/tt_m_gui_gm_toontroop_whistle.bam")
|
||
getEmblemSource.reparentTo(render)
|
||
emblemSourceText = loader.loadTexture("Custom/Toon/gamegui_palette_3clla_1.jpg")
|
||
getEmblemSource.setTexture(emblemSourceText, 1)
|
||
getEmblemSource.hide()
|
||
emblem = getEmblemSource.find('**/whistleIcon')
|
||
emblem.reparentTo(fd)
|
||
emblem.show()
|
||
emblem.setScale(3)
|
||
emblem.setZ(1.5)
|
||
emblemSpin = emblem.hprInterval(3, Vec3(360, 0, 0))
|
||
emblemSpin.loop()
|
||
emblemText = loader.loadTexture("Custom/Toon/gamegui_palette_3clla_1.jpg")
|
||
emblem.setTexture(emblemText, 1)
|
||
|
||
|
||
|
||
|
||
|
||
|
||
print dir(toontown.coghq)
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
base.localAvatar.physControls.avatarControlJumpForce = .1
|
||
base.localAvatar.physControls.setGravity(.00001)
|
||
|
||
|
||
|
||
|
||
|
||
base.localAvatar.cogLevels=[49, 1, 1, 1]
|
||
base.localAvatar.putOnSuit('mh')
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
pet.enterDance()
|
||
pet.enterSwim()
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
pet = base.cr.doFindAll("Suck It")
|
||
for pet in base.cr.doFindAll("Suck It"):
|
||
pet.displayTalk('Hi there! My Name is \'Suck It\', my Name says all!')
|
||
|
||
|
||
pet.enterTeleportIn(0)
|
||
pet.enterTeleportOut(0)
|
||
|
||
|
||
|
||
pet.setScale(2,2,0.001)
|
||
|
||
pet.setScale(3,3,3)
|
||
|
||
pet = base.cr.doFindAll("X")
|
||
for pet in base.cr.doFindAll("X"):
|
||
pet.setPetName('Suck It')
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
messenger.send('SCStaticTextMsg', [4])
|
||
|
||
messenger.send('SCCustomMsg', [11010])
|
||
|
||
server name : from sn import *allowName('Fd Green Cat Fd')
|
||
|
||
|
||
|
||
auto steal clothes
|
||
|
||
|
||
getCloset = base.cr.doFindAll("closet")
|
||
for getCloset in base.cr.doFindAll("closet"):
|
||
messenger.send('purchaseDone-' + str(getCloset.doId))
|
||
|
||
base.cr.sendDatagram('%xf%')
|
||
|
||
|
||
from direct.interval.IntervalGlobal import *
|
||
|
||
def reset():
|
||
fd = base.cr.doFindAll("render/Fd Green Cat Fd")
|
||
for fd in base.cr.doFindAll("render/Fd Green Cat Fd"):
|
||
fd.findAllMatches('**/hands').setColor(0.97,0.3,0.3,1)
|
||
|
||
def glovesTime():
|
||
seq = Sequence()
|
||
seq.append(Func(reset))
|
||
seq.append(Wait(1))
|
||
seq.append(Func(glovesTime))
|
||
seq.start()
|
||
|
||
glovesTime()
|
||
|
||
|
||
|
||
base.cr.enterRejectRemoveAvatar('217158463')
|
||
|
||
|
||
ttd = base.cr.doFindAll("DivingGame")
|
||
for ttd in base.cr.doFindAll("DivingGame"):
|
||
ttd.setTreasureGrabbed(base.localAvatar.doId, True)
|
||
|
||
|
||
|
||
base.localAvatar.b_setSC(20278)
|
||
|
||
base.localAvatar.b_setSC(20096)
|
||
|
||
|
||
|
||
ttd = base.cr.doFindAll("render/")
|
||
for ttd in base.cr.doFindAll("render/"):
|
||
ttd.setAnimState('swim')
|
||
ttd.displayTalk('.TEAM FD IS BEAST')
|
||
|
||
|
||
|
||
|
||
|
||
|
||
ttd = base.cr.doFindAll("render/Toons Name")
|
||
for ttd in base.cr.doFindAll("render/Toons Name"):
|
||
ttd.setAnimState('swim')
|
||
ttd.displayTalk('.TEAM FD IS BEAST')
|
||
|
||
|
||
|
||
localAvatar.setWalkSpeedSlow()
|
||
|
||
|
||
localAvatar.setMaxClothes('999')
|
||
|
||
|
||
base.localAvatar.standWalkRunReverse = (('neutral', -0.0), ('walk', -0.0), ('run', -0.0), ('walk', 0.0))
|
||
|
||
|
||
|
||
base.localAvatar.standWalkRunReverse = (('neutral', -1.0), ('walk', -1.0), ('run', -1.0), ('walk', 1.0))
|
||
localAvatar. setMaxNPCFriends(90)
|
||
|
||
localAvatar.setPetTutorialDone()
|
||
|
||
|
||
base.toggleTexMem()
|
||
|
||
|
||
|
||
ttv = base.cr.doFindAll("Vehicle")
|
||
for ttv in base.cr.doFindAll("Vehicle"):
|
||
ttv.setTurbo(999999)
|
||
ttv.enableControls()
|
||
base.accept("f6", ttv.startTurbo, [])
|
||
|
||
|
||
|
||
team blue skeleton:
|
||
|
||
|
||
|
||
|
||
nmgr = base.cr.doFindAll("NewsManager")
|
||
for nmgr in base.cr.doFindAll("NewsManager"):
|
||
nmgr.setInvasionStatus(msgType=0, cogType="f", numRemaining=1000, skeleton=1)
|
||
|
||
import random
|
||
cogs = base.cr.doFindAllMatching("render")
|
||
cogs.remove(base.localAvatar)
|
||
for cogs in cogs:
|
||
level = random.randint(1, 9)
|
||
cogs.setSkelecog(True)
|
||
cogs.setSkeleRevives(1)
|
||
cogs.setName("Skelecog\nTeam FD Slave\nLevel " + str(level))
|
||
cogs.setColor(0.1, 0.1, 1) |