Jump to content

parzysty

Members
  • Posts

    1150
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

12424 profile views
  1. We have a thread for these:
  2. @awsome 1 Where can I find "BACK BAR anus" animation etc.? There is nothing on the bar stool.
  3. Can you show how you setup the Relight orbs?
  4. 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.
  5. Oh okay, I had no idea this was a thing.
  6. Because every 2nd post is his? It's extremely tedious scrolling past his stuff and it's easy to miss what others have made.
  7. 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.
  8. Can you share your girls? I noticed on your Patreon you only share dudes. 🥲
  9. @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.
  10. Pretty good, I'm just surprised you didn't hide the clipping 😁
×
×
  • Create New...