Hi there! You are currently browsing as a guest. Why not create an account? Then you get less ads, can thank creators, post feedback, keep a list of your favourites, and more!
MTS has all free content, all the time. Find out how YOU can help to keep it running. Tell me how...

TS4 SimRipper Classic: rip sims from savegames. V3.14.2.0, updated 4/19/2023

by CmarNYC Posted 4th Dec 2019 at 6:36 PM - Updated 4th Mar 2024 at 4:43 PM by Lyralei : adding updated link.
 
1997 Comments / Replies (Who?) - 1885 Feedback Posts, 111 Thanks Posts
Hide Thanks Posts for this thread (Show only feedback)
Page 80 of 80
Test Subject
#1976 Old 1st Mar 2024 at 1:07 AM
I'm sure someone else will carry on the torch and continue Cmar's work on this wonderful tool. I'd gladly contribute if I knew anything about programming/coding.
Test Subject
THANKS POST
#1977 Old 1st Mar 2024 at 1:53 AM
When is it gonna get back we really need the ripper runing
Test Subject
THANKS POST
#1978 Old 1st Mar 2024 at 4:30 AM
ChatGPT gave me this code saying the problem is solved but i don't have a clue what to do with it. If you undertand about creating programs then feel free to use and try to solve the problem!

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;

namespace SimsGame
{
public class CASP
{
public TGI tgi;
public bool notBaseGame;
public string package;

public string PartName
{
get { return this.partname; }
set { this.partname = value; }
}
public float SortPriority
{
get { return this.sortPriority; }
set { this.sortPriority = value; }
}
public ushort SwatchOrder
{
get { return this.swatchOrder; }
set { this.swatchOrder = value; }
}
public byte CASparameterFlags
{
get { return this.parameterFlags; }
set { this.parameterFlags = value; }
}
public byte CASparameterFlags2
{
get { return this.parameterFlags2; }
set { this.parameterFlags2 = value; }
}
public ulong ExcludePartFlags
{
get { return this.excludePartFlags; }
set { this.excludePartFlags = value; }
}
public ulong ExcludePartFlags2
{
get { return this.excludePartFlags2; }
set { this.excludePartFlags2 = value; }
}
public ulong ExcludeModifierRegionFlags
{
get { return this.excludeModifierRegionFlags; }
set { this.excludeModifierRegionFlags = value; }
}
public BodyType BodyType
{
get { return (BodyType)this.bodyType; }
set { this.bodyType = (uint)value; }
}
public uint BodyTypeNumeric
{
get { return this.bodyType; }
set { this.bodyType = value; this.UVoverride = value; }
}
public BodyType SharedUVSpace
{
get { return (BodyType)this.UVoverride; }
set { this.UVoverride = (uint)value; }
}
public uint SharedUVNumeric
{
get { return this.UVoverride; }
set { this.UVoverride = value; }
}
public uint BodySubTypeNumeric
{
get { return this.bodySubType; }
set { this.bodySubType = value; }
}
public List<uint[]> CategoryTags
{
get
{
List<uint[]> tmp = new List<uint[]>();
foreach (PartTag t in this.categoryTags)
{
tmp.Add(new uint[] { t.FlagCategory, t.FlagValue });
}
return tmp;
}
set
{
PartTag[] tmp = new PartTag[value.Count];
for (int i = 0; i < value.Count; i++)
{
tmp[i] = new PartTag((ushort)value[i][0], value[i][1]);
}
this.categoryTags = tmp;
this.tagCount = value.Count;
}
}

public Species Species
{
get { return (Species)this.species; }
set { this.species = (uint)value; }
}
public int SpeciesNumeric
{
get { return (int)this.species; }
}

public AgeGender age
{
get { return (AgeGender)((uint)this.ageGender & 0xFF); }
}
public AgeGender gender
{
get { return (AgeGender)((uint)this.ageGender & 0xFF00); }
}

public uint PackID
{
get { return this.packID; }
}

public bool DisallowOppositeGender
{
get { return (this.parameterFlags & (byte)CASParamFlag.RestrictOppositeGender) > 0; }
}
public bool DisallowOppositeFrame
{
get { return (this.parameterFlags2 & (byte)CASParamFlag2.RestrictOppositeFrame) > 0; }
}

public bool HasMesh
{
get { return this.lods != null && this.lods.Length > 0; }
}

public TGI[] MeshParts(int LOD)
{
List<TGI> tgi = new List<TGI>();
foreach (MeshDesc m in lods)
{
if (m.lod == LOD)
{
for (int i = 0; i < m.indexes.Length; i++)
{
tgi.Add(IGTtable[m.indexes[i]]);
}
}
}
return tgi.ToArray();
}

public int getLOD(TGI tgi)
{
for (int i = 0; i < lods.Length; i++)
{
for (int j = 0; j < lods[i].indexes.Length; j++)
{
if (IGTtable[lods[i].indexes[j]].Equals(tgi))
{
return lods[i].lod;
}
}
}
return -1;
}

public int[] getLODandPart(TGI tgi)
{
for (int i = 0; i < lods.Length; i++)
{
for (int j = 0; j < lods[i].indexes.Length; j++)
{
if (IGTtable[lods[i].indexes[j]].Equals(tgi))
{
return new int[] { lods[i].lod, j };
}
}
}
return null;
}

public bool MultipleMeshParts
{
get
{
for (int i = 0; i < lods.Length; i++)
{
if (this.lods[i].indexes.Length > 1) return true;
}
return false;
}
}

public void RemoveMeshLink(TGI meshTGI)
{
foreach (MeshDesc md in this.lods)
{
md.removeMeshLink(meshTGI, this.LinkList);
}
}

public void AddMeshLink(TGI meshTGI, int lod)
{
foreach (MeshDesc md in this.lods)
{
if (md.lod == lod)
{
md.addMeshLink(meshTGI, this.LinkList);
}
}
}

public uint[] ColorList
{
get
{
uint[] tmp = new uint[this.colorData.Length];
Array.Copy(this.colorData, tmp, this.colorData.Length);
return tmp;
}
set
{
uint[] tmp = new uint[value.Length];
Array.Copy(value, tmp, value.Length);
this.colorData = tmp;
}
}

public CASP(BinaryReader br)
{
br.BaseStream.Position = 0;
if (br.BaseStream.Length < 32) throw new CASPEmptyException("Attempt to read empty CASP");
version = br.ReadUInt32();
offset = br.ReadUInt32();
presetCount = br.ReadInt32();
partname = new BinaryReader(br.BaseStream, Encoding.BigEndianUnicode).ReadString();
sortPriority = br.ReadSingle();
swatchOrder = br.ReadUInt16();
outfitID = br.ReadUInt32();
materialHash = br.ReadUInt32();
parameterFlags = br.ReadByte();
if (this.version >= 39) parameterFlags2 = br.ReadByte();
excludePartFlags = br.ReadUInt64();
if (version >= 41)
{
excludePartFlags2 = br.ReadUInt64();
}
if (version > 36)
{
excludeModifierRegionFlags = br.ReadUInt64();
}
else
{
excludeModifierRegionFlags = br.ReadUInt32();
}
tagCount = br.ReadInt32();
categoryTags = new PartTag[tagCount];
for (int i = 0; i < tagCount; i++)
{
categoryTags[i] = new PartTag(br, version >= 37 ? 4 : 2);
}
price = br.ReadUInt32();
titleKey = br.ReadUInt32();
partDescKey = br.ReadUInt32();
if (version >= 0x2B) unknown = br.ReadUInt32();
textureSpace = br.ReadByte();
bodyType = br.ReadUInt32();
bodySubType = br.ReadUInt32();
ageGender = (AgeGender)br.ReadUInt32();
if (this.version >= 32) species = br.ReadUInt32();
if (this.version >= 34)
{
packID = br.ReadUInt16();
packFlags = br.ReadByte();
Reserved2Set0 = br.ReadBytes(9);
}
else
{
Unused2 = br.ReadByte();
if (Unused2 > 0) Unused3 = br.ReadByte();
}
usedColorCount = br.ReadByte();
colorData = new uint[usedColorCount];
for (int i = 0; i < usedColorCount; i++)
{
colorData[i] = br.ReadUInt32();
}
buffResKey = br.ReadByte();
swatchIndex = br.ReadByte();
if (version >= 28)
{
VoiceEffect = br.ReadUInt64();
}
if (version >= 30)
{
usedMaterialCount = br.ReadByte();
if (usedMaterialCount > 0)
{
materialSetUpperBodyHash = br.ReadUInt32();
materialSetLowerBodyHash = br.ReadUInt32();
materialSetShoesHash = br.ReadUInt32();
}
}
if (version >= 31)
{
occultBitField = br.ReadUInt32();
}
if (version >= 0x2E)
{
unknown1 = br.ReadUInt64();
}
if (version >= 38)
{
oppositeGenderPart = br.ReadUInt64();
}
if (version >= 39)
{
fallbackPart = br.ReadUInt64();
}
if (version >= 44)
{
opacitySlider = new OpacitySettings(br);
hueSlider = new SliderSettings(br);
saturationSlider = new SliderSettings(br);
brightnessSlider = new SliderSettings(br);
}
if (version >= 0x2E)
{
unknownCount = br.ReadByte();
unknown2 = br.ReadBytes(unknownCount);
}
nakedKey = br.ReadByte();
parentKey = br.ReadByte();
sortLayer = br.ReadInt32();
lodCount = br.ReadByte();
lods = new MeshDesc[lodCount];
for (int i = 0; i < lodCount; i++)
{
lods[i] = new MeshDesc(br);
}
numSlotKeys = br.ReadByte();
slotKeys = br.ReadBytes(numSlotKeys);
textureIndex = br.ReadByte();
shadowIndex = br.ReadByte();
compositionMethod = br.ReadByte();
regionMapIndex = br.ReadByte();
numOverrides = br.ReadByte();
overrides = new Override[numOverrides];
for (int i = 0; i < numOverrides; i++)
{
overrides[i] = new Override(br);
}
normalMapIndex = br.ReadByte();
specularIndex = br.ReadByte();
if (version >= 27)
{
UVoverride = br.ReadUInt32();
}
if (version >= 29)
{
emissionIndex = br.ReadByte();
}
if (version >= 42)
{
reserved = br.ReadByte();
}
IGTcount = br.ReadByte();
IGTtable = new TGI[IGTcount];
for (int i = 0; i < IGTcount; i++)
{
IGTtable[i] = new TGI(br, TGI.TGIsequence.IGT);
}
}

public void Write(BinaryWriter bw)
{
bw.Write(version);
long offsetPos = bw.BaseStream.Position;
bw.Write(0);
bw.Write(presetCount);
new BinaryWriter(bw.BaseStream, Encoding.BigEndianUnicode).Write(partname);
bw.Write(sortPriority);
bw.Write(swatchOrder);
bw.Write(outfitID);
bw.Write(materialHash);
bw.Write(parameterFlags);
if (this.version >= 39) bw.Write(parameterFlags2);
bw.Write(excludePartFlags);
if (version >= 41)
{
bw.Write(excludePartFlags2);
}
if (version > 36)
{
bw.Write(excludeModifierRegionFlags);
}
else
{
bw.Write((uint)excludeModifierRegionFlags);
}
bw.Write(tagCount);
for (int i = 0; i < tagCount; i++)
{
categoryTags[i].Write(bw, version >= 37 ? 4 : 2);
}
bw.Write(price);
bw.Write(titleKey);
bw.Write(partDescKey);
if (version >= 0x2B) bw.Write(unknown);
bw.Write(textureSpace);
bw.Write(bodyType);
bw.Write(bodySubType);
bw.Write((uint)this.ageGender);
if (this.version >= 32) bw.Write(species);
if (this.version >= 34)
{
bw.Write(packID);
bw.Write(packFlags);
bw.Write(Reserved2Set0);
}
else
{
bw.Write(Unused2);
if (Unused2 > 0) bw.Write(Unused3);
}
bw.Write(usedColorCount);
for (int i = 0; i < usedColorCount; i++)
{
bw.Write(colorData[i]);
}
bw.Write(buffResKey);
bw.Write(swatchIndex);
if (version >= 28)
{
bw.Write(VoiceEffect);
}
if (version >= 30)
{
bw.Write(usedMaterialCount);
if (usedMaterialCount > 0)
{
bw.Write(materialSetUpperBodyHash);
bw.Write(materialSetLowerBodyHash);
bw.Write(materialSetShoesHash);
}
}
if (version >= 31)
{
bw.Write(occultBitField);
}
if (version >= 0x2E)
{
bw.Write(unknown1);
}
if (version >= 38)
{
bw.Write(oppositeGenderPart);
}
if (version >= 39)
{
bw.Write(fallbackPart);
}
if (version >= 44)
{
opacitySlider.Write(bw);
hueSlider.Write(bw);
saturationSlider.Write(bw);
brightnessSlider.Write(bw);
}
if (version >= 0x2E)
{
bw.Write(unknownCount);
bw.Write(unknown2);
}
bw.Write(nakedKey);
bw.Write(parentKey);
bw.Write(sortLayer);
bw.Write(lodCount);
for (int i = 0; i < lodCount; i++)
{
lods[i].Write(bw);
}
bw.Write(numSlotKeys);
bw.Write(slotKeys);
bw.Write(textureIndex);
bw.Write(shadowIndex);
bw.Write(compositionMethod);
bw.Write(regionMapIndex);
bw.Write(numOverrides);
for (int i = 0; i < numOverrides; i++)
{
overrides[i].Write(bw);
}
bw.Write(normalMapIndex);
bw.Write(specularIndex);
if (version >= 27)
{
bw.Write(UVoverride);
}
if (version >= 29)
{
bw.Write(emissionIndex);
}
if (version >= 42)
{
bw.Write(reserved);
}
bw.Write(IGTcount);
for (int i = 0; i < IGTcount; i++)
{
IGTtable[i].Write(bw);
}
long currentPosition = bw.BaseStream.Position;
bw.BaseStream.Position = offsetPos;
bw.Write((uint)currentPosition);
bw.BaseStream.Position = currentPosition;
}

public byte RemoveKey(byte index)
{
TGI empty_tgi = new TGI(0, 0, 0);
if (this.IGTtable[index].Equals(empty_tgi) || index < 0 || index > this.IGTtable.Length - 1) return index; //if not needed or invalid index, don't do anything.
byte empty_index = 0;
bool found = false;
for (int i = 0; i < this.IGTtable.Length; i++)
{
if (this.IGTtable[i].Equals(empty_tgi))
{
empty_index = (byte)i;
found = true;
break;
}
}

if (found)
{
return empty_index;
}
else
{
TGI[] newTGIlist = new TGI[this.IGTtable.Length + 1];
Array.Copy(this.IGTtable, newTGIlist, this.IGTtable.Length);
newTGIlist[this.IGTtable.Length] = empty_tgi;
this.IGTtable = newTGIlist;
return (byte)(this.IGTtable.Length - 1);
}
}

public void RebuildLinkList()
{
List<TGI> newLinks = new List<TGI>();
newLinks.Add(new TGI(0, 0, 0));

this.buffResKey = AddLink(this.buffResKey, newLinks);
this.swatchIndex = AddLink(this.swatchIndex, newLinks);
this.nakedKey = AddLink(this.nakedKey, newLinks);
this.parentKey = AddLink(this.parentKey, newLinks);
for (int i = 0; i < this.lodCount; i++)
{
for (int j = 0; j < this.lods[i].indexes.Length; j++)
{
this.lods[i].indexes[j] = AddLink(this.lods[i].indexes[j], newLinks);
}
}
for (int i = 0; i < this.numSlotKeys; i++)
{
this.slotKeys[i] = AddLink(this.slotKeys[i], newLinks);
}
this.textureIndex = AddLink(this.textureIndex, newLinks);
this.shadowIndex = AddLink(this.shadowIndex, newLinks);
this.regionMapIndex = AddLink(this.regionMapIndex, newLinks);
this.normalMapIndex = AddLink(this.normalMapIndex, newLinks);
this.specularIndex = AddLink(this.specularIndex, newLinks);
this.emissionIndex = AddLink(this.emissionIndex, newLinks);
this.IGTtable = newLinks.ToArray();
}

internal byte AddLink(byte indexIn, List<TGI> linkList)
{
if (this.IGTtable[indexIn].Equals(new TGI(0, 0, 0)) || indexIn < 0 || indexIn > IGTtable.Length) // correct invalid links
{
return (byte)0;
}
else
{
byte tmp = (byte)linkList.Count;
linkList.Add(this.IGTtable[indexIn]);
return tmp;
}
}

internal override void Write(BinaryWriter bw)
{
bw.Write(this.minimum);
bw.Write(this.maximum);
bw.Write(this.increment);
}

[global::System.Serializable]
public class CASPEmptyException : ApplicationException
{
public CASPEmptyException() { }
public CASPEmptyException(string message) : base(message) { }
public CASPEmptyException(string message, Exception inner) : base(message, inner) { }
protected CASPEmptyException(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context)
: base(info, context) { }
}

}
}
Test Subject
THANKS POST
#1979 Old 1st Mar 2024 at 4:42 AM
I don't understand a clue of making programs but i want to help. So please, don't be rude at me.
Lab Assistant
#1980 Old 1st Mar 2024 at 8:16 AM
Ripped the sims I needed before updating the game, as soon as I heard the tool is broken for the recent patch, but no doubt I'll need to do that again after some time.
It's one of the most useful tools that were made for this game, so hopefully someone tallented will pick up the Cmar's baton and keep maintaining it.
Test Subject
THANKS POST
#1981 Old 1st Mar 2024 at 6:04 PM
Couldn't the tool be integrated into Sims 4 Studio ?

