Skip to content

Commit

Permalink
2024-05-16T0917Z
Browse files Browse the repository at this point in the history
  • Loading branch information
Windows81 committed May 16, 2024
1 parent c61407c commit 7674bcc
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 10 deletions.
2 changes: 1 addition & 1 deletion GameConfig.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ instances.count = 1

[game_setup]
# Aliases for "v348" is "2018M", "v463" is "2021E", etc.
roblox_version = '2018M'
roblox_version = '2021E'
place_path = 'c:\Users\USERNAME\Documents\Roblox Files\Baseplate.rbxl'
icon_path = 'C:\Users\USERNAME\Pictures\097050bd37142a4080975bb8e415d2b8.jpg'
name = '666'
Expand Down
2 changes: 1 addition & 1 deletion Source/data_transfer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Two types of threads access `obj`, a `transferer` object:

### Caller Threads

They call `call
They execute `obj.call` and block until the result is returned.

1. Extractor threads
1 change: 0 additions & 1 deletion Source/data_transfer/_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import attr

SCRIPT_FORMAT = """
print('Initialised RFD server scripts.')
_G.RFD = {%(functions)s}
spawn(function()
local BaseUrl = game:GetService("ContentProvider").BaseUrl:lower()
Expand Down
4 changes: 2 additions & 2 deletions Source/launcher/routines/_logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,13 @@ def maybe_download_binary(self) -> None:
elif self.local_args.auto_download:
print(
'Downloading "%s" for Rōblox version %s' %
(self.BIN_SUBTYPE, self.rōblox_version)
(self.BIN_SUBTYPE, self.rōblox_version.name)
)
downloader.download_binary(self.rōblox_version, self.BIN_SUBTYPE)
else:
raise FileNotFoundError(
'"%s" not found for Rōblox version %s.' %
(self.BIN_SUBTYPE, self.rōblox_version)
(self.BIN_SUBTYPE, self.rōblox_version.name)
)


Expand Down
2 changes: 1 addition & 1 deletion Source/util/const.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GIT_RELEASE_VERSION = '''2024-05-16T0741Z'''
GIT_RELEASE_VERSION = '''2024-05-16T0917Z'''
GIT_LINK_FORMAT = 'https://github.com/Windows81/Roblox-Filtering-Disabled/releases/download/%s/%s.%s.7z'

DEFAULT_PLACE_ID = 1818
Expand Down
8 changes: 4 additions & 4 deletions Source/web_server/endpoints/setup_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,10 +449,10 @@ def _(self: web_server_handler) -> bool:
"leftLegColorId": 1013
},
"scales": {
"height": 1.05,
"width": 1,
"head": 1,
"depth": 1,
"height": 2,
"width": 2,
"head": 2,
"depth": 2,
"proportion": 1,
"bodyType": 0.8
},
Expand Down
26 changes: 26 additions & 0 deletions o.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
local t = {
"./Roblox/v463/Player/Content/avatar/character.rbxm",
"./Roblox/v463/Player/Content/avatar/characterCaged.rbxm",
"./Roblox/v463/Player/Content/avatar/characterCagedHSR.rbxm",
"./Roblox/v463/Player/Content/avatar/characterCagedHSRV17-fixed-WrapTargets.rbxm",
"./Roblox/v463/Player/Content/avatar/characterCagedHSRV17.rbxm",
"./Roblox/v463/Player/Content/avatar/characterCagedHSRV18.rbxm",
"./Roblox/v463/Player/Content/avatar/characterR15.rbxm",
"./Roblox/v463/Player/Content/avatar/characterR15V2.rbxm",
"./Roblox/v463/Player/Content/avatar/characterR15V3.rbxm",
"./Roblox/v463/Player/Content/avatar/characterR15V4.rbxm",
"./Roblox/v463/Player/Content/avatar/characterR15V5.rbxm",
"./Roblox/v463/Player/Content/avatar/defaultDynamicHead.rbxm",
"./Roblox/v463/Player/Content/avatar/defaultDynamicHeadV2.rbxm",
"./Roblox/v463/Player/Content/avatar/defaultPants.rbxm",
"./Roblox/v463/Player/Content/avatar/defaultShirt.rbxm",
}
print(#t)
for _, a in next, t do
print(a)
local b = a .. ".bak"
local c = a .. "x"
fs.rename(a, b)
local v = fs.read(b, "rbxm")
fs.write(a, v, "rbxmx")
end

0 comments on commit 7674bcc

Please sign in to comment.