RCCService: Difference between revisions

From LRREW
Jump to navigation Jump to search
No edit summary
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
RCCService is the method Roblox has used since 2008 to manage game servers and rendering thumbnails. It uses a protocol called [[SOAP]] to communicate with Roblox.
RCCService is the server Roblox has used since 2008 to manage game servers and rendering thumbnails. It stands for 'Roblox Cloud Compute Service', and it uses a protocol called [[SOAP]] to communicate with Roblox.


{{Image frame
{{Image frame
Line 6: Line 6:
}}
}}


By default, RCCService is a Windows service. Starting in a command prompt will cause it to break without using the argument {{code|-start}}, which starts the service or {{code|-console}} which makes RCCService run in the terminal. {{code|-port [PORT NUM]}} will change the port RCCService hosts the SOAP interface on to [PORT NUM].
== Arguments ==


== ThumbnailService ==
{| class="wikitable"
|-
! Argument !! Purpose !! Notes
|-
| -console || Starts RCCService in console mode || RCCService will not launch without this or -start
|-
| -start || Starts RCCService in service mode || RCCService will not launch without this or -console
|-
| -placeid:''<Place ID>'' || Opens and loads ''<Place ID>'' ||
|-
| -verbose || Verbose outputting ||
|}
 
 
== ThumbnailGenerator ==


{{Infobox class
{{Infobox class
  |name=ThumbnailService
  |name=ThumbnailGenerator
}}
}}


ThumbnailService is the service RCCService uses to render its thumbnails.
ThumbnailGenerator is the service RCCService uses to render its thumbnails.


=== string Click(string format, int x, int x, bool something) ===
=== string Click(string format, int x, int y, bool hideSky) ===


This will render the image. x and y are the resolution, format is the format of the image that will be outputted (can be 'PNG', 'GIF', 'BMP', and some others).
This will render the image. x and y are the resolution, format is the format of the image that will be outputted (can be 'PNG', 'GIF', 'BMP', and some others). It will return the image encoded in Base64.


== Trustcheck Registry Entry ==
== Trustcheck Registry Entry ==
Line 32: Line 46:


{{asbox
{{asbox
| image = RCCService.png | subject  = Roblox internal
| image = RCCService.png | subject  = Roblox internals
}}
}}

Latest revision as of 09:31, 5 July 2023

RCCService is the server Roblox has used since 2008 to manage game servers and rendering thumbnails. It stands for 'Roblox Cloud Compute Service', and it uses a protocol called SOAP to communicate with Roblox.

RCCService upon startup, v0.3.784.0 (May 13, 2008)

Arguments

Argument Purpose Notes
-console Starts RCCService in console mode RCCService will not launch without this or -start
-start Starts RCCService in service mode RCCService will not launch without this or -console
-placeid:<Place ID> Opens and loads <Place ID>
-verbose Verbose outputting


ThumbnailGenerator

Instance ThumbnailGenerator
Parent InstanceInstance
IntroducedUnknown Introduction

ThumbnailGenerator is the service RCCService uses to render its thumbnails.

string Click(string format, int x, int y, bool hideSky)

This will render the image. x and y are the resolution, format is the format of the image that will be outputted (can be 'PNG', 'GIF', 'BMP', and some others). It will return the image encoded in Base64.

Trustcheck Registry Entry

In some early versions of RCCService, you can disable the trustcheck by going into your registry editor and editing key HKEY_LOCAL_MACHINE/SOFTWARE/Roblox. Add a DWORD value named "SkipTrustCheck" and set the value to 1, or some non-zero value. Alternatively, this .reg file can be used:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Roblox]
"SkipTrustCheck"=dword:00000001

Save it as something like skiptrustcheck.reg, and then add it to your registry.