Advertisement
ManlyFoes

Guest talk

Jun 17th, 2016
1,062
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1.  
  2. OpenProcess("RobloxPlayerBeta.exe")
  3.  
  4.  
  5. dbvm_initialize(true)
  6.  
  7.  
  8. getApplication().Title = ""
  9. getMainForm():SetCaption("")
  10. getSettingsForm():SetCaption("")
  11. getMemoryViewForm():SetCaption("")
  12. getLuaEngine():SetCaption("")
  13.  
  14.  
  15. activateProtection()
  16.  
  17. if (getSettings().Value["Scanfolder"] == "C:\\") then
  18. getSettings().Value["Scanfolder"] = "C:\\Program Files\\"
  19. else
  20. getSettings().Value["Scanfolder"] = "C:\\"
  21. end
  22.  
  23. reloadSettingsFromRegistry()
  24.  
  25.  
  26. function myattach(timer)
  27. if getProcessIDFromProcessName("RobloxPlayerBeta.exe") ~= nil then
  28. object_destroy(timer)
  29. openProcess("RobloxPlayerBeta.exe")
  30. end
  31. end
  32.  
  33. t=createTimer(nil);
  34. timer_setInterval(t,10)
  35. timer_onTimer(t,myattach)
  36.  
  37.  
  38. OpenProcess("RobloxPlayerBeta.exe")
  39.  
  40.  
  41.  
  42. autoAssemble([[
  43.  
  44. registerSymbol(setmembershiptype)
  45. label(setmembershiptype)
  46. aobscan(setsetmembershiptype, 55 8B EC 8B 45 08 56 8B F1 39 86 28 02 00 00 74)
  47.  
  48. setsetmembershiptype+6:
  49. setmembershiptype:
  50.  
  51.  
  52. registerSymbol(guestchat)
  53. label(guestchat)
  54. aobscan(setguestchat, C3 CC CC CC CC A0 ?? ?? ?? ?? 84 C0)
  55.  
  56. setguestchat:
  57. guestchat:
  58.  
  59. ]])
  60.  
  61. function SetBC()
  62. OpenProcess("RobloxPlayerBeta.exe")
  63.  
  64. debug_removeBreakpoint('setmembershiptype')
  65. debugger_onBreakpoint=function()
  66. if EIP==getAddress'setmembershiptype'then
  67. hasChangedARegister=true;
  68. EAX=1;
  69. changedEAX=true;
  70. end;
  71. debug_continueFromBreakpoint(co_run);
  72. return 1;
  73. end;
  74.  
  75. debug_setBreakpoint(getAddress'setmembershiptype');
  76. end
  77.  
  78. createHotkey(SetBC, VK_F4)
  79.  
  80.  
  81. function SetTBC()
  82. OpenProcess("RobloxPlayerBeta.exe")
  83.  
  84. debug_removeBreakpoint('setmembershiptype')
  85. debugger_onBreakpoint=function()
  86. if EIP==getAddress'setmembershiptype'then
  87. hasChangedARegister=true;
  88. EAX=2;
  89. changedEAX=true;
  90. end;
  91. debug_continueFromBreakpoint(co_run);
  92. return 1;
  93. end;
  94.  
  95. debug_setBreakpoint(getAddress'setmembershiptype');
  96. end
  97.  
  98. createHotkey(SetTBC, VK_F5)
  99.  
  100.  
  101. function SetOBC()
  102. OpenProcess("RobloxPlayerBeta.exe")
  103.  
  104. debug_removeBreakpoint('setmembershiptype')
  105. debugger_onBreakpoint=function()
  106. if EIP==getAddress'setmembershiptype'then
  107. hasChangedARegister=true;
  108. EAX=3;
  109. changedEAX=true;
  110. end;
  111. debug_continueFromBreakpoint(co_run);
  112. return 1;
  113. end;
  114.  
  115. debug_setBreakpoint(getAddress'setmembershiptype');
  116. end
  117.  
  118. createHotkey(SetOBC, VK_F6)
  119.  
  120.  
  121. function DisableMembership()
  122. OpenProcess("RobloxPlayerBeta.exe")
  123.  
  124. debug_removeBreakpoint('setmembershiptype')
  125. end
  126.  
  127. createHotkey(DisableMembership, VK_F7)
  128.  
  129.  
  130.  
  131. function EnableGuestchat()
  132. OpenProcess("RobloxPlayerBeta.exe")
  133.  
  134. debug_removeBreakpoint('guestchat')
  135. debugger_onBreakpoint=function()
  136. if EIP==getAddress'guestchat'then
  137. hasChangedARegister=true;
  138. EAX=1;
  139. changedEAX=true;
  140. end;
  141. debug_continueFromBreakpoint(co_run);
  142. return 1;
  143. end;
  144.  
  145. debug_setBreakpoint(getAddress'guestchat');
  146. end
  147.  
  148. createHotkey(EnableGuestchat, VK_F8)
  149.  
  150.  
  151. function DisableGuestchat()
  152. OpenProcess("RobloxPlayerBeta.exe")
  153.  
  154. debug_removeBreakpoint('guestchat')
  155. end
  156.  
  157. createHotkey(DisableGuestchat, VK_F10)
  158.  
  159.  
  160.  
  161. showMessage("guest talking script, enjoy.")
  162. showMessage("Press F4 to set your membership type to BC, then TP to the desired game.")
  163. showMessage("Press F5 to set your membership type to TBC, then TP to the desired game.")
  164. showMessage("Press F6 to set your membership type to OBC, then TP to the desired game.")
  165. showMessage("Press F7 to disable the membership address. (Recommended after joining a game with the desired membership")
  166. showMessage("Press F8 to enable guestchat, then TP to the desired game.")
  167. showMessage("Press F10 to disable the Guestchat address. (Recommended after joining a game.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement