Advertisement
CrankySupertoon

Untitled

Apr 7th, 2020
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.47 KB | None | 0 0
  1. DannyBToday at 1:14 PM
  2. I have 2020 Cog source
  3. Cranky SupertoonToday at 1:14 PM
  4. Send it to me so i believe you
  5. DannyBToday at 1:14 PM
  6. How I know you wont run with it
  7. Cranky SupertoonToday at 1:15 PM
  8. i have an archive of many sources
  9. just want to add it there
  10. DannyBToday at 1:15 PM
  11. Their encryption was easy to break
  12. Cranky SupertoonToday at 1:15 PM
  13. Is it the source code of recovered bytecode?
  14. DannyBToday at 1:16 PM
  15. ye
  16. Cranky SupertoonToday at 1:16 PM
  17. care sending it to me
  18. DannyBToday at 1:16 PM
  19. Can you no you self
  20. Cranky SupertoonToday at 1:17 PM
  21. no your self
  22. i wont give it out i just dont believe you
  23. DannyBToday at 1:17 PM
  24. Can you not decrypt yourself
  25. Cranky SupertoonToday at 1:17 PM
  26. i can
  27. but you said you have source code
  28. not bytecode
  29. DannyBToday at 1:18 PM
  30. If you can decrypt it, why not do it yourself.
  31. Cranky SupertoonToday at 1:19 PM
  32. It doesnt give AI code
  33. you literally said you have SOURCE CODE
  34. not BYTECODE
  35. DannyBToday at 1:21 PM
  36. The libcogsandgags has a flaw that I exploited
  37. Cranky SupertoonToday at 1:21 PM
  38. care sending me proof
  39. DannyBToday at 1:22 PM
  40. Attachment file type: code
  41. DistributedEventStageAI.py
  42. 2.44 KB
  43. Cranky SupertoonToday at 1:22 PM
  44. @DannyB
  45. Give me the source code and ill give you something else
  46. DannyBToday at 1:22 PM
  47. what
  48. @Cranky Supertoon
  49. Cranky SupertoonToday at 1:25 PM
  50. depends what do oyu want
  51. DannyBToday at 1:25 PM
  52. Lets hack cogs together
  53. Cranky SupertoonToday at 1:25 PM
  54. Care giving me the full bytecode
  55. first
  56. DannyBToday at 1:26 PM
  57. You first
  58. Cranky SupertoonToday at 1:26 PM
  59. What do you want
  60. DannyBToday at 1:26 PM
  61. to hack cag with you
  62. Cranky SupertoonToday at 1:26 PM
  63. I dont want to back cag
  64. if you give me the source ill give you something else
  65. DannyBToday at 1:27 PM
  66. Its the source for hacking cag
  67. Cranky SupertoonToday at 1:27 PM
  68. send me your source first
  69. DannyBToday at 1:28 PM
  70. You send me the client bytecode you have first
  71. Cranky SupertoonToday at 1:28 PM
  72. im so confused
  73. DannyBToday at 1:29 PM
  74. You said you have the client bytecode. Send me the decrypted bytecode so I know you can hack it
  75. @Cranky Supertoon
  76. Cranky SupertoonToday at 1:32 PM
  77. CogdoBossbotTitle = "Cog Recruitment Agency"
  78. CogdoBossbotInstructions = ("We need your help. The head hunters have been recruiting Toons and we must stop them.",
  79. "Luckily, The Cogs have pies from when they've recruited Toons. Watch out for cogs roaming around the office!",
  80. "Use the gag barrels to defeat those Head Hunters! Be careful with your gag supply.")
  81. CogdoBossbotTitleFl2 = "Free The Toons!"
  82. CogdoBossbotInstructionsFl2 = ("We need your help. The captured Toons are being kept from their gags!",
  83. "Luckily, The Cogs left some of their Gag Barrels around!",
  84. "Hit a captured Toon with a pie to heal them, and they will help you out with The Boss.")
  85. SillySurgeTerms = {1: 'Amusing Ascent!', 2: 'Silly Surge!', 3: 'Ridiculous Rise!', 4: 'Giggle Growth!',
  86. 5: 'Funny Fueling!', 6: 'Batty Boost!', 7: 'Crazy Climb!', 8: 'Jolly Jump!', 9: 'Loony Lift!',
  87. 10: 'Hilarity Hike!', 11: 'Insanity Increase!', 12: 'Cracked-Uptick!'}
  88. InteractivePropTrackBonusTerms = {0: 'Super Toon-Up!', 1: '', 2: '', 3: '', 4: 'Super Throw!', 5: 'Super Squirt!',
  89. 6: ''}
  90. PlayingCardUnknown = 'Card Name is unknown'
  91. from panda3d.core import *
  92. from direct.directnotify import DirectNotifyGlobal
  93. from otp.launcher.LauncherBase import LauncherBase
  94. import os
  95. import sys
  96. import time
  97.  
  98. try:
  99. import urllib.request, urllib.parse, urllib.error, json
  100. except:
  101. pass
  102.  
  103.  
  104. class LogAndOutput:
  105. def __init__(self, orig, log):
  106. self.orig = orig
  107. self.log = log
  108.  
  109. def write(self, str):
  110. self.log.write(str)
  111. self.log.flush()
  112. self.orig.write(str)
  113. self.orig.flush()
  114.  
  115. def flush(self):
  116. self.log.flush()
  117. self.orig.flush()
  118.  
  119.  
  120. class TTCLauncher(LauncherBase):
  121. notify = DirectNotifyGlobal.directNotify.newCategory('ToontownDummyLauncher')
  122.  
  123. def __init__(self):
  124. self.http = HTTPClient()
  125. self.logPrefix = 'ttcag-'
  126. ltime = 1 and time.localtime()
  127. logSuffix = '%02d%02d%02d_%02d%02d%02d' % (ltime[0] - 2000, ltime[1], ltime[2], ltime[3], ltime[4], ltime[5])
  128. if not os.path.exists('logs/'):
  129. os.mkdir('logs/')
  130. self.notify.info('Made new directory to save logs.')
  131. logfile = os.path.join('logs', self.logPrefix + logSuffix + '.log')
  132. log = open(logfile, 'a')
  133. logOut = LogAndOutput(sys.stdout, log)
  134. logErr = LogAndOutput(sys.stderr, log)
  135. sys.stdout = logOut
  136. sys.stderr = logErr
  137.  
  138. def getPlayToken(self):
  139. return self.getValue('TTR_PLAYCOOKIE')
  140.  
  141. def getPassword(self):
  142. return self.getValue('TTR_PASSWORD')
  143.  
  144. def getCooke(self):
  145. return self.getValue('COOKIE')
  146.  
  147. def getaccess(self):
  148. return self.getValue('ACCESS')
  149.  
  150. def getimpersonate(self):
  151. return self.getValue('IMPERSONATE', 'None')
  152.  
  153. def GetopenChat(self):
  154. return self.getValue('ALLOWOPENCHAT', 'False')
  155.  
  156. def GetSecretChat(self):
  157. return self.getValue('ALLOWSECRETCHAT', 'False')
  158.  
  159. def getGameServer(self):
  160. return self.getValue('TTR_GAMESERVER')
  161.  
  162. def setPandaErrorCode(self, code):
  163. pass
  164. DannyBToday at 1:33 PM
  165. send me otp/avatar/CustomControlManager
  166. Cranky SupertoonToday at 1:34 PM
  167. Attachment file type: code
  168. CustomControlManager.py
  169. 9.59 KB
  170. DannyBToday at 1:35 PM
  171. toontown/toonbase/ToontownStart
  172. Cranky SupertoonToday at 1:35 PM
  173. Attachment file type: code
  174. toontown_toonbase_ToontownStart.py
  175. 6.38 KB
  176. i still want you to send your source
  177. with the AI Code
  178. i will give you antoher servers soudce in return
  179. DannyBToday at 1:38 PM
  180. Your code is outdated. My AI code wont work with your client code
  181. Cranky SupertoonToday at 1:38 PM
  182. send me your code and ill give you fellowship source
  183. DannyBToday at 1:39 PM
  184. I dont want that
  185. Cranky SupertoonToday at 1:39 PM
  186. What do you want
  187. i have basically everything
  188. DannyBToday at 1:39 PM
  189. The latest CAG client code.
  190. Cranky SupertoonToday at 1:39 PM
  191. i dont have that tho
  192. I will take your CAG code for anything
  193. that i have
  194. DannyBToday at 1:40 PM
  195. As you said, its not that hard. I'm sure it wont take you too long to get it.
  196. Cranky SupertoonToday at 1:40 PM
  197. AI Code cannot be dumped
  198. DannyBToday at 1:40 PM
  199. Ye. I want the latest client
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement