moar changes

This commit is contained in:
Bitl 2023-11-27 14:17:52 -07:00
parent d4373d4bc6
commit 125631bb68
9 changed files with 1174 additions and 218 deletions

View File

@ -82,7 +82,7 @@ namespace Novetus.Core
/// </summary>
private static Dictionary<VCPPRedist, RedistInformation> _VCRedistToRedistKeysMap = new Dictionary<VCPPRedist, RedistInformation>()
{
[VCPPRedist.VCPP2005] = new RedistInformation(RedistKeyLocation.Products, new[] { "b25099274a207264182f8181add555d0" }),
[VCPPRedist.VCPP2005] = new RedistInformation(RedistKeyLocation.Products, new[] { "b25099274a207264182f8181add555d0", "c1c4f01781cc94c4c8fb1542c0981a2a" }),
[VCPPRedist.VCPP2008] = new RedistInformation(RedistKeyLocation.Products, new[] { "6E815EB96CCE9A53884E7857C57002F0" }),
[VCPPRedist.VCPP2012] = new RedistInformation(RedistKeyLocation.Dependencies, new[] { "{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}", "{95716cce-fc71-413f-8ad5-56c2892d4b3a}" })
};

View File

@ -1530,7 +1530,7 @@ namespace Novetus.Core
case ScriptType.Studio:
return "Studio";
case ScriptType.OutfitView:
return "3D Preview";
return "Avatar 3D Preview";
default:
return "N/A";
}

View File

@ -142,7 +142,6 @@ namespace Novetus.Core
SetWindowText(exe.MainWindowHandle, "Novetus Avatar 3D Preview "
+ GlobalVars.ProgramInformation.Version + " - "
+ clientname + " "
+ ScriptFuncs.Generator.GetNameForType(type)
+ RandomStringTitle());
break;
default:

View File

@ -158,7 +158,7 @@ namespace NovetusLauncher
string text = "Novetus has detected that the " + name + " are not installed."
+ "\n\nIt is recomended to download these dependencies from the Microsoft website."
+ "\n\nInstalling these will prevent errors upon starting up a client, like 'side-by-side configuration' errors.";
+ "Installing these will prevent errors upon starting up a client, like 'side-by-side configuration' errors.";
MessageBox.Show(text, "Novetus - Dependency Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}

View File

@ -1,3 +1,9 @@
EDGE Snapshot v23.8731.25671.2
Fixes:
- Improved the look of the 3D Preview on later clients.
- Fixed various issues related to the 3D Preview.
- Novetus now detects more VC++ 2005 redistributable installations.
----------------------------------------------------------------------------
EDGE Snapshot v23.8731.22692.1
Enhancements:
- Play Solo now has its own dedicated server component, much like the original Roblox feature. This means scripts in Play Solo are far more accurate to how they're depicted in multiplayer sessions.

View File

@ -769,6 +769,13 @@ function CS3DView(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorI
plr.Character.Animate:remove()
plr.Character.Health:remove()
plr.Character.Sound:remove()
plr.Character.RobloxTeam:remove()
game.GuiRoot.RightPalette:remove()
game.GuiRoot.ChatMenuPanel:remove()
game.GuiRoot.HealthHud:remove()
game.GuiRoot.ScoreHud:remove()
game.GuiRoot.MainMenu:remove()
local target = game.Workspace.Base.SpawnLocation
local camera = game.Workspace.CurrentCamera

View File

@ -776,6 +776,16 @@ function CS3DView(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorI
InitalizeClientAppearance(plr,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID,LeftArmColorID,RightArmColorID,LeftLegColorID,RightLegColorID,TShirtID,ShirtID,PantsID,FaceID,HeadID,ItemID,IconType)
wait(0.79)
LoadCharacterNew(newWaitForChild(plr,"Appearance"),plr.Character,false)
plr.Character.Animate:remove()
plr.Character.Health:remove()
plr.Character.Sound:remove()
plr.Character.RobloxTeam:remove()
game.GuiRoot.RightPalette:remove()
game.GuiRoot.ChatMenuPanel:remove()
game.GuiRoot.HealthHud:remove()
game.GuiRoot.ScoreHud:remove()
game.GuiRoot.MainMenu:remove()
local target = game.Workspace.Base.SpawnLocation
local camera = game.Workspace.CurrentCamera
@ -797,8 +807,6 @@ function CS3DView(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorI
end
local human = plr.Character.Humanoid
plr.Character.Animate:remove()
human.WalkSpeed = 0
human.Jumping:connect(fixJump)

File diff suppressed because it is too large Load Diff

View File

@ -9,6 +9,6 @@ ExtendedVersionNumber=True
//ExtendedVersionTemplate=%version% vX.23.%extended-revision% (%version-name%)
//ExtendedVersionTemplate=%version% Snapshot v23.%build%.%revision%.%extended-revision%
ExtendedVersionTemplate=EDGE Snapshot v23.%build%.%revision%.%extended-revision%
ExtendedVersionRevision=1
ExtendedVersionRevision=2
InitialBootup=False
IsLite=False