You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-20Lines changed: 23 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -343,7 +343,7 @@ To load assets directly from Roblox.com, our software needs to provide a valid `
343
343
1._If you are on a Windows and play Roblox.com_, RFD will find and decrypt the contents of your `%LocalAppData%\Roblox\LocalStorage\RobloxCookies.dat` file - and there are no further actions needed to start loading assets.
344
344
2. Otherwise, across all OS types, RFD will extract your `ROBLOSECURITY` environment variable.
345
345
346
-
**Freedom Distribution will NOT save/upload your token anywhere and will not use it outside roblox assetdelivery services.** The cookie handling can be found in the Source "extractor.py" file.
346
+
**RFD does not save or upload your cookie token anywhere.** That token is used solely for Rōblox's _assetdelivery_ services. The cookie handling can be found in [`extractor.py`](./Source/assets/extractor.py).
347
347
348
348
### Setting Up Enviroment Variables
349
349
@@ -372,7 +372,7 @@ To configure place-iden spoofing, with the `12345` being replaced by your desire
372
372
$env:rfdplaceid = '12345'
373
373
```
374
374
375
-
**SIDENOTE: The way this commands setup enviroment tables will not persist once you close the PowerShell**
375
+
Note that in PowerShell, the way this command prepares enviroment variables will not persist once you close the PowerShell.
376
376
377
377
### Local Asset Persistence
378
378
@@ -401,11 +401,12 @@ RFD is designed to accommodate current-day `rbxl` (_not_ `rbxlx`) files. To acco
401
401
Objects transformed include:
402
402
403
403
1. Fonts which existed in their respective versions, and
404
-
1. Meshes encoded with versions 4 or 5 _back_ to version 2 (courtesy [rbxmesh](https://github.com/PrintedScript/RBXMesh/blob/main/RBXMesh.py)).
404
+
1. CSG data build using post-2021 formats (such as CSGv3)
405
+
1. Meshes encoded with versions 4.01+ _back_ to version 2 (courtesy [rbxmesh](https://github.com/PrintedScript/RBXMesh/blob/main/RBXMesh.py)).
405
406
406
407
Some modern programs do weird things to client-sided scripts. They use `Script` classs objects, but with a [`RunContext`](https://robloxapi.github.io/ref/class/BaseScript.html#member-RunContext) property set to [`"Client"`](https://robloxapi.github.io/ref/enum/RunContext.html#member-Client). You will also need to _manually_ convert these objects to `LocalScripts`.
407
408
408
-
And, **union operations done in current-day Studio (CSG v3) are not supported**. This is because CSG v2 support was completely removed in late 2022.
409
+
Parsing union operations done in current-day Studio still need work. This is because CSG v2 support was completely removed in late 2022.
409
410
410
411
If you need any help, please shoot me an issue on GitHub or a message to an account with some form of 'VisualPlugin' elsewhere.
411
412
@@ -454,6 +455,8 @@ The [config data](#gameconfigtoml-structure) can also be piped from `stdin`.
454
455
455
456
This specification is current as of 0.66.0. Some options might be different in future versions.
456
457
458
+
I like using the `toml` format because it's easier to [write multi-line code snippets](#functions).
459
+
457
460
Optionally, `toml` files can be expressed in `json`. The following basic configurations work the same way:
458
461
459
462
```json
@@ -477,17 +480,17 @@ Function-type options are very flexible in RFD. _Way_ too flexible if you're ask
477
480
478
481
Look out for `{OPTION}_call_mode`, where `{OPTION}` is the name of the option you're modifying. If `{OPTION}_call_mode` is not specified, RFD tries to assume on its own.
479
482
480
-
Following is a hypothetical option called `skibidi_plugin`. The examples all do the same thing.
483
+
Following is a hypothetical option called `bombardiro_crocodilo`. The examples all do the same thing.
0 commit comments