This commit is contained in:
Bitl 2017-04-15 10:22:12 -07:00
parent ff79413f0f
commit fde49a2660
2 changed files with 7 additions and 1 deletions

View File

@ -2,9 +2,15 @@ rbxversion = version();
print("ROBLOX Client version '" .. rbxversion .. "' loaded.");
if (rbxversion ~= "0, 3, 809, 0") then
settings().Rendering.FrameRateManager = 2;
settings().Network.DataSendRate = 1000000;
settings().Network.PhysicsSendRate = 1000000;
settings().Network.ReceiveRate = 1000000;
else
settings().Rendering.frameRateManager = 2;
settings().Rendering.graphicsMode = 2;
settings().Network.MaxSendBuffer = 1000000;
settings().Network.PhysicsReplicationUpdateRate = 1000000;
settings().Network.SendRate = 1000000;
end
HeadColor=BrickColor.DarkGray();

View File

@ -1,7 +1,7 @@
; Script generated by the Inno Script Studio Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define AppVer "1.9"
#define AppVer "1.10"
[Setup]
; NOTE: The value of AppId uniquely identifies this application.