zGhostz1
Member since
{
const element = document.getElementById(elementId);
if (!element) return;
element.scrollIntoView({ behavior: 'smooth', block: 'start' });
const highlightClasses = ['bg-yellow-100', 'dark:bg-sky-700', 'transition-colors', 'duration-1000'];
element.classList.add(...highlightClasses);
setTimeout(() => element.classList.remove(...highlightClasses), 2000);
});
"
>
This user has not yet published any mods.
Recent Activity
Created comment
I just created a new account here in this website, just to thank you for sharing this info. YOU'RE AWESOME DUDE!
Oct 6, 2025 4:13 PM
View details
Liked comment
I fixed the Universal Weapon mods. Inside the src folder, open PatchedModPoolService.ts .
Replace the lines:
import { VFS } from "@spt/utils/VFS";
@inject("VFS") protected vfs: VFS,
with:
import { FileSystemSync } from "@spt/utils/FileSystemSync";
@inject("FileSystemSync") protected fileSystem: FileSystemSync,
The issue is 3.11 no longer uses VFS service, they switched over to FileSystemSync
Oct 6, 2025 4:13 PM
View details
Followers
No followers yet.
Following
Not yet following anyone.