https://sims4studio.com/thread/2978...ndows-star-open

And then we need a Sims 4 Studio-Addon for Blender 4.0 !

https://www.blender.org/download/releases/4-0/
Test Subject
#1982 Old 1st Mar 2024 at 8:27 PM
The Sims 4 Ripper is not working on my new laptop and idk, why...

Error:
See the end of this message for details on invoking
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.IndexOutOfRangeException: Index was outside the bounds of the array.
at TS4SimRipper.CASP.MeshParts(Int32 LOD)
at TS4SimRipper.Form1.GetCurrentModel(Boolean skinOnly)
at TS4SimRipper.Form1.GetCurrentModel()
at TS4SimRipper.Form1.DisplaySim(SimData sim, SimOccult occultState)
at TS4SimRipper.Form1.sims_listBox_SelectedIndexChanged(Object sender, EventArgs e)
at System.Windows.Forms.ListBox.OnSelectedIndexChanged(EventArgs e)
at System.Windows.Forms.ListBox.WmReflectCommand(Message& m)
at System.Windows.Forms.ListBox.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9181.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
----------------------------------------
TS4SimRipper
Assembly Version: 1.0.0.0
Win32 Version: 1.0.0.0
CodeBase: file:///C:/Users/Venus/OneDrive/Desktop/MTS_CmarNYC_2107382_TS4SimRipper_3_14_2_0/TS4SimRipper_3_14_2_0/TS4SimRipper.exe
----------------------------------------
System.Windows.Forms
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9181.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9220.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
s4pi.Package
Assembly Version: 2002.10.2050.28502
Win32 Version: 2002.10.2050.28502
CodeBase: file:///C:/Users/Venus/OneDrive/Desktop/MTS_CmarNYC_2107382_TS4SimRipper_3_14_2_0/TS4SimRipper_3_14_2_0/s4pi.Package.DLL
----------------------------------------
s4pi.Interfaces
Assembly Version: 2002.10.2049.28497
Win32 Version: 2002.10.2049.28497
CodeBase: file:///C:/Users/Venus/OneDrive/Desktop/MTS_CmarNYC_2107382_TS4SimRipper_3_14_2_0/TS4SimRipper_3_14_2_0/s4pi.Interfaces.DLL
----------------------------------------
s4pi.Settings
Assembly Version: 2103.7.1628.20645
Win32 Version: 2103.7.1628.20645
CodeBase: file:///C:/Users/Venus/OneDrive/Desktop/MTS_CmarNYC_2107382_TS4SimRipper_3_14_2_0/TS4SimRipper_3_14_2_0/s4pi.Settings.DLL
----------------------------------------
System.Core
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9220.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Configuration
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
WindowsFormsIntegration
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9139.0 built by: NET481REL1LAST_B
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/WindowsFormsIntegration/v4.0_4.0.0.0__31bf3856ad364e35/WindowsFormsIntegration.dll
----------------------------------------
PresentationFramework
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9220.0
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.dll
----------------------------------------
WindowsBase
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9220.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
----------------------------------------
PresentationCore
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9220.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_64/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll
----------------------------------------
System.Xaml
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9220.0 built by: NET481REL1LAST_C
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/System.Xaml/v4.0_4.0.0.0__b77a5c561934e089/System.Xaml.dll
----------------------------------------
PresentationFramework.Aero2
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0 built by: NET481REL1
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.Aero2/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.Aero2.dll
----------------------------------------
PresentationFramework-SystemXml
Assembly Version: 4.0.0.0
Win32 Version: 4.8.9032.0
CodeBase: file:///C:/windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemXml/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemXml.dll
----------------------------------------
protobuf-net
Assembly Version: 2.0.0.668
Win32 Version: 2.0.0.668
CodeBase: file:///C:/Users/Venus/OneDrive/Desktop/MTS_CmarNYC_2107382_TS4SimRipper_3_14_2_0/TS4SimRipper_3_14_2_0/protobuf-net.DLL
----------------------------------------
DDSPanel
Assembly Version: 2002.10.2050.28504
Win32 Version: 2002.10.2050.28504
CodeBase: file:///C:/Users/Venus/OneDrive/Desktop/MTS_CmarNYC_2107382_TS4SimRipper_3_14_2_0/TS4SimRipper_3_14_2_0/DDSPanel.DLL
----------------------------------------
s4pi.ImageResource
Assembly Version: 2104.21.1540.19202
Win32 Version: 2104.21.1540.19202
CodeBase: file:///C:/Users/Venus/OneDrive/Desktop/MTS_CmarNYC_2107382_TS4SimRipper_3_14_2_0/TS4SimRipper_3_14_2_0/s4pi.ImageResource.DLL
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.
Lab Assistant
#1983 Old 1st Mar 2024 at 10:59 PM
Quote: Originally posted by jennio1000
The Sims 4 Ripper is not working on my new laptop and idk, why...


It was broken by patch 1.105 this week.

= luthienrising (on the Forums and AHQ)
Test Subject
THANKS POST
#1984 Old 2nd Mar 2024 at 4:53 AM
The updated version is now found in the Sims 4 Studio forums in case anybody isn't aware.
https://sims4studio.com/thread/34354/ts4-sim-ripper
Test Subject
#1985 Old 3rd Mar 2024 at 10:04 AM
Quote: Originally posted by Bees
Hello!
My condolences to the creator's family. I was wondering if anyone has access to the updated source code through github and if they do would they mind sending it to me? I have someone who can update the program or keep the program running. I ran into this error today after yesterdays update.
Best regards.


SimRipper was updated by Andrew (S4S creator) for the patch 1.105 and support for horses was also just added.
https://sims4studio.com/thread/34354/ts4-sim-ripper

The source code is linked in the thread if someone is interested in working on the tools.
Test Subject
#1986 Old 4th Mar 2024 at 7:42 AM
Quote: Originally posted by SimplyAnjuta
SimRipper was updated by Andrew (S4S creator) for the patch 1.105 and support for horses was also just added.
https://sims4studio.com/thread/34354/ts4-sim-ripper

The source code is linked in the thread if someone is interested in working on the tools.


Wonderful !! I will try this right away !
Test Subject
#1987 Old 4th Mar 2024 at 8:36 AM
I have just tested it, it works perfectly well ! A great, great, GREAT thank you to Andrew !!! ♥♥♥

Test Subject
#1988 Old 8th Mar 2024 at 8:08 PM
Default Issues with the program
Hi, I recently downloaded the program is the first time I use it and when I import the sim from the save game file I get an error, I'll paste the screenshot and the text that I get to see if anyone has knowledge of why I get this

https://i.imgur.com/czNnz6T.png
Consulte el final de este mensaje para obtener más detalles sobre cómo invocar a la depuración
Just-In-Time (JIT) en lugar de a este cuadro de diálogo.

************** Texto de la excepción **************
System.NullReferenceException: Object reference not set to an instance of an object.
at TS4SimRipper.Form1.DisplaySim(SimData sim, SimOccult occultState) in C:\Users\A\Desktop\MTS_CmarNYC_2107383_TS4SimRipperSource4-19-2023\Form1.cs:line 801
at System.Windows.Forms.ListBox.OnSelectedIndexChanged(EventArgs e)
at System.Windows.Forms.ListBox.WmReflectCommand(Message& m)
at System.Windows.Forms.ListBox.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, WM msg, IntPtr wparam, IntPtr lparam)


************** Ensamblados cargados **************
System.Private.CoreLib
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Private.CoreLib.dll
----------------------------------------
TS4SimRipper
Versión del ensamblado: 1.0.0.0
Versión Win32: 1.0.0.0
Código base: file:///D:/Documents/Gameplay-Sims4/SimRipper/TS4SimRipper.dll
----------------------------------------
System.Runtime
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Runtime.dll
----------------------------------------
System.Drawing.Common
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/System.Drawing.Common.dll
----------------------------------------
System.Windows.Forms
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7001
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/System.Windows.Forms.dll
----------------------------------------
System.Text.Encoding.CodePages
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Text.Encoding.CodePages.dll
----------------------------------------
System.ComponentModel.Primitives
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.ComponentModel.Primitives.dll
----------------------------------------
System.Windows.Forms.Primitives
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7001
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/System.Windows.Forms.Primitives.dll
----------------------------------------
System.Runtime.InteropServices
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Runtime.InteropServices.dll
----------------------------------------
System.Drawing.Primitives
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Drawing.Primitives.dll
----------------------------------------
System.Collections.Specialized
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Collections.Specialized.dll
----------------------------------------
System.Diagnostics.TraceSource
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Diagnostics.TraceSource.dll
----------------------------------------
System.Collections
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Collections.dll
----------------------------------------
Microsoft.Win32.Registry
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/Microsoft.Win32.Registry.dll
----------------------------------------
System.Threading
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Threading.dll
----------------------------------------
s4pi.Package
Versión del ensamblado: 2002.10.2050.28502
Versión Win32: 2002.10.2050.28502
Código base: file:///D:/Documents/Gameplay-Sims4/SimRipper/s4pi.Package.dll
----------------------------------------
s4pi.Interfaces
Versión del ensamblado: 2104.21.1514.18445
Versión Win32: 2104.21.1514.18445
Código base: file:///D:/Documents/Gameplay-Sims4/SimRipper/s4pi.Interfaces.dll
----------------------------------------
mscorlib
Versión del ensamblado: 4.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/mscorlib.dll
----------------------------------------
System.Configuration.ConfigurationManager
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/System.Configuration.ConfigurationManager.dll
----------------------------------------
System.ObjectModel
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.ObjectModel.dll
----------------------------------------
System.Core
Versión del ensamblado: 4.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Core.dll
----------------------------------------
System.Linq
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Linq.dll
----------------------------------------
System
Versión del ensamblado: 4.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.dll
----------------------------------------
s4pi.Settings
Versión del ensamblado: 2104.21.1515.18463
Versión Win32: 2104.21.1515.18463
Código base: file:///D:/Documents/Gameplay-Sims4/SimRipper/s4pi.Settings.dll
----------------------------------------
PresentationCore
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7003
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/PresentationCore.dll
----------------------------------------
Microsoft.Win32.Primitives
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/Microsoft.Win32.Primitives.dll
----------------------------------------
System.ComponentModel.EventBasedAsync
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.ComponentModel.EventBasedAsync.dll
----------------------------------------
System.Threading.Thread
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Threading.Thread.dll
----------------------------------------
Accessibility
Versión del ensamblado: 4.0.0.0
Versión Win32: 6.0.2724.7001
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/Accessibility.dll
----------------------------------------
System.ComponentModel.TypeConverter
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.ComponentModel.TypeConverter.dll
----------------------------------------
WindowsFormsIntegration
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7003
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/WindowsFormsIntegration.dll
----------------------------------------
PresentationFramework
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7003
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/PresentationFramework.dll
----------------------------------------
WindowsBase
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7003
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/WindowsBase.dll
----------------------------------------
System.Xaml
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7003
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/System.Xaml.dll
----------------------------------------
DirectWriteForwarder
Versión del ensamblado: 6.0.2.0
Versión Win32: 6,0,2724,7003 @Commit: 12a1b47c5b9b55841e0aa39bb36c15ac05d4ce8a
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/DirectWriteForwarder.dll
----------------------------------------
System.Runtime.Extensions
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Runtime.Extensions.dll
----------------------------------------
System.Runtime.CompilerServices.VisualC
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Runtime.CompilerServices.VisualC.dll
----------------------------------------
System.Diagnostics.Debug
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Diagnostics.Debug.dll
----------------------------------------
System.Collections.NonGeneric
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Collections.NonGeneric.dll
----------------------------------------
System.Numerics.Vectors
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Numerics.Vectors.dll
----------------------------------------
Microsoft.Win32.SystemEvents
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/Microsoft.Win32.SystemEvents.dll
----------------------------------------
System.Collections.Concurrent
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Collections.Concurrent.dll
----------------------------------------
System.ComponentModel
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.ComponentModel.dll
----------------------------------------
System.Memory
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Memory.dll
----------------------------------------
System.Runtime.Loader
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Runtime.Loader.dll
----------------------------------------
System.Windows.Forms.resources
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7001
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/es/System.Windows.Forms.resources.dll
----------------------------------------
System.Private.Uri
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Private.Uri.dll
----------------------------------------
System.Runtime.InteropServices.RuntimeInformation
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Runtime.InteropServices.RuntimeInformation.dll
----------------------------------------
System.Xml.ReaderWriter
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Xml.ReaderWriter.dll
----------------------------------------
System.Private.Xml
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Private.Xml.dll
----------------------------------------
System.Net.WebClient
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Net.WebClient.dll
----------------------------------------
System.Text.Encoding.Extensions
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Text.Encoding.Extensions.dll
----------------------------------------
UIAutomationTypes
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7003
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/UIAutomationTypes.dll
----------------------------------------
System.IO.Packaging
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/System.IO.Packaging.dll
----------------------------------------
System.Net.Primitives
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Net.Primitives.dll
----------------------------------------
System.Threading.ThreadPool
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Threading.ThreadPool.dll
----------------------------------------
System.Windows.Extensions
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/System.Windows.Extensions.dll
----------------------------------------
UIAutomationProvider
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7003
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/UIAutomationProvider.dll
----------------------------------------
System.Diagnostics.Process
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Diagnostics.Process.dll
----------------------------------------
PresentationFramework.Aero2
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7003
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/PresentationFramework.Aero2.dll
----------------------------------------
System.Resources.Extensions
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/System.Resources.Extensions.dll
----------------------------------------
System.Drawing
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7001
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/System.Drawing.dll
----------------------------------------
System.Security.Cryptography.Algorithms
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Security.Cryptography.Algorithms.dll
----------------------------------------
System.Security.Cryptography.Primitives
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Security.Cryptography.Primitives.dll
----------------------------------------
System.Text.RegularExpressions
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Text.RegularExpressions.dll
----------------------------------------
System.Runtime.Serialization.Formatters
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Runtime.Serialization.Formatters.dll
----------------------------------------
System.Xml.XmlSerializer
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Xml.XmlSerializer.dll
----------------------------------------
System.Runtime.CompilerServices.Unsafe
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Runtime.CompilerServices.Unsafe.dll
----------------------------------------
System.Diagnostics.Tracing
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Diagnostics.Tracing.dll
----------------------------------------
PresentationFramework-SystemXml
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7003
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/PresentationFramework-SystemXml.dll
----------------------------------------
PresentationCore.resources
Versión del ensamblado: 6.0.2.0
Versión Win32: 6.0.2724.7003
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.WindowsDesktop.App/6.0.27/es/PresentationCore.resources.dll
----------------------------------------
protobuf-net.Core
Versión del ensamblado: 3.0.0.0
Versión Win32: 3.2.30.709
Código base: file:///D:/Documents/Gameplay-Sims4/SimRipper/protobuf-net.Core.dll
----------------------------------------
protobuf-net
Versión del ensamblado: 3.0.0.0
Versión Win32: 3.2.30.709
Código base: file:///D:/Documents/Gameplay-Sims4/SimRipper/protobuf-net.dll
----------------------------------------
System.Reflection.Emit
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Reflection.Emit.dll
----------------------------------------
System.Reflection.Emit.Lightweight
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Reflection.Emit.Lightweight.dll
----------------------------------------
System.Reflection.Emit.ILGeneration
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Reflection.Emit.ILGeneration.dll
----------------------------------------
System.Reflection.Primitives
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Reflection.Primitives.dll
----------------------------------------
Anonymously Hosted DynamicMethods Assembly
Versión del ensamblado: 0.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Private.CoreLib.dll
----------------------------------------
System.Collections.Immutable
Versión del ensamblado: 7.0.0.0
Versión Win32: 7.0.22.51805
Código base: file:///D:/Documents/Gameplay-Sims4/SimRipper/System.Collections.Immutable.dll
----------------------------------------
DDSPanel
Versión del ensamblado: 2002.10.2050.28504
Versión Win32: 2002.10.2050.28504
Código base: file:///D:/Documents/Gameplay-Sims4/SimRipper/DDSPanel.dll
----------------------------------------
s4pi.ImageResource
Versión del ensamblado: 2104.21.1513.18410
Versión Win32: 2104.21.1513.18410
Código base: file:///D:/Documents/Gameplay-Sims4/SimRipper/s4pi.ImageResource.dll
----------------------------------------
System.Linq.Parallel
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Linq.Parallel.dll
----------------------------------------
System.Console
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Console.dll
----------------------------------------
System.Diagnostics.StackTrace
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Diagnostics.StackTrace.dll
----------------------------------------
System.Reflection.Metadata
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.Reflection.Metadata.dll
----------------------------------------
System.IO.Compression
Versión del ensamblado: 6.0.0.0
Versión Win32: 6.0.2724.6912
Código base: file:///C:/Program%20Files/dotnet/shared/Microsoft.NETCore.App/6.0.27/System.IO.Compression.dll
----------------------------------------

