[DiscordArchive] Could someone help me with this error? When I ...
[DiscordArchive] Could someone help me with this error? When I ...
Archived author: Needle • Posted: 2025-03-14T08:29:23.899000+00:00
Original source
Archived author: Needle • Posted: 2025-03-14T08:29:24.503000+00:00
Original source
Thread automatically created by in <#415944535718494208>
Archived author: Furioz • Posted: 2025-03-14T08:44:48.101000+00:00
Original source
it's trying to fix the particles of the mount but fails for whatever reason.
You could try and adjust the flags in 010 editor and bypass the FixGravity like that.
> for (int i = 0; i < particleCount; i++)
> {
> int pos = i * 476 + (int)offset + 0x28;
> char c = ReadChar(pos);
>
> int flagsOfs = (int)(i * 476 + offset + 4);
> uint flags = ReadUInt(flagsOfs);
> if (c > 4)
> {
> Data[pos] = 4;
> //FixEmitterSpeed(i);
> }
>
> ** if ((flags & 0x800000) **!= 0)
> {
> FixGravity(i);
> }