PMBD PMBD
Welcome, Guest. Please login or register.
2024 April 19, 12:22:19

Login with username, password and session length
Search:     Advanced search
138712 Posts in 1637 Topics by 5282 Members
Latest Member: AlexanderPistoletov
* Home Help Search Calendar Login Register
  Show Posts
Pages: [1]
1  The Pirate Ship / ARR! / Re: Butterflysims on: 2020 October 27, 05:46:58
At the moment I am thinking of making a disagreement, who do you think would be a good idea to organize?

The post I did is gone, but I'm the one who will organize it, and I've already discord, I'll start organizing things next month!

the google translator sucks, and i don't speak english sorry!
2  The Pirate Ship / ARR! / Re: Butterflysims on: 2020 October 27, 05:45:42
At the moment I am thinking of making a disagreement, who do you think would be a good idea to organize?

The post I did is gone, but I'm the one who will organize it, and I've already discord, I'll start organizing things next month!
3  The Pirate Ship / ARR! / Re: Butterflysims on: 2020 October 26, 04:35:39
At the moment I am thinking of making a disagreement, who do you think would be a good idea to organize?
4  The Pirate Ship / ARR! / Re: Butterflysims on: 2020 October 26, 04:17:27
Hello, just thought I would warn you guys to stay away from b-flysims hair.
I downloaded her content off of the booty and it appears to be broken (maybe intentionally?)
Everything else I downloaded from the booty works just fine, same with the rest of my alpha hairs. It's just her content that is the problem. In CAS the hair appears normal but ingame it's black for every swatch.
And before I made this post I made sure it wasn't me doing anything wrong here, I do not have laptop mode enabled and my settings are fine. Anyways, might want to stay away from her content unless you want broken cc in your game. Just thought I would let you all know.

thanks for warning me
5  The Pirate Ship / ARR! / Re: Graphical script for the booty site. on: 2020 August 08, 20:12:31
This script is amazing! Such a life and time saver!  Cheesy Is there any way to make it to where it works for all of the creators? For example, it does not work for Curbs.
Thank you so much for making this!!!

It didn't render because it was caused by a bug in the script. I have updated the code in version 1.1, so it should work now. Please update the script on your end.



please where can i get it updated?
6  The Pirate Ship / ARR! / Re: Graphical script for the booty site. on: 2020 August 04, 23:25:35
I have updated to script to display the date now.




thanks a lot this is very good, please send the updated code to chrome
7  The Pirate Ship / ARR! / Re: Graphical script for the booty site. on: 2020 August 02, 23:09:01
Thank you so much. I wanted to say that anyone using Firefox will do this the exact same way, but for anyone who has no idea what they're doing, here's what you copy and paste for Greasemonkey:

Code:
// ==UserScript==
// @name     Unnamed Script 553917
// @version  1
// @grant    none
// ==/UserScript==

(function() {
    'use strict';

    const anchorClass = "position: relative;";

    const imageClass = "max-width:600px; height: auto;";

    const textClass = "position: absolute; bottom: 10px; left: 50%; transform:translateX(-50%); background-color: black; color: white; padding: 10px 25px;";

    const buttonClass = " background-color: tomato; color: black; padding: 10px 25px; display: inline-block; text-decoration: none; margin: 10px auto 50px auto";

    const anchors = document.querySelectorAll('a');
    for(let i = 0; i < anchors.length; i++){

        let type = anchors[i].href.split('.').pop();
        if(['jpeg','png','jpg'].includes(type)){

            let text = anchors[i].href.split('/').pop();


            const src = anchors[i].href;
            anchors[i].outerHTML = `<a style="${anchorClass}" target="_blank" href="${src}"><img style="${imageClass}" src="${src}" alt="Preview"><span style="${textClass}">${text}</span></a>`;
        } else {
            if(type == 'zip' || type == 'rar'){
               let link = anchors[i].href;
               let file = anchors[i].href.split('/').pop();
               anchors[i].outerHTML = `<a style="${buttonClass}" href="${link}">Download ${file}</a>`;
            }
        }

    }
})();


____________________
thanks for the script i loved it, i would really like it to have dates for us to see when it was posted.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines Valid XHTML 1.0! Valid CSS!
Page created in 0.129 seconds with 19 queries.