more accurate 2011M (june 2011) gui
This commit is contained in:
parent
dd24d7de33
commit
fea4bc709e
|
|
@ -22,6 +22,7 @@ Enhancements:
|
|||
- The server browser now displays versions in red if they're not the same exact version.
|
||||
- The master server security warning will now show up once for every Novetus session.
|
||||
- Novetus now bases your tripcode off of your computer's hardware information. (Powered by https://github.com/davcs86/csharp-uhwid)
|
||||
- 2011M's GUI is now more accurate to when it released (Mid June 2011).
|
||||
|
||||
Fixes:
|
||||
- Fixed the URL Override box in the Asset SDK not being functional.
|
||||
|
|
|
|||
|
|
@ -1700,7 +1700,7 @@ else
|
|||
gui = game:GetService("CoreGui").RobloxGui
|
||||
end
|
||||
|
||||
local useOldDialog = false
|
||||
local useOldDialog = true
|
||||
|
||||
local helpButton = nil
|
||||
local updateCameraDropDownSelection = nil
|
||||
|
|
@ -1712,7 +1712,7 @@ local classicLookScreenUrl = "rbxasset://textures/ui/tutorial_look_classic.png"
|
|||
|
||||
local hasGraphicsSlider = false
|
||||
local recordingVideo = false
|
||||
local useNewGui = true
|
||||
local useNewGui = false
|
||||
|
||||
local newGuiPlaces = {0,41324860}
|
||||
|
||||
|
|
@ -2720,6 +2720,7 @@ if UserSettings then
|
|||
end
|
||||
end
|
||||
)
|
||||
print("Create old settings dialog return")
|
||||
return shield
|
||||
end
|
||||
|
||||
|
|
@ -2922,12 +2923,12 @@ if UserSettings then
|
|||
end
|
||||
|
||||
delay(0, function()
|
||||
for i = 1, #newGuiPlaces do
|
||||
--[[for i = 1, #newGuiPlaces do
|
||||
if game.PlaceId == newGuiPlaces[i] then
|
||||
useNewGui = true
|
||||
break
|
||||
end
|
||||
end
|
||||
end]]--
|
||||
if useNewGui then
|
||||
createSettingsDialog().Parent = gui
|
||||
|
||||
|
|
@ -3585,13 +3586,16 @@ if isSaveDialogSupported then
|
|||
end
|
||||
|
||||
--Spawn a thread for the Report Abuse dialogs
|
||||
print("about to create")
|
||||
delay(0,
|
||||
function()
|
||||
createReportAbuseDialog().Parent = gui
|
||||
print("parenting report abuse")
|
||||
if gui:FindFirstChild("BottomRightControl") and gui.BottomRightControl:FindFirstChild("ReportAbuse") then
|
||||
gui.BottomRightControl.ReportAbuse.Active = true
|
||||
elseif useOldDialog then
|
||||
gui.BottomRightControl.ReportAbuse.Active = true
|
||||
print("old stuff")
|
||||
else
|
||||
waitForChild(gui,"UserSettingsShield")
|
||||
waitForChild(gui.UserSettingsShield, "Settings")
|
||||
|
|
|
|||
|
|
@ -176,4 +176,5 @@ I AM GONNA TAKE YOUR COAT|SAY THANKS
|
|||
[stylish]Wear your heart on your sleeve! It's the only way to live!|Everything will fall into place, you'll see!
|
||||
[normal]If the entire world is getting banned by admins...|I'm taking a physgun with me.
|
||||
[stylish]If the entire world is getting banned by admins, I'm taking a physgun with me.
|
||||
After all, what fun is there in making sense?|I'm not a fan of puppeteers, but I've got a nagging fear that someone else is pulling at the strings!
|
||||
After all, what fun is there in making sense?|I'm not a fan of puppeteers, but I've got a nagging fear that someone else is pulling at the strings!
|
||||
If Novetus is so good, where's Novetus 2?|Where is it?
|
||||
Loading…
Reference in New Issue