************** Depuración JIT **************
Test Subject
#1989 Old 10th Mar 2024 at 8:12 AM
Hi there - please see messages above and the announcement on the main page. Sadly, CmarNYC, the creator of the tools, passed away last year and the tools broke with the last game update. They were now updated by Andrew (S4S creator) and the updated version is available on the S4S forum.

Quote: Originally posted by lesssacosta
Hi, I recently downloaded the program is the first time I use it and when I import the sim from the save game file I get an error, I'll paste the screenshot and the text that I get to see if anyone has knowledge of why I get this [...]
Test Subject
#1990 Old 14th Mar 2024 at 7:26 AM
Hello! I just recently downloaded the latest version of this mod for the first time, and I received an error while the application was starting up. The error stated, "Error setting up frame modifiers
Object reference not set to an instance of an object.
at TS4SimRipper.Form1.SetupMorphsToSMOD(Strings& errorMsg) in
C:\Users\A\Desktop\CmarNYC_TS4SimRipperSource\GameFileHandler.cs:line 419
at TS4SimRipper.Form1..ctor() in
C:\Users\A\Desktop\CmarNYC_TS4SimRipperSource\Form1.cs:line 113"

Is there anyway anyone can help me with this error? Or is there anyone who can point me in the right direction of who can help me get this setup correctly?
My pc is a Windows 64-bit and I downloaded the latest version 3.14.2.3.
Test Subject
#1991 Old 16th Mar 2024 at 3:59 PM
The only instance of this error I can find is on page 75, where Cmar suggested it shouldn't occur as long as the game is a legitimate copy/is installed correctly.

Quote:
"That error means SimRipper can't find or can't access some of the game files it needs. This might affect the sim's appearance under some circumstances."

"If you have a legitimate game installed correctly, those resources should be there."



Quote: Originally posted by iarivers3
Hello! I just recently downloaded the latest version of this mod for the first time, and I received an error while the application was starting up. The error stated, "Error setting up frame modifiers
Object reference not set to an instance of an object.
at TS4SimRipper.Form1.SetupMorphsToSMOD(Strings& errorMsg) in
C:\Users\A\Desktop\CmarNYC_TS4SimRipperSource\GameFileHandler.cs:line 419
at TS4SimRipper.Form1..ctor() in
C:\Users\A\Desktop\CmarNYC_TS4SimRipperSource\Form1.cs:line 113"

Is there anyway anyone can help me with this error? Or is there anyone who can point me in the right direction of who can help me get this setup correctly?
My pc is a Windows 64-bit and I downloaded the latest version 3.14.2.3.
Test Subject
#1992 Old 18th Mar 2024 at 2:39 AM
Quote: Originally posted by SimplyAnjuta
The only instance of this error I can find is on page 75, where Cmar suggested it shouldn't occur as long as the game is a legitimate copy/is installed correctly.


Hello, thank you for the response. My game and all of my DLCs are legitimate, so I am not sure what was is wrong. Originally, I was a Mac player (on Origin) before I switched over to Windows (EA App), and I haven't had any in-game issues so I am not sure if I did something wrong while switching over. This was my first time trying to install Sim Ripper because I wanted to try out blender for the first time, so do you think there is anything I can do to fix this? Or should I give up lol.

Thanks!
Test Subject
#1993 Old 19th Mar 2024 at 8:12 PM
I have no idea, unfortunately. You could try if repairing the game helps. If you like, you can drop by in our Discord server for pose makers ( https://discord.com/invite/myJmCVN ). There are a few people there using SimRipper. Maybe someone has an idea or we can at least try to trouble shoot to see what might be wrong. If there's an actual issue, you can also try reporting it to Andrew.

Quote: Originally posted by iarivers3
Hello, thank you for the response. My game and all of my DLCs are legitimate, so I am not sure what was is wrong. Originally, I was a Mac player (on Origin) before I switched over to Windows (EA App), and I haven't had any in-game issues so I am not sure if I did something wrong while switching over. This was my first time trying to install Sim Ripper because I wanted to try out blender for the first time, so do you think there is anything I can do to fix this? Or should I give up lol.

Thanks!
Test Subject
#1994 Old 20th Mar 2024 at 9:05 AM
Default Ripper not opening character
Hello, when I try to open any character in SimRipper, I get the following message, as seen on the index image. I also get the following log. Is there a way to solve this? Thank you!

Consulte o final desta mensagem para obter detalhes sobre como chamar a
depuração just-in-time (JIT) em vez desta caixa de diálogo.

************** Texto de Exceção **************
System.IndexOutOfRangeException: O índice estava fora dos limites da matriz.
em TS4SimRipper.CASP.MeshParts(Int32 LOD)
em TS4SimRipper.Form1.GetCurrentModel(Boolean skinOnly)
em TS4SimRipper.Form1.GetCurrentModel()
em TS4SimRipper.Form1.DisplaySim(SimData sim, SimOccult occultState)
em TS4SimRipper.Form1.sims_listBox_SelectedIndexChanged(Object sender, EventArgs e)
em System.Windows.Forms.ListBox.OnSelectedIndexChanged(EventArgs e)
em System.Windows.Forms.ListBox.WmReflectCommand(Message& m)
em System.Windows.Forms.ListBox.WndProc(Message& m)
em System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Assemblies Carregados **************
mscorlib
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9195.0 built by: NET481REL1LAST_B
Base de Código: file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
----------------------------------------
TS4SimRipper
Versão do Assembly: 1.0.0.0
Versão do Win32: 1.0.0.0
Base de Código: file:///C:/Users/Anuar/Desktop/TS4SimRipper_3_14_2_0/TS4SimRipper.exe
----------------------------------------
System.Windows.Forms
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9195.0 built by: NET481REL1LAST_B
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9220.0 built by: NET481REL1LAST_C
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9037.0 built by: NET481REL1
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
s4pi.Package
Versão do Assembly: 2002.10.2050.28502
Versão do Win32: 2002.10.2050.28502
Base de Código: file:///C:/Users/Anuar/Desktop/TS4SimRipper_3_14_2_0/s4pi.Package.DLL
----------------------------------------
s4pi.Interfaces
Versão do Assembly: 2002.10.2049.28497
Versão do Win32: 2002.10.2049.28497
Base de Código: file:///C:/Users/Anuar/Desktop/TS4SimRipper_3_14_2_0/s4pi.Interfaces.DLL
----------------------------------------
s4pi.Settings
Versão do Assembly: 2103.7.1628.20645
Versão do Win32: 2103.7.1628.20645
Base de Código: file:///C:/Users/Anuar/Desktop/TS4SimRipper_3_14_2_0/s4pi.Settings.DLL
----------------------------------------
System.Core
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9220.0 built by: NET481REL1LAST_C
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Configuration
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9037.0 built by: NET481REL1
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9037.0 built by: NET481REL1
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
WindowsFormsIntegration
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9195.0 built by: NET481REL1LAST_B
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsFormsIntegration/v4.0_4.0.0.0__31bf3856ad364e35/WindowsFormsIntegration.dll
----------------------------------------
PresentationFramework
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9220.0
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.dll
----------------------------------------
WindowsBase
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9220.0 built by: NET481REL1LAST_C
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
----------------------------------------
PresentationCore
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9220.0 built by: NET481REL1LAST_C
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_64/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll
----------------------------------------
System.Xaml
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9220.0 built by: NET481REL1LAST_C
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xaml/v4.0_4.0.0.0__b77a5c561934e089/System.Xaml.dll
----------------------------------------
mscorlib.resources
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9037.0 built by: NET481REL1
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/mscorlib.resources/v4.0_4.0.0.0_pt-BR_b77a5c561934e089/mscorlib.resources.dll
----------------------------------------
PresentationFramework.Aero2
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9037.0 built by: NET481REL1
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.Aero2/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.Aero2.dll
----------------------------------------
Accessibility
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9037.0 built by: NET481REL1
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
----------------------------------------
Ookii.Dialogs
Versão do Assembly: 1.0.0.0
Versão do Win32: 1.0.0.0
Base de Código: file:///C:/Users/Anuar/Desktop/TS4SimRipper_3_14_2_0/Ookii.Dialogs.DLL
----------------------------------------
PresentationFramework-SystemXml
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9037.0
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemXml/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemXml.dll
----------------------------------------
PresentationCore.resources
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9037.0 built by: NET481REL1
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationCore.resources/v4.0_4.0.0.0_pt-BR_31bf3856ad364e35/PresentationCore.resources.dll
----------------------------------------
protobuf-net
Versão do Assembly: 2.0.0.668
Versão do Win32: 2.0.0.668
Base de Código: file:///C:/Users/Anuar/Desktop/TS4SimRipper_3_14_2_0/protobuf-net.DLL
----------------------------------------
DDSPanel
Versão do Assembly: 2002.10.2050.28504
Versão do Win32: 2002.10.2050.28504
Base de Código: file:///C:/Users/Anuar/Desktop/TS4SimRipper_3_14_2_0/DDSPanel.DLL
----------------------------------------
s4pi.ImageResource
Versão do Assembly: 2104.21.1540.19202
Versão do Win32: 2104.21.1540.19202
Base de Código: file:///C:/Users/Anuar/Desktop/TS4SimRipper_3_14_2_0/s4pi.ImageResource.DLL
----------------------------------------
System.Windows.Forms.resources
Versão do Assembly: 4.0.0.0
Versão do Win32: 4.8.9037.0 built by: NET481REL1
Base de Código: file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.resources/v4.0_4.0.0.0_pt-BR_b77a5c561934e089/System.Windows.Forms.resources.dll
----------------------------------------

************** Depuração JIT **************
Para habilitar a depuração just-in-time (JIT), o arquivo .config deste
aplicativo ou computador (machine.config) deve ter o valor
jitDebugging definido na seção system.windows.forms.
O aplicativo também deve ser compilado com a depuração
habilitada.

Por exemplo:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

Quando a depuração JIT está habilitada, qualquer exceção sem tratamento
será enviada ao depurador JIT registrado no computador,
em vez de ser tratada nesta caixa de diálogo.
Screenshots
Test Subject
#1995 Old 20th Mar 2024 at 11:26 AM
hello. Sorry I am now having trouble using this tool. Here are the details. Would you help me solve the problem? Thx a lot coz I love this program and need it badly.!!!

有关调用实时(JIT)调试而不是此对话框的详细信息,
请参见此消息的结尾。

************** 异常文本 **************
System.IndexOutOfRangeException: 索引超出了数组界限。
在 TS4SimRipper.Form1.GetCurrentModel(Boolean skinOnly)
在 TS4SimRipper.Form1.GetCurrentModel()
在 TS4SimRipper.Form1.DisplaySim(SimData sim, SimOccult occultState)
在 TS4SimRipper.Form1.sims_listBox_SelectedIndexChanged(Object sender, EventArgs e)
在 System.Windows.Forms.ListBox.OnSelectedIndexChanged(EventArgs e)
在 System.Windows.Forms.ListBox.WmReflectCommand(Message& m)
在 System.Windows.Forms.ListBox.WndProc(Message& m)
在 System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** 已加载的程序集 **************
mscorlib
程序集版本:4.0.0.0
Win32 版本:4.8.9181.0 built by: NET481REL1LAST_C
基本代码:file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/mscorlib.dll
----------------------------------------
TS4SimRipper
程序集版本:1.0.0.0
Win32 版本:1.0.0.0
基本代码:file:///E:/Tools%20For%20Sims4/TS4SimRipper_3_14_2_0/TS4SimRipper.exe
----------------------------------------
System.Windows.Forms
程序集版本:4.0.0.0
Win32 版本:4.8.9181.0 built by: NET481REL1LAST_C
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms/v4.0_4.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
程序集版本:4.0.0.0
Win32 版本:4.8.9220.0 built by: NET481REL1LAST_C
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System/v4.0_4.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
程序集版本:4.0.0.0
Win32 版本:4.8.9037.0 built by: NET481REL1
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Drawing/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
s4pi.Package
程序集版本:2002.10.2050.28502
Win32 版本:2002.10.2050.28502
基本代码:file:///E:/Tools%20For%20Sims4/TS4SimRipper_3_14_2_0/s4pi.Package.DLL
----------------------------------------
s4pi.Interfaces
程序集版本:2002.10.2049.28497
Win32 版本:2002.10.2049.28497
基本代码:file:///E:/Tools%20For%20Sims4/TS4SimRipper_3_14_2_0/s4pi.Interfaces.DLL
----------------------------------------
s4pi.Settings
程序集版本:2103.7.1628.20645
Win32 版本:2103.7.1628.20645
基本代码:file:///E:/Tools%20For%20Sims4/TS4SimRipper_3_14_2_0/s4pi.Settings.DLL
----------------------------------------
System.Core
程序集版本:4.0.0.0
Win32 版本:4.8.9220.0 built by: NET481REL1LAST_C
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Core/v4.0_4.0.0.0__b77a5c561934e089/System.Core.dll
----------------------------------------
System.Configuration
程序集版本:4.0.0.0
Win32 版本:4.8.9037.0 built by: NET481REL1
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Configuration/v4.0_4.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
程序集版本:4.0.0.0
Win32 版本:4.8.9037.0 built by: NET481REL1
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xml/v4.0_4.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
WindowsFormsIntegration
程序集版本:4.0.0.0
Win32 版本:4.8.9139.0 built by: NET481REL1LAST_B
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsFormsIntegration/v4.0_4.0.0.0__31bf3856ad364e35/WindowsFormsIntegration.dll
----------------------------------------
PresentationFramework
程序集版本:4.0.0.0
Win32 版本:4.8.9220.0
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.dll
----------------------------------------
WindowsBase
程序集版本:4.0.0.0
Win32 版本:4.8.9220.0 built by: NET481REL1LAST_C
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/WindowsBase/v4.0_4.0.0.0__31bf3856ad364e35/WindowsBase.dll
----------------------------------------
PresentationCore
程序集版本:4.0.0.0
Win32 版本:4.8.9220.0 built by: NET481REL1LAST_C
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_64/PresentationCore/v4.0_4.0.0.0__31bf3856ad364e35/PresentationCore.dll
----------------------------------------
System.Xaml
程序集版本:4.0.0.0
Win32 版本:4.8.9220.0 built by: NET481REL1LAST_C
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Xaml/v4.0_4.0.0.0__b77a5c561934e089/System.Xaml.dll
----------------------------------------
mscorlib.resources
程序集版本:4.0.0.0
Win32 版本:4.8.9037.0 built by: NET481REL1
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/mscorlib.resources/v4.0_4.0.0.0_zh-Hans_b77a5c561934e089/mscorlib.resources.dll
----------------------------------------
PresentationFramework.Aero2
程序集版本:4.0.0.0
Win32 版本:4.8.9037.0 built by: NET481REL1
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework.Aero2/v4.0_4.0.0.0__31bf3856ad364e35/PresentationFramework.Aero2.dll
----------------------------------------
Accessibility
程序集版本:4.0.0.0
Win32 版本:4.8.9037.0 built by: NET481REL1
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/Accessibility/v4.0_4.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
----------------------------------------
PresentationFramework-SystemXml
程序集版本:4.0.0.0
Win32 版本:4.8.9037.0
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationFramework-SystemXml/v4.0_4.0.0.0__b77a5c561934e089/PresentationFramework-SystemXml.dll
----------------------------------------
PresentationCore.resources
程序集版本:4.0.0.0
Win32 版本:4.8.9037.0 built by: NET481REL1
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/PresentationCore.resources/v4.0_4.0.0.0_zh-Hans_31bf3856ad364e35/PresentationCore.resources.dll
----------------------------------------
protobuf-net
程序集版本:2.0.0.668
Win32 版本:2.0.0.668
基本代码:file:///E:/Tools%20For%20Sims4/TS4SimRipper_3_14_2_0/protobuf-net.DLL
----------------------------------------
DDSPanel
程序集版本:2002.10.2050.28504
Win32 版本:2002.10.2050.28504
基本代码:file:///E:/Tools%20For%20Sims4/TS4SimRipper_3_14_2_0/DDSPanel.DLL
----------------------------------------
s4pi.ImageResource
程序集版本:2104.21.1540.19202
Win32 版本:2104.21.1540.19202
基本代码:file:///E:/Tools%20For%20Sims4/TS4SimRipper_3_14_2_0/s4pi.ImageResource.DLL
----------------------------------------
System.Windows.Forms.resources
程序集版本:4.0.0.0
Win32 版本:4.8.9037.0 built by: NET481REL1
基本代码:file:///C:/Windows/Microsoft.Net/assembly/GAC_MSIL/System.Windows.Forms.resources/v4.0_4.0.0.0_zh-Hans_b77a5c561934e089/System.Windows.Forms.resources.dll
----------------------------------------

************** JIT 调试 **************
要启用实时(JIT)调试,
该应用程序或计算机的 .config 文件(machine.config)的 system.windows.forms 节中必须设置
jitDebugging 值。
编译应用程序时还必须启用
调试。

例如:

<configuration>
<system.windows.forms jitDebugging="true" />
</configuration>

启用 JIT 调试后,任何未经处理的异常
都将被发送到在此计算机上注册的 JIT 调试程序,
而不是由此对话框处理。
Test Subject
#1996 Old 22nd Mar 2024 at 6:37 PM Last edited by SimplyAnjuta : 23rd Mar 2024 at 8:15 PM.
Hi there - to both of you:

Please, read the messages above and the announcement on the main page.

Sadly, CmarNYC, the creator of the tools, passed away last year and the SimRipper version on MTS broke with the last game update.
SimRipper was now updated by Andrew (S4S creator) and the updated version is available on the S4S forum.
(Note that the updated version only works with the 64 bit version of Windows.)

Quote: Originally posted by ANNA KLEMMENSEN
hello. Sorry I am now having trouble using this tool. Here are the details. Would you help me solve the problem? Thx a lot coz I love this program and need it badly.!!!


Quote: Originally posted by Anuar
Hello, when I try to open any character in SimRipper, I get the following message, as seen on the index image. I also get the following log. Is there a way to solve this? Thank you!
Test Subject
THANKS POST
#1997 Old 26th Mar 2024 at 11:32 AM
HELP !!!

When I download TS4 SimRipper and select my save file and Sim, it shows 'Working...' but nothing appears, no Sim
Test Subject
#1998 Old 31st Mar 2024 at 1:34 PM
Are you using Andrews updated version from the S4S forum?

Quote: Originally posted by Elena-Sim-1111
HELP !!!

When I download TS4 SimRipper and select my save file and Sim, it shows 'Working...' but nothing appears, no Sim
Page 80 of 80