#πŸ₯-vencord-support-πŸ₯

1 messages Β· Page 71 of 1

copper iris
#

or at the very least a require call to the patcher

shell veldt
warm birchBOT
# shell veldt https://github.com/Vencord/Installer/blob/main/gui_prerequisites_windows.go#L40-...

**gui_prerequisites_windows.go: **Lines 40-78

func IsAdmin() bool {
    u, err := user.Current()
    // We only want to show the alert if the installer is run elevated.
    // Some people may use the Administrator user in which case it's fine
    if err != nil && u.Username == "Administrator" {
        return false
    }

    // most sane windows code, copy-pasted from https://github.com/golang/go/issues/28804#issuecomment-505326268

    var sid *windows.SID

    // Although this looks scary, it is directly copied from the
    // official windows documentation. The Go API for this is a
    // direct wrap around the official C++ API.
    // See https://docs.microsoft.com/en-us/windows/desktop/api/securitybaseapi/nf-securitybaseapi-checktokenmembership
    err = windows.AllocateAndInitializeSid(
        &windows.SECURITY_NT_AUTHORITY,
        2,
        windows.SECURITY_BUILTIN_DOMAIN_RID,
        windows.DOMAIN_ALIAS_RID_ADMINS,
        0, 0, 0, 0, 0, 0,
        &sid)
    if err != nil {
        fmt.Println("SID Error: ", err)
        return false
    }
    defer windows.FreeSid(sid)

    token := windows.Token(0)

    isMember, err := token.IsMember(sid)
    if err != nil {
        fmt.Println("Token Membership Error: ", err)
        return false
    }

    return token.IsElevated() || isMember
}
shell veldt
#

this

copper iris
#

yeah just saw

shell veldt
#

sanest windows api code

copper iris
#

that'd ignore __COMPAT_LAYER so it makes sense

oblique karma
#

is this it?

shell veldt
#

why

oblique karma
shell veldt
#

whar

hazy breach
shell veldt
#

jumpscare

broken tiger
#

i restarted again. Not showing

broken tiger
#

that worked for me

#

i did try to uninstall and do the regular install. It didnt work

sick glade
#

Have you tried reinstalling Discord

broken tiger
#

Nope.

#

im gonna try reinstalling discord. I dont think it will do anything though.

dull forum
#

bro's pfp: The

#

eh?

#

Vencord Debug Info

Vencord: v1.3.4 β€’ bea7a17 (Web) - 8 Jul 2023
Discord Branch: stable
Client: Web (Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36)
Platform: Win32
Outdated: false
OpenAsar: false

Enabled Plugins (58):


BadgeAPI, CommandsAPI, ContextMenuAPI, MemberListDecoratorsAPI, MessageAccessoriesAPI, MessageDecorationsAPI, MessageEventsAPI, MessagePopoverAPI, NoticesAPI, ServerListAPI, SettingsStoreAPI, NoTrack, Settings, SupportHelper
#

this?

sick glade
#

1.3.4

#

That is oooooold

#

Update

dull forum
#

bruvvv

#

how

hazy breach
sick glade
#

Is it not

shell veldt
#

thats latest flag wdym 😭

sick glade
#

WHAT

shell veldt
#

i think youre thinking about vesktop

#

wait no

sick glade
#

I swear I saw 1.4.0

shell veldt
#

installer maybe or smth lolol

hazy breach
#

vesktop is 1.2.x

covert eagle
#

How do you use custom rpc

dull forum
shell veldt
#

oh wait

warm birchBOT
shell veldt
#

it is old yes

dull forum
shell veldt
#

but not that old

sick glade
#

Yeah but old enough to not have voice messages

covert eagle
shell veldt
#

wait mozilla hasnt approved the update

#

oh i forgot to make a tag i think....

#

i did

sick glade
#

I knew I wasn't that crazy 😭

dull forum
#

like pin answers
the issue with customrpc is resolved
so pin?

#

so no one askes the same question 100 times

shell veldt
#

just made the tag lol

sick glade
#

That's why we have vf and vs

shell veldt
#

my bad

dull forum
sick glade
#

But it doesn't cover everything

covert eagle
shell veldt
#

someone who reads pins will also use search

#

someone who doesnt use search will also not use pins

shell veldt
#

update should be out in ~10 mins @dull forum

#

i just forgot lol

late tinsel
#

guys is vencord safe for my pc?

broken tiger
#

smol question is there anyway to make vencord remember save path for images and videos ?
meow

shadow loom
#
error: socket path "/home/Bukit/.config/nvm/versions/node/v16.20.0/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/home/Bukit/.cache/xdgr/wayland-0" plus null terminator exceeds 108 bytes
2023/07/26 22:48:57 PlatformError: Wayland: Failed to connect to display
panic: NotInitialized: The GLFW library is not initialized

goroutine 1 [running, locked to thread]:
github.com/go-gl/glfw/v3.3/glfw.acceptError({0x0, 0x0, 0x10004?})
        /home/runner/go/pkg/mod/github.com/go-gl/glfw/v3.3/glfw@v0.0.0-20221017161538-93cebf72946b/error.go:174 +0x1d9
github.com/go-gl/glfw/v3.3/glfw.panicError(...)
        /home/runner/go/pkg/mod/github.com/go-gl/glfw/v3.3/glfw@v0.0.0-20221017161538-93cebf72946b/error.go:185
github.com/go-gl/glfw/v3.3/glfw.WindowHint(0xc00011bdf0?, 0x6fcc7a?)
        /home/runner/go/pkg/mod/github.com/go-gl/glfw/v3.3/glfw@v0.0.0-20221017161538-93cebf72946b/window.go:275 +0x3f
github.com/AllenDang/imgui-go.NewGLFW({0x22d5bd8?}, {0xa3f26d, 0x11}, 0xac82f0?, 0x9e0b80?, 0x0)
        /home/runner/go/pkg/mod/github.com/!allen!dang/imgui-go@v1.12.1-0.20220322114136-499bbf6a42ad/PlatformGlfw.go:68 +0xba
github.com/AllenDang/giu.NewMasterWindow({0xa3f26d, 0x11}, 0x4b0, 0x320, 0xa0?)
        /home/runner/go/pkg/mod/github.com/!allen!dang/giu@v0.6.2/MasterWindow.go:66 +0x10b
main.main()
        /home/runner/work/Installer/Installer/gui.go:70 +0x98```
help
covert eagle
sick glade
shell veldt
#

no its in main too

late tinsel
shell veldt
#

its just that if i dont create a new tag it doesnt do anything

sick glade
#

Ah

shell veldt
sick glade
dull forum
#

or 10:10?

visual dew
#

Having an issue with installing Vesktop on macOS Ventura 13.2.1 on an M1 Pro. Using the ARM64.img from the latest release gives me this. Sorry to add to the swamp of messages here.

sick glade
#

vs w

mighty ravenBOT
# sick glade vs w

⚠️ Do not run the installer as Administrator

Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe

If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.

To do so, open Powershell, run the following command, then follow along with the instructions/prompts

iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
wise dagger
#

melon

copper iris
#

and try running

shell veldt
copper iris
#

xattr -d com.apple.quarantine <wherever that file is>

sick glade
#

Read literally 2 messages below yours

#

Are you sure

#

Did you do the Powershell method

wise dagger
#

did you run ps

broken tiger
sick glade
#

At last

stray lava
#

so many new plugins

visual dew
#

it solved it, thanks

covert eagle
#

What is small image and big image for customrpc

copper iris
#

hot

stray lava
#

i got some of them in vencord android a few weeks back but they werent in vencord for some reason lol

copper iris
#

okay

#

ty

stray lava
#

but now they appeared

copper iris
marble palmBOT
# copper iris

Try running xattr -d com.apple.quarantine <file location>.

copper iris
#

@visual dew tada

covert eagle
#

What is vesktop

sick glade
marble palmBOT
#

Try opening a terminal and running xattr -d com.apple.quarantine /Applications/Vesktop.app. This should usually fix the error.

quaint sun
#

does anyone know a vencord for mobile

sick glade
#

vf mobile

mighty ravenBOT
#
Is there a mobile version of Vencord?

Yes actually! We have an Android app embedding the Discord website

However, as Discord's mobile website has some issues (performance, usability, etc), chances are you won't like it.
In that case you will instead want to use one of the following mods focused on Mobile.

Do note however that these mods are not related to / affiliated with Vencord, so we do not provide support for them in any way. Join their support servers for help & more info!

sick glade
#

Oop

quaint sun
#

thanks

karmic thunder
#

what is the directory to put themes???

copper iris
#

user settings -> themes

#

its links @karmic thunder

sick glade
#

Elaborate

#

Screenshots, anything

karmic thunder
#

alr thanks

sick glade
#

vs mi

mighty ravenBOT
# sick glade vs mi

"doesn't work" and similar are not very helpful. To help you, we need more info!

Describe your issue with as much detail as possible.
What exactly did you try to do?
What did you expect to happen?
What happened instead?
Does this issue always happen, or only sometimes?
If possible, provide steps how to reproduce the issue
If appropriate, provide screenshots or screen recordings

For Vencord issues:

  • If you are able to, run the /vencord-debug slash command
  • If not, provide the following info:
    • How are you using Vencord? (Discord Desktop, Browser (name your browser!!), Vencord Desktop, ArmCord, ...)
    • What OS are you using?
  • Open the DevTools with Ctrl + Shift + i (Cmd + Option + i on MacOs) and check the console tab for red error messages

For Installer issues:

  • What OS are you using?
karmic thunder
copper iris
#

wha

#

o

karmic thunder
#

i downloaded it idk what file to put it in

simple owl
#

New venbot pfp jumpscare

karmic thunder
#

vf mobile

mighty ravenBOT
#
Is there a mobile version of Vencord?

Yes actually! We have an Android app embedding the Discord website

However, as Discord's mobile website has some issues (performance, usability, etc), chances are you won't like it.
In that case you will instead want to use one of the following mods focused on Mobile.

Do note however that these mods are not related to / affiliated with Vencord, so we do not provide support for them in any way. Join their support servers for help & more info!

copper iris
#

like this

#

you dont download it

#

paste the link

hazy breach
karmic thunder
#

ok

wise dagger
#

it tells you how right above it

sick glade
#

Well yeah using the Powershell method to just select the GUI installer isn't helpful, you'd want to select the terminal-based installer

#

2

#

And then follow the instructions

simple owl
sick glade
#

Yes

toxic sluice
#

how do i uninstall vencored

sick glade
#

The same way you installed it

#

Just click the uninstall button on the installer

placid ledge
#

i updated vesktop to 0.2.7 and it removed the taskbar icon ???

#

it's just the default paper thing now

sick glade
#

If you have it pinned, unpin it and close Vesktop and relaunch it

half estuary
#

vencord broke my desktop application, tried to uninstall now discord isnt launching

sick glade
#

That's probably it

placid ledge
#

why is windows like that

half estuary
#

didnt work

sick glade
half estuary
#

thats what i mean by it broke my application

wise dagger
#

vs reinstall

mighty ravenBOT
# wise dagger vs reinstall

The easiest & fastest solution to most issues is to just reinstalll. Don't worry, you won't lose your settings! They'll all be there like nothing happened once you're back :3

rare nebula
#

What is teh difference between vencord and better discord?

hazy breach
#

read

sick glade
#

^

#

It tells you everything

#

Just follow along

shell veldt
#

furry lewi

half estuary
#

it has properly broke my discord app

#

i think i did something wrong in uninstalling

#

and now im not able to reinstall it

sick glade
#

Did you uninstall Vencord without unpatching lol

half estuary
#

possibly

#

i literally have not the slightest clue

sick glade
half estuary
#

i tried to

copper iris
#

can you send your setup log

half estuary
copper iris
#

delete the discord folder manually and reinstall

half estuary
#

where would one find the discord folder

#

or like search for it

copper iris
#

%localappdata%

sick glade
#

^^

half estuary
#

this one right

sick glade
#

That feels like it's the Roaming folder since it's lowercase

copper iris
#

uhh

half estuary
#

yeah it is

copper iris
#

thats roaming

#

go to local

sick glade
#

Yep

half estuary
#

so this one

sick glade
#

Yes

visual dew
broken tiger
#

how can I put a custom theme on vencord?

visual dew
#

should be a braindead solution

half estuary
sick glade
sick glade
sick glade
#

Force close Discord :P

copper iris
half estuary
#

im using the web one because desktop broke

copper iris
#

either you suffer or you pay loads

sick glade
#

See if there's any processes in task manager

wise dagger
#

is it open in tray

copper iris
#

and vencord does not make that much money lol

broken tiger
fringe harbor
#

Since I installed better discord, I get randomly disconnected from voicecall with my friends. But it still works in servers tho. Is there a fix? Maybe reinstalling completely ?

sick glade
#

Err what theme are you trying to use

cerulean gale
#

the custom game statu of vencord is only client side ?

broken tiger
#

I tried countless times. That's why I'm here on the server, for someone to be clearer

broken tiger
wise dagger
#

screenshot your theme tab

fringe harbor
copper iris
#

this isnt related to us

sick glade
#

Also isn't there a plugin that prevents that

fringe harbor
wise dagger
#

not a vencord issue

copper iris
#

yeah

#

you could try this

sick glade
#

It's a stock Discord thing to disconnect users from calls after some minutes of inactivity

#

^^

fringe harbor
wise dagger
#

or that

fringe harbor
#

Like if I did CTRL+R but i didn't

half estuary
sick glade
#

Well idk then but it's likely not related to Vencord

fringe harbor
sick glade
dull forum
sick glade
#

See it for yourself

dull forum
#

Vencord Debug Info

Vencord: v1.3.4 β€’ bea7a17 (Web) - 8 Jul 2023
Discord Branch: stable
Client: Web (Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36)
Platform: Win32
Outdated: false
OpenAsar: false

Enabled Plugins (58):


BadgeAPI, CommandsAPI, ContextMenuAPI, MemberListDecoratorsAPI, MessageAccessoriesAPI, MessageDecorationsAPI, MessageEventsAPI, MessagePopoverAPI, NoticesAPI, ServerListAPI, SettingsStoreAPI, NoTrack, Settings, SupportHelper
sick glade
#

Lol not like that, check the extension's page

dull forum
#

i did

#

u mean

#

chrome webstore?

sick glade
#

Yes

dull forum
#

if so
it still says 8th a july

sick glade
#

Gotta wait

#

Google be like that

verbal valley
#

can i use PIN DM, Call timer, better folder on my main account? if they are not violating ToS?

wise dagger
#

vf tos

mighty ravenBOT
#
Will I get banned for using Vencord? Will plugin X get me banned?

Client modifications are against Discord's Terms of Service.

However, Discord is pretty indifferent about them and there are no known cases of users getting banned for using client mods! So you should generally be fine as long as you don't use any plugins that implement abusive behaviour. But no worries, all inbuilt plugins are safe to use!

Regardless, if your account is very important to you and it getting disabled would be a disaster for you, you should probably not use any client mods (not exclusive to Vencord), just to be safe

Additionally, make sure not to post screenshots with Vencord in a server where you might get banned for it

dull forum
#

much

#

unless u abuse the API

sick glade
#

Also none of those are relevant

#

They're all client side

wise dagger
#

^

dull forum
#

@rugged magnet why r u a phone number

#

whose is dat bruv?

rugged magnet
#

i hate ntts viewers guh

dull forum
#

eh?

#

waz up with dem?

hazy breach
#

call it if you wanna find out trolley

dull forum
mighty ravenBOT
#
Is there a mobile version of Vencord?

Yes actually! We have an Android app embedding the Discord website

However, as Discord's mobile website has some issues (performance, usability, etc), chances are you won't like it.
In that case you will instead want to use one of the following mods focused on Mobile.

Do note however that these mods are not related to / affiliated with Vencord, so we do not provide support for them in any way. Join their support servers for help & more info!

misty sonnet
#

eh hi

oblique karma
sick glade
#

You're in the plugin's folder

#

Go back to the main Vencord folder and run it again

oblique karma
rugged magnet
#

I have yet to find them

sick glade
rugged magnet
#

ah, thans

misty sonnet
#

i tried to install vencord from the powershell, i can't see it in my user settings

sick glade
oblique karma
sick glade
#

Don't manually add it to your default Vencord directory

wise dagger
#

use vsc

#

makes everything easier

rare nebula
#

What is difference between vencord adn better discord??

copper iris
#

they're completely different projects

misty sonnet
#

yeh

mighty ravenBOT
# sick glade vs mi

"doesn't work" and similar are not very helpful. To help you, we need more info!

Describe your issue with as much detail as possible.
What exactly did you try to do?
What did you expect to happen?
What happened instead?
Does this issue always happen, or only sometimes?
If possible, provide steps how to reproduce the issue
If appropriate, provide screenshots or screen recordings

For Vencord issues:

  • If you are able to, run the /vencord-debug slash command
  • If not, provide the following info:
    • How are you using Vencord? (Discord Desktop, Browser (name your browser!!), Vencord Desktop, ArmCord, ...)
    • What OS are you using?
  • Open the DevTools with Ctrl + Shift + i (Cmd + Option + i on MacOs) and check the console tab for red error messages

For Installer issues:

  • What OS are you using?
upper hare
rare nebula
vocal sinew
#

hello i am using macbook, and it says i need to give it full disc acess and i did it but it still says that i need to give it full disc acess.

sick glade
mighty ravenBOT
#
Is there a mobile version of Vencord?

Yes actually! We have an Android app embedding the Discord website

However, as Discord's mobile website has some issues (performance, usability, etc), chances are you won't like it.
In that case you will instead want to use one of the following mods focused on Mobile.

Do note however that these mods are not related to / affiliated with Vencord, so we do not provide support for them in any way. Join their support servers for help & more info!

sick glade
upper hare
sick glade
#

😭 read one message below that

vocal sinew
#

I already gave it acess but it keeps saying this, im using mac

upper hare
#

Ah ok lol

sick glade
cerulean gale
#

Can sombody help me about soemthing ? I seen some people (and me) having trouble with the game thing, the "playing at" that we can custom with vancord, but the trouble is i think its only clientside

copper iris
sick glade
copper iris
#

probably because of the transparency

sick glade
#

Yeah probably

sick glade
#

Terminal

oblique karma
sick glade
#

Did you pnpm install (..etc)

oblique karma
sick glade
#

Well idk, but like I said it's better to manually clone a dev installation of Vencord so you have a safe fallback

oblique karma
#

I forgot one

#

but still

#

errors

covert eagle
#

what are timestamps in customrpc for

sick glade
oblique karma
#

is to update

covert eagle
sick glade
#

Idk just go on their website and download LTS probably

sick glade
covert eagle
sick glade
#

Β―_(ツ)_/Β―

wise dagger
#

unix time

#

1st jan 1970

#

or smth

final willow
#

how does the BiggerStreamPreview plugin work?

steel garden
#

surely fakenitro is bannable right

sick glade
#

No

steel garden
#

how does it work even? the stream quality thing doesn't go through their servers or anything?

sick glade
#

They check it client side

#

Theoretically you can set it to almost anything

#

But as long as it's just default values, 99% chance they don't care

#

And also you can't change it to custom values anyway

covert eagle
wise dagger
#

Unix time is a way of representing a timestamp by representing the time as the number of seconds since January 1st, 1970 at 00:00:00 UTC.

steel garden
wise dagger
#

vf tos

mighty ravenBOT
#
Will I get banned for using Vencord? Will plugin X get me banned?

Client modifications are against Discord's Terms of Service.

However, Discord is pretty indifferent about them and there are no known cases of users getting banned for using client mods! So you should generally be fine as long as you don't use any plugins that implement abusive behaviour. But no worries, all inbuilt plugins are safe to use!

Regardless, if your account is very important to you and it getting disabled would be a disaster for you, you should probably not use any client mods (not exclusive to Vencord), just to be safe

Additionally, make sure not to post screenshots with Vencord in a server where you might get banned for it

final willow
#

is there any plugin that allows me to check if any friend is in a specific server?

wise dagger
#

mutual servers

final willow
#

I asked plugins

sick glade
shell veldt
#

nah

#

discord just dumb

#

same reason show hidden channels is possible

#

because they just do those checks on ur client

sick glade
#

Classic

shell veldt
#

they could easily do it on their server but they don't lol

sick glade
shell veldt
#

they already analyse your stream as proven by it showing the quality and fps to others

steel garden
#

theres a small chance they randomly decide "oop all these users are doing this time to mass purge" hence the "do at your own risk" warning this sorta thing comes with

storm pivot
#

anyone know how I can have more emotes in the autocomplete list? I swear this used to be an experiment I used

shell veldt
#

So it would be trivial to just say nuh uh you can't stream 1080p without nitro

#

but hey let's just be happy they don't check it further ;)

lament talon
#

i need help, it said that i first need to install Discord but i already have it installed, does anyone know what is happening and how to fix it??

wise dagger
#

try and reinstall discord maybe

heavy oyster
#

clonestickers broken ?

covert eagle
covert eagle
grim cave
#

hey

heavy oyster
grim cave
#

how do i put an image on Custom RPC?

wise dagger
#

direct link to the image

oblique karma
#

ok it build

#

how do I check if I have the custom plugin now?

solar horizon
#

hey guys, sorry for the dumb question. is ProfileBadge.image supposed to be a link?

grim cave
oblique karma
#

does this mean it works

sick glade
#

Guess so

wise dagger
sick glade
#

^

wise dagger
oblique karma
#

looks like it works

heavy oyster
#

cloning emotes work but stickers don't that's strange

grim cave
#

but thx

oblique karma
#

can someone send and delete a message pls

heavy oyster
#

done

oblique karma
#

ok it works

hexed drum
#

how do I have fake nitro profiles, and what is 3y3?

wise dagger
#

3y3 is a colour theme for your profile

#

you paste it into your about me, it’s invisible

#

you just pick the colours, and click copy 3y3

hexed drum
#

ok thank you

oblique karma
#

what does WYFSI do

#

and where do I put the .ts files

sick glade
#

It's a meme plugin you don't need it

verbal valley
oak musk
#

Logging in at the Mobile App

oblique karma
sick glade
verbal valley
#

got it!

shell veldt
sick glade
#

^^

upper hare
shell veldt
#

also what mobile app, vencord android? 😭

#

you shouldn't use it it sucks

sick glade
#

Don't use it lmao

#

vf mobile

mighty ravenBOT
#
Is there a mobile version of Vencord?

Yes actually! We have an Android app embedding the Discord website

However, as Discord's mobile website has some issues (performance, usability, etc), chances are you won't like it.
In that case you will instead want to use one of the following mods focused on Mobile.

Do note however that these mods are not related to / affiliated with Vencord, so we do not provide support for them in any way. Join their support servers for help & more info!

oblique karma
#

is what I use

#

on ios

shell veldt
#

anyway if you were to read that email at all they just detected suspicious activity so they make you change password

#

which likely means u got hacked lol

sick glade
oak musk
#

By your App @shell veldt

north wyvern
#

Is there a way to put it on mobile?

analog silo
sick glade
#

Omg

shell veldt
sick glade
upper hare
shell veldt
#

no

upper hare
#

So it would be easier

analog silo
sick glade
upper hare
shell veldt
sick glade
#

Also ^^

shell veldt
#

the fact that you haven't read either of those proves pinning does nothing

analog silo
#

lmao

sick glade
upper hare
oblique karma
#

its probablt bc his dumbass clicked on some shady steam/csgo link

#

probably*

peak barn
#

Hi! I'm trying to install vencord on a macbook air ventura and although it says its been installed, it hasnt shown up in my actual discord

sick glade
oblique karma
#

yeah its not

#

unless he downloaded a token grabber plugin somewhere outside of here

sick glade
#

Don't know how you'd manage that on Android of all places

shell veldt
#

if just logging into vencord causes your account to be locked that means your account was already flagged to hell and back and it would have likely happened even on stock app

sick glade
#

Let alone on desktop

shell veldt
sick glade
#

Yeah idk

oblique karma
#

someone send a spotify link to some music pls

#

is there a local pins plugins somewhere

hazy breach
oblique karma
#

why is it on vendetta

#

but not on vencord

sick glade
#

Unrelated client mods

oblique karma
#

someone should make local pins

sick glade
#

Well request it or check if someone else already has

oblique karma
#

where?

sick glade
broken tiger
#

ayo
I'm struggling to understand if I can save my themes

sick glade
#

Screenshot

shell veldt
#

vs win

mighty ravenBOT
# shell veldt vs win

⚠️ Do not run the installer as Administrator

Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe

If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.

To do so, open Powershell, run the following command, then follow along with the instructions/prompts

iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
shell veldt
#

your system is 32 bit

#

Read the latter half

sick glade
#

32bit in 2023 husk

#

Just try the second half of the message and see if it works

wise dagger
#

yes darling

sick glade
#

No...

wise dagger
#

can you read

sick glade
#

Did you read what it says right above

#

I hope to god you do

wise dagger
#

old ps version incoming

#

read it

#

input 2

oblique karma
#

how do I install Gmenu on arch linux gnome

sick glade
chrome flint
#

How does the USRBG plug in work?

wise dagger
#

3rd party api

sick glade
#

Read its settings

chrome flint
#

ah ok

broken tiger
frigid belfry
#

how do i install vencord on mac? I downloaded the zip and have vencord installer on my files but it won't open

wispy rock
#

i want to translate vencord to turkish for turkish users, how can i do it?

sick glade
#

Vencord doesn't have translations iirc

broken tiger
#

will plugins save after discord update?

sick glade
#

Yes

wispy rock
#

are you planning to add it in future?

sick glade
#

I don't directly work on the project so I don't know

wispy rock
#

alright can you ask to them for me?

#

because i want to do it when it is avaible

wise dagger
#

wont be anytime soon

shell veldt
#

people should just learn english pog

dull rapids
leaden viper
#

i downloaded a theme and i restarted and it put all the servers in a line across the top of the screen and wont let me do anything

wispy rock
shell veldt
#

vf themes

mighty ravenBOT
#
My themes broke and now I can't open settings or disable them

open the dev tools with CTRL + Shift + i and click on the "console" tab at the top. Then paste and run (with enter) the following code.

It will

  • disable custom css (you can turn it back on in Vencord Settings)
  • copy your current theme links to your clipboard as a backup
  • remove all themes
(() => {
    Vencord.Settings.useQuickCss = false
    copy(Vencord.Settings.themeLinks.join("\n"))
    Vencord.Settings.themeLinks = []
})()
leaden viper
#

is that when i redownloaded it

#

the vencord

wise dagger
#

you dont need to redownload anything

leaden viper
#

okay

shadow condor
#

im trying to add a plugin but i cant find the directory to put it

shell veldt
#

vf plugins

mighty ravenBOT
#
How do I install BetterDiscord / Replugged / [insert other mod here] plugins?

You can't.

Chances are, it's already a Vencord plugin! Or if it isn't, you can open a plugin request

shadow condor
sturdy python
#

build vencord on your local machine

wise dagger
#

page 1 and page 2

high leaf
#

I got a theme and then like everything became messed up and i cant even get to settings

sturdy python
#

vf themes

mighty ravenBOT
#
My themes broke and now I can't open settings or disable them

open the dev tools with CTRL + Shift + i and click on the "console" tab at the top. Then paste and run (with enter) the following code.

It will

  • disable custom css (you can turn it back on in Vencord Settings)
  • copy your current theme links to your clipboard as a backup
  • remove all themes
(() => {
    Vencord.Settings.useQuickCss = false
    copy(Vencord.Settings.themeLinks.join("\n"))
    Vencord.Settings.themeLinks = []
})()
high leaf
#

Thank you it worked

covert eagle
#

how do you put images for custom rpc

bleak python
#

Is there a plugin that I can download profile avatar, banner, server banner?

hearty jungle
#

for some reason spotifycontrols doesnt work for me

unique badge
#

what does watervee mean when they said "css can do this"

broken tiger
#

i want to rebuild to use custom plugins but have some questions for example do i have to rebuild it every time i want to add new plugins and is there an way to save the current plugins to not reinstall them later

daring flower
#

how to install/compile android version?

unique badge
#

vs "css can do this"

mighty ravenBOT
unique badge
#

???

broken tiger
#

?

covert eagle
#

how do you put image for custom rpc

daring flower
bleak python
hearty jungle
#

vs spotifycontrols

mighty ravenBOT
hearty jungle
#

ok i def ont understand this lmao

#

for some reason it doesnt work for me even tho i connected my acc

broken tiger
#

hello friends

#

may somebody please point me in the direction of the vencord folder on windows

#

also this would be a good thing to put in faq

cosmic hull
#

It should go to C:/Users/AppData/Roaming/Vencord/dist

If you haven't chose a custom install location. Make sure to move the Vencord folder into the discord folder for it to work.

broken tiger
#

smol question is there anyway to make vencord remember save path for images and videos ?
meow

#

yeah I didn't chose a custom install, just confused on where to run the custom plugin installs

broken tiger
#

i rmber using some plugin on bd that had it so u could download directly to folder

#

like this

#

but directly into the folder u wanted

cosmic hull
#

I just wonder why you're using Vencord if you're paying $100 dollars a year for nitro perks that this gives you for free bruh

broken tiger
#

whomst?

cosmic hull
#

Distaken

broken tiger
#

im not sure what you mean

cosmic hull
#

What reason are you using Vencord for, first off?

broken tiger
#

modded discord

cosmic hull
#

I just checked your profile while you were typing

#

Ah

broken tiger
#

it's not just for free nitro

cosmic hull
#

You're paying $100 a year for nitro and stuff. Just a little confused on why you're using Vencord

cosmic hull
broken tiger
#

should i not use vencord

cosmic hull
#

I'm not saying that, no.

broken tiger
#

i see

#

just figured this might be more stable

cosmic hull
#

It's just that usually nitro users aren't using this modded stuff

#

They're both pretty stable. Vencord is supposed to get 3rd-party plugins like better discord soon.

broken tiger
#

is there any plugin that lets u save stuff directly into directories

cosmic hull
#

Technically you can do that with your PC itself

broken tiger
#

i would prefer less steps

mossy linden
#

is it possible to use 3rd party plugins on browser?

cosmic hull
#

I didn't see any plugins like that- so there ins't currently

broken tiger
#

i see

cosmic hull
broken tiger
mossy linden
#

ahh

#

alright thanks!

broken tiger
#

i think?

#

im trying to get vc-message-logger-enhanced running but i have no clue where to install it πŸ’€

#

i have zero iq

merry mountain
#

is it normal that the vencord installer has the ghostbusters symbol and says β€œYou need macOS %@ to open this application” when trying to open it on macOS?

ornate radish
#

hey guys does anyone have an idea why my vencord doesn't work i've tried with the terminal and with the graphic installer does somebody have any tips ?

merry mountain
#

girl i just asked a question

hazy breach
ornate radish
#

I think it doesn't even install because in my settings it isn't there

hazy breach
#

if you open the installer does it say it's patched

ornate radish
#

yep

hazy breach
#

then select reinstall vencord and try again

ornate radish
#

welp it didn't work

hazy breach
#

did the installer close discord by itself? if not, are you sure you restarted from the tray (not by pressing the x)?

cosmic hull
#

I had to move Vencord into Discords file directory. Try that.

ornate radish
#

i won't then

wooden solar
#

when running the windows download on my pc it says it cant be run on my computer even though i'm on windows 10 did I do something wrong?

cosmic hull
wooden solar
wise dagger
#

vs win

mighty ravenBOT
# wise dagger vs win

⚠️ Do not run the installer as Administrator

Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe

If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.

To do so, open Powershell, run the following command, then follow along with the instructions/prompts

iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
ornate radish
#

welp imma uninstall discord i'll see if it works

broken tiger
#

vs help

mighty ravenBOT
# broken tiger vs help
  • fixed, update, up
  • linux, l
  • mac, darwin, m
  • missing features, keybinds, mf
  • moreinfo, more info, mi
  • reinstall, redownload
  • windows, w, win
broken tiger
#

vs w

mighty ravenBOT
# broken tiger vs w

⚠️ Do not run the installer as Administrator

Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe

If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.

To do so, open Powershell, run the following command, then follow along with the instructions/prompts

iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
broken tiger
#

hm

#

wait how do i install third party plugins NOOOOO

#

it has to be written somewhere

#

How can i add .js plugins in vencord?

marble palmBOT
broken tiger
#

guys is there a chance of getting termed for using message logger?

ornate radish
#

uninstalling discord did work lol

#

now it works

dapper tundra
#

Can someone help me with installing vencord it wont open>?

hazy breach
#

if there is any

dapper tundra
#

there no error it just wont open

#

i double click and nothing

hazy breach
#

does the installer say discord is patched

karmic abyss
#

the spotify crack plugin does not seem to work

dapper tundra
karmic abyss
#

it keeps loading when i try to listen along

hazy breach
mighty ravenBOT
# hazy breach vs w

⚠️ Do not run the installer as Administrator

Download and run https://github.com/Vencord/Installer/releases/latest/download/VencordInstaller.exe

If the above doesn't work/open, for example because you're using Windows 7, 32 bit, or have a bad GPU, you can instead use our terminal based installer.

To do so, open Powershell, run the following command, then follow along with the instructions/prompts

iwr "https://raw.githubusercontent.com/Vencord/Installer/main/install.ps1" -UseBasicParsing | iex
strange apex
broken tiger
#

how install third party plugin pls owo i am confused sorry for spam

covert eagle
#

how do you put image on ccustom rpc

thorn spade
#

is there any css code to hide my email or phone number

strange apex
broken tiger
#

github

broken tiger
#

idk where the userplugins is

hazy breach
#

that's a message link

thorn spade
frigid lion
#

Is there a way to disable vencord without uninstalling?

thorn spade
#

wdym by that

frigid lion
#

Damn

bright sluice
#

why tf is #moderator-only the welcome channel πŸ’€ and also where do i add suggestions?

karmic abyss
#

will there be a soundboard plugin in the future ?

thorn spade
#

i needed that blur im trying to make a discotd a bit pravite

karmic abyss
#

or a clone sound option

hazy breach
bright sluice
thorn spade
hazy breach
#

vencord can't reenable it, even with workarounds like playing over the mic

cosmic rover
#

i read somewhere about a plugin that will delay to avoid rate limit. was it on here, i am not sure, cannot find anything so far

hazy breach
thorn spade
#

I think he ment the rate limite for vc

cosmic rover
#

the rate limit when i delete emojis or add emojis to my server

#

also i get captchas a lot, guess ive made too many accounts in the past πŸ˜‚

hazy breach
#

nothing vencord can do about those

thorn spade
#

is there a way to have ui for the account selector

#

like what if i let someone use discotd on my computer and they need to use there account

thorn spade
#

can I get a ui to select a account selector ui

arctic vector
#

nicee its released already @shell veldt , did you fix the waves?

shell veldt
thorn spade
#

@shell veldtis it possible to get a account selector ui

cosmic rover
#

alrighty, thx

arctic vector
#

nice

thorn spade
#

if i click on switch account it will pull up a menu to select a account or if im booting up discord it wil pull up the menu to select a account

#

is that possible

#

i seen better has something like that

covert eagle
teal grove
#

Does anyone know how to set RPC status to 'for X' instead of 'X time elapsed'

#

CustomRPC shows time elapsed not 'for X'

karmic crane
#

why's my vencord marked gray in my extensions tab

hazy breach
#

not there

karmic crane
#

i know but i looked at my settings on discord and no changes

#

oh nvm im just blind

hazy breach
#

did you refresh after installing

#

oh

karmic crane
#

thank ypu sunnie

zealous osprey
#

i put the plugin in userplugins but i dont see the user plugin

#

where is it

broken tiger
#

does anyone know how i can use better discord themes on vencord. the one im trying to get doesnt have a supplied link for vencord

zealous osprey
#

idk because i dont have any idea on how to do any of this

broken tiger
#

ok

zealous osprey
#

but try that

broken tiger
#

that worked

#

how did you get the link? i coudve sworn i tried a link just like that

orchid moat
#

hey does anyone know were all the themes that work with vencord

#

im sorry if thats a really dumb question

broken tiger
#

Github or better discord

warm birchBOT
# zealous osprey https://github.com/accrazed/YoRHA-UI-BetterDiscord/blob/master/NieR-Dark-Source....

**NieR-Dark-Source.theme.css: **

/**
 * @name NieR: Automata UI Dark
 * @version 1.5
 * @description Glory to Mankind. || 
 * Thanks to JulioDRai for letting me use their cursors! 
 * ~https://www.deviantart.com/juliodrai || 
 * Thanks to GOmonkeymanGO for letting me use some of their code 
 * ~https://github.com/ChaseIngebritson/YoRHa-Discord-Theme || 
 * @website https://github.com/AccraZed/YoRHA-UI-BetterDiscord
 * @author Accrazed#2710
 * @invite X4nBPCa
 * @authorId 153562159161278473
 */
/*
 *  :::.       .,-:::::   .,-::::: :::::::..    :::.     :::::::::.,:::::::::::::-.  
 *  ;;`;;    ,;;;'````' ,;;;'````' ;;;;``;;;;   ;;`;;    '`````;;;;;;;'''' ;;,   `';,
 * ,[[ '[[,  [[[        [[[         [[[,/[[['  ,[[ '[[,      .n[[' [[cccc  `[[     [[
 * c$$$cc$$$c $$$        $$$         $$$$$$c   c$$$cc$$$c   ,$$P"   $$""""   $$,    $$
 * 888   888,`88bo,__,o,`88bo,__,o, 888b "88bo,888   888,,888bo,_  888oo,__ 888_,o8P'
 * YMM   ""`   "YUMMMMMP" "YUMMMMMP"MMMM   "W" YMM   ""`  `""*UMM  """"YUMMMMMMMP"`  
 */

@import url('https://buns.gay/YoRHA-UI-BetterDiscord/font/stylesheet.css'); /* Font */
@import url('https://buns.gay/YoRHA-UI-BetterDiscord/NieR-Cursor.css'); /* Cursor */
@import url('https://buns.gay/YoRHA-UI-BetterDiscord/NieR-Import.theme.css'); /* Main File */
@import url('https://buns.gay/YoRHA-UI-BetterDiscord/DarkImport.theme.css'); /* Dark Part of Theme */

/* GLOBAL VARIABLES */
:root {
    --color-high: rgb(87, 84, 74);
... (9 lines left)
broken tiger
#

yeah

zealous osprey
#

then do the link

broken tiger
#

ohhhh

orchid moat
#

but the crapy thing is the ones i want dont have the file that vencord uses

zealous osprey
#

which ones do you want

broken tiger
#

i wished we could drop css files like BD

zealous osprey
#

same ngl

broken tiger
#

you use a link on vencord

orchid moat
#

wait nvm

#

i found it

#

im dumb

broken tiger
#

tbh, im having too much fun with the cat follow mouse

orchid moat
#

i didnt realize you have to press theme files on some

zealous osprey
#

i need some help

#

i put a plugin in userplugins

broken tiger
#

?

kind kiln
#

Can I get vencord on my iPhone discord app?

zealous osprey
#

and then when i go back in vencord

broken tiger
zealous osprey
#

idk where the user plugins are

#

so i have no idea how to enable them

kind kiln
broken tiger
#

yup

dull forum
#

Vencord Debug Info

Vencord: v1.3.4 β€’ bea7a17 (Web) - 8 Jul 2023
Discord Branch: stable
Client: Web (Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36)
Platform: Win32
Outdated: false
OpenAsar: false

Enabled Plugins (58):


BadgeAPI, CommandsAPI, ContextMenuAPI, MemberListDecoratorsAPI, MessageAccessoriesAPI, MessageDecorationsAPI, MessageEventsAPI, MessagePopoverAPI, NoticesAPI, ServerListAPI, SettingsStoreAPI, NoTrack, Settings, SupportHelper
broken tiger
#

i dont see why we cant get a mobile discord mod

#

probably because mobile apps suck in general

mossy linden
dull forum
broken tiger
dull forum
#

why do i feel that both of u r related

mossy linden
broken tiger
#

ew

#

no

mossy linden
broken tiger
dull forum
#

just look at the pfp's

mossy linden
#

no

#

honey is honey

dull forum
mossy linden
dull forum
#

( if u have th pfp viewer plugin )

mossy linden
#

im on mobile

dull forum
pearl plinth
#

do properties in the quickcss override the normal ones?

mossy linden
#

stealing what?

dull forum
#

shhhhh

mossy linden
#

the sauce is citrus if you want

#

good manga

#

i recommend

broken tiger
#

im too gay, i cant talk

#

but jack in the box anyday

dull forum
dull forum
mossy linden
dull forum
broken tiger
mossy linden
dull forum
broken tiger
#

WHERE ARE YOU LMFAOOO

#

IT IS 1 PM HERE

dull forum
#

oh πŸ’€

#

well

#

skill issue

broken tiger
#

why are you up at 2 husk

dull forum
#

making music πŸ—£οΈ

zealous osprey
#

how do i enable the userplugins

mossy linden
#

00:00 here

zealous osprey
#

mb forgot i had a macro to paste + enter

dull forum
#

24 hour format

mossy linden
#

im not American

broken tiger
mossy linden
#

= not fat

mossy linden
#

im 183 cm

dull forum
#

eh?

broken tiger
dull forum
#

idk maths

mossy linden
#

183 cm is

dull forum
#

btw

mossy linden
#

6 foot

dull forum
#

i'm drinking coke at 2 AM

mossy linden
broken tiger
#

hold on, i gotta check the rules to see the severity that i can send my favorited gifs at

dull forum
#

coca cola

mossy linden
#

ohhh

#

my bad

dull forum
broken tiger
#

LMAFO

mossy linden
#

i keep mistaking you for a reta-

mossy linden
#

lmao

dull forum
#

send the text

mossy linden
#

yes i make mods

dull forum
#

before the link

#

"Mods!"

mossy linden
#

i make more money off of mods than you guys do

mossy linden
#

already made more than $700+

dull forum
mossy linden
broken tiger
#

LMFAO I DIDNT NOTICE YOU WERE ACTIVE DEV LAMOOO

mossy linden
#

what

dull forum
broken tiger
mossy linden
mossy linden
dull forum
#

the skull emoji is actually a sad jellyfish

dull forum
#

i made a bot

#

but got no badge

mossy linden
#

skill issue

#

is all i hear

orchid moat
#

hey

broken tiger
#

coems πŸ€‘

orchid moat
#

do you guys know why my custom game isnt working on my proflie

dull forum
#

icbdihidbidb

orchid moat
#

what

dull forum
#

uhh

#

u mean

#

customrpc?

orchid moat
#

yeah customrpc

mossy linden
#

you can watch ntts tutorial

orchid moat
#

i am

dull forum
#

i uh

#

bleh

orchid moat
#

i did everything

dull forum
#

mine works

orchid moat
#

its not showing upo

dull forum
#

ill show u mine

broken tiger
#

i uh um uh um uhhhh

dull forum
#

1 sec

pearl plinth
#

why doesnt this css work css #vc-membercount { margin-top: 0.5em; margin-bottom: -1em; }am i dumb

broken tiger
#

omfg

wooden barn
#

Try using rem? em is stupid most of the time

dull forum
dull forum
pearl plinth
#

why is it ignoring my css

tepid urchin
#

when using the message logger does it save the messages somewhere or only the spot they were sent

orchid moat
#

i got it to work

dull forum
#

BAN HIM!!!

orchid moat
#

:D

wooden barn
mossy linden
#

privacy invader lol

orchid moat
#

nah thats me

limber gull
#

do u guys have nothing better to do than spam the support channel

orchid moat
#

im invader

#

:)

zealous osprey
#

how do i enable third party plugins

broken tiger
#

πŸ‘

broken tiger
#

yooooo, message logger anitn dcool

orchid moat
#

i have the best game in playing

zealous osprey
#

where do i enable them

heavy oyster
#

frfr clonesticker needs love thanks

dull forum
broken tiger
#

same

#

same

wooden barn
orchid moat
dull forum
broken tiger
mossy linden
#

im straight

orchid moat
dull forum
wooden barn
broken tiger
#

i will never fix it

broken tiger
#

you cant stop me

#

where do i enable it

hazy breach
dull forum
#

ill send u a pic

broken tiger
zealous osprey
dull forum
broken tiger
orchid moat
#

trans google

broken tiger
#

its canon that you cannot be cis when using vencord. its not possible

orchid moat
#

its a canon event

#

you cant not get in the away of a canon event

zealous osprey
broken tiger
#

now how install custom plugin, pnpm is fuckied on my windows install so i cant use it

broken tiger
wooden barn
# zealous osprey do i reinstall

In dev mode yes
You asking this confirms your lack of reading and following instructions
Third party plugins only work in dev mode

zealous osprey
#

i did everything

#

but like where do i enable them

broken tiger
#

I don't use message logger because i respect peoples boundaries

wooden barn
#

In the normal plugins menu

lime matrix
#

a few hours ago i had access to super reactions, now i dont

wooden barn
orchid moat
#

stop having problems

wooden barn
#

Non nitro users only can use 2 a week

broken tiger
orchid moat
lime matrix
#

ohhhhhhhhhh thank you ❀️

orchid moat
#

its 2 in a lifetime

zealous osprey
lime matrix
#

now i feel dumb XD

orchid moat
#

if its 2 a week why cant i do at all anymore

hazy breach
#

yall this is support please keep it for support

wooden barn
broken tiger
#

dude, when you cant fix something. just fix it

#

its not that hard smh

orchid moat
broken tiger
#

just fix it

wooden barn
#

Not in dev mode or didn't install plugin right

zealous osprey
frigid lion
#

What does this remove exactly?

zealous osprey
#

i think i didnt install right

wooden barn
zealous osprey
#

nvm

#

somehow im not

#

i relaunched installer and it said i wasnt

#

1 sec

broken tiger
#

guys i fixed pnpm all I had to do was- gmod ragdoll sounds

zealous osprey
#

im in devmode now

#

plugin still doesnt show up

#

i put the plugin file in the vencord/src/userplugins

#

i just dont see it though

broken tiger
#

yhis

#

is horrid

#

i have not in fact fixed it

PS C:\Users\Astro\Vencord> pnpm i
Lockfile is up to date, resolution step is skipped
Packages: +409
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Progress: resolved 409, reused 409, downloaded 0, added 0, done
node_modules/.pnpm/esbuild@0.15.18/node_modules/esbuild: Running postinstall script, failed in 20ms
.../esbuild@0.15.18/node_modules/esbuild postinstall$ node install.js
β”‚ 'node' is not recognized as an internal or external command,
β”‚ operable program or batch file.
└─ Failed in 21ms at C:\Users\Astro\Vencord\node_modules\.pnpm\esbuild@0.15.18\node_modules\esbuild
node_modules/.pnpm/esbuild@0.17.18/node_modules/esbuild: Running postinstall script, failed in 29ms
.../esbuild@0.17.18/node_modules/esbuild postinstall$ node install.js
β”‚ 'node' is not recognized as an internal or external command,
β”‚ operable program or batch file.
└─ Failed in 29ms at C:\Users\Astro\Vencord\node_modules\.pnpm\esbuild@0.17.18\node_modules\esbuild
 ELIFECYCLE  Command failed with exit code 1.
PS C:\Users\Astro\Vencord>

someone help i reinstalled node and everything NOOOOO

wooden barn
#

IIRC You have to put it in vencord/src/userplugins/pluginName/index.tsx

limber gull
# frigid lion What does this remove exactly?

when you copy a url most of them have some information appended to them such as what platform it was copied from etc, this plugin removes that information from links (in most examples its everything after a ? near the end of the url)

broken tiger
#

this too

FOR FUTURE PEOPLE RUN CMD AS ADMIN IT FIXES THIS
OR RUN THE COMMAND (in this case node scripts/build/build.mjs) MANUALLY

zealous osprey
#

i just drag and dropped the .ts file in

#

i didnt put it in a folder

#

mb

#

thank you

broken tiger
#

What’s the difference between Vencord and BetterDiscord? Is there much?

#

i love red 40 in my blood

limber gull
#

vencord has shiggy

broken tiger
limber gull
bitter elm
#

[citation needed]

wooden barn
#

Once you have it, it's better because it's plugins are faster because technical reasons (regex > monkey patching)

Also its cuter

alpine gull
unique badge
#

anyone know what this means