Jump to content

parzysty

Members
  • Posts

    1144
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

12201 profile views
  1. Can you show how you setup the Relight orbs?
  2. This isn't about the content of your posts, lmao. How oblivious can you get? IT'S ABOUT THE VOLUME. Every second post in the thread is yours, you spam so much shit that half the stuff I see is from you.
  3. Oh okay, I had no idea this was a thing.
  4. Because every 2nd post is his? It's extremely tedious scrolling past his stuff and it's easy to miss what others have made.
  5. I wrote a script that will hide every post of the feet poster. // ==UserScript== // @name Forum Block: Nevadathehighelf // @namespace http://tampermonkey.net/ // @version 1.0 // @description Hides all posts by Nevadathehighelf on Invision Community forums // @author You // @match *://www.loverslab.com/* // @grant none // @run-at document-end // ==/UserScript== (function() { 'use strict'; // The username to target const targetUser = "nevadathehighelf"; const hidePosts = () => { // Target all 'article' tags that represent forum posts const posts = document.querySelectorAll('article.cPost'); posts.forEach(post => { // Check for the profile link within the article // IPS forums usually use the format /profile/ID-username/ const authorLink = post.querySelector(`a[href*="-${targetUser}/"]`); if (authorLink) { post.style.display = 'none'; } }); }; // Run once on load hidePosts(); // Run again if the page loads more content (AJAX/Infinite Scroll) const observer = new MutationObserver(hidePosts); observer.observe(document.body, { childList: true, subtree: true }); })(); How to install it: Install the Tampermonkey extension for your browser (Chrome, Firefox, or Edge). Click the Tampermonkey icon in your toolbar and select "Create a new script...". Delete any default code and paste the script above into the editor. Press Ctrl + S (or Cmd + S on Mac) to save. Refresh the forum page.
  6. Can you share your girls? I noticed on your Patreon you only share dudes. 🥲
  7. @MrWolfTheThurd Is there a slavery mod for GTA 5 that will allow me to kidnap peds? Seems like GTA 5 would be the best game for this type of mod.
  8. Pretty good, I'm just surprised you didn't hide the clipping 😁
  9. So fucking good! Sims 4 finally looks good! 😁 If only you could do something about the blocky bodies so the light spreads more evenly?
  10. All your recent sims look fucking excellent! 😁
  11. No way that's in-game lighting. Is it Blender?
  12. Are you making these in Blender?
  13. @Nevadathehighelf Your posts make it really hard to browse this thread. I came here to see what Fallout 4 adult modding community is up to, but all I see is a variation of the same screenshot spammed 5 times on every page of the thread.
×
×
  • Create New...