CREATE TABLE test (
id serial PRIMARY KEY,
perm INT NOT NULL
);
client.on("ready", () => { | |
const presence = createSpotifyRPC(client) | |
.setAssetsLargeImage("spotify:f2ed07272dec9cfc3b6805e9c59eac3391a59bed") | |
.setAssetsSmallImage("spotify:f2ed07272dec9cfc3b6805e9c59eac3391a59bed") | |
.setDetails("RpcGenerator - Demo") | |
.setState("Rpc Generator") | |
client.user.setPresence(presence.toDiscord()) | |
}) |
Thanks to Savitarax
for their YouTube video guides.
https://www.youtube.com/watch?v=MUy3tMPRffQ
https://www.youtube.com/watch?v=WQkB-EQ_mi4
Make sure your mouse is the only thing that is plugged into a USB controller. This can be done by using Device Manager
.
So, I always had this problem with my PC where my mouse latency felt different every time I restarted my PC. It felt like velocity was added to my mouse every time I moved it and at random values. I tried lots of different things and nothing seemed to help me. This kind of problem is also hard to troubleshoot since it's sometimes really hard to detect if it's fixed or not unless you play a game for a bit. This made me lose a lot of Overwatch games :(
When moving your mouse instantly from one side to another, you can see the delay. It should be INSTANT, but it is not.
• New Mouse
• Different USB Port
• Interrupt Affinity Policy Tool
• ISLC
// list of permissions | |
const ADMIN = 2; | |
const SEND_MESSAGE = 1; | |
// my current permission | |
let myPerms = 0; | |
console.log(containsPerm(ADMIN)) | |
//addPerm(ADMIN) | |
addPerm(SEND_MESSAGE) |