Inky
Inky
DIAdiscord.js - Imagine an app
Created by Duckie on 3/28/2025 in #djs-questions
how to i listen for dm messages
Did you import Partials?
10 replies
DIAdiscord.js - Imagine an app
Created by Duckie on 3/28/2025 in #djs-questions
how to i listen for dm messages
Do you also have the channel partial?
10 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Prob just make a utility function
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Then you just add the all flags at the beginning of the array
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Assignment still is incorrect tho. deny should be set to false
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Oh, I see
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Also if ur gonna do that, just throw the array into Object.from entries
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
The assignment isn’t correct in the forEach
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Could do some micro optimizations to do a single loop
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
const allowBf = new PermissionsBitField(BigInt(allow));
const denyBf = new PermissionsBitField(BigInt(deny));

const perms = {};
Object.keys(PermissionsBitField.Flags).forEach(p => (perms[p] = null));
allowBf.toArray().map(p => (perms[p] = true));
denyBf.toArray().map(p => (perms[p] = true));

return perms;
const allowBf = new PermissionsBitField(BigInt(allow));
const denyBf = new PermissionsBitField(BigInt(deny));

const perms = {};
Object.keys(PermissionsBitField.Flags).forEach(p => (perms[p] = null));
allowBf.toArray().map(p => (perms[p] = true));
denyBf.toArray().map(p => (perms[p] = true));

return perms;
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
I rly don’t think it’s that hard to convert to an perm overwrite option object
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Good luck
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Or is that the wrong way
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Oh, PermissionOverwrites.resolve alr exists
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Gl keeping that code working in future updates
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Although, it prob isn’t hard to make a function that converts between the two types easily
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Just gotta make sure that race coeditions don’t occur
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
It’s prob easier to set them all at once
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
Can you log allow, deny, and changes?
66 replies
DIAdiscord.js - Imagine an app
Created by -fishon? on 3/25/2025 in #djs-questions
PermissionOverwrites Why did this stop working?
When you say it’s created w/o the old data, do you mean all permissions are neutral/middle
66 replies