Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
It's not actually gibberish, the "data" string is base64 encoded for network transfer. Here's a site that'll do base64 decoding https://www.base64decode.org/
For example if you paste in "VGhpcyBpcyBhIHRlc3QgbWVzc2FnZSE=" and click "decode" you'll see it comes out with "This is a test message!"
Gmod itself also has a function for it if you're looking to do something in Lua itself. https://wiki.facepunch.com/gmod/util.Base64Decode - for example:
print( util.Base64Decode( "VGhpcyBpcyBhIHRlc3QgbWVzc2FnZSE=" ) )
will print "This is a test message!" to the console.
We process the Gmod12 lua against our compatibility layer live at runtime, so the result you get won't be exactly the same as what Cloudbox is running but if you're looking to extract scripts then you'd probably be wanting the original unmodified Gmod12 code anyway.
I might dwell deeper into this.