DiscordFreeEmojis icon indicating copy to clipboard operation
DiscordFreeEmojis copied to clipboard

Can you make this plugin and the free sticker plugin work with this line?

Open legalizetren opened this issue 4 years ago • 7 comments
trafficstars

Adding this so the actual icons themselves become colored, breaks this script and the free stickers script.

BdApi.findModuleByProps("getCurrentUser").getCurrentUser().premiumType = 2;

This line pretty much makes it show the icons in the emoji menu in color, but script doesn't seem to work with it on, same thing with stickers, they don't send

legalizetren avatar Nov 19 '21 05:11 legalizetren

Use css to make them non grayscale. That line spoofs nitro, which breaks functionalities because you don't actually have nitro and the backend rejects your requests.

An00nymushun avatar Nov 19 '21 12:11 An00nymushun

no clue how to do that 🤷

legalizetren avatar Nov 19 '21 22:11 legalizetren

li[class*='emojiItemDisabled'] { 
    outline: dotted 1px rgba(255, 0, 0, 0.3); 
    outline-offset: -2px; 
    filter: none !important; 
    cursor: pointer; 
}

li[class*='emojiItemDisabled'] > img { 
     filter: none; 
}

marcussacana avatar Nov 20 '21 05:11 marcussacana

li[class*='emojiItemDisabled'] { 
    outline: dotted 1px rgba(255, 0, 0, 0.3); 
    outline-offset: -2px; 
    filter: none !important; 
    cursor: pointer; 
}

li[class*='emojiItemDisabled'] > img { 
     filter: none; 
}

Hi, do we just have to paste this in the custom CSS editor?

neemanthnub avatar Jan 12 '22 09:01 neemanthnub

Yes, but is outdated, this one should works:

button[class*='emojiItemDisabled']{ 
    outline: dotted 1px rgba(255, 0, 0, 0.3); 
    outline-offset: -2px; 
    filter: none !important; 
    cursor: pointer; 
}

button[class*='emojiItemDisabled'] > * { 
     filter: none !important; 
}

marcussacana avatar Jan 12 '22 16:01 marcussacana

Yes, but is outdated, this one should works:

button[class*='emojiItemDisabled']{ 
    outline: dotted 1px rgba(255, 0, 0, 0.3); 
    outline-offset: -2px; 
    filter: none !important; 
    cursor: pointer; 
}

button[class*='emojiItemDisabled'] > * { 
     filter: none !important; 
}

thank you, its working

neemanthnub avatar Jan 13 '22 04:01 neemanthnub

If you still want to be able to quickly differentiate between emojis that will be embedded and ones that are in your current server, you can use this instead:

button[class*='emojiItemSelected'] {
    filter: none !important
}

With this, only selected emotes will not be greyscale.

FrostBird347 avatar Oct 08 '22 04:10 FrostBird347