Skip to content

Instantly share code, notes, and snippets.

@Spacey4K
Last active May 16, 2023 19:11
Show Gist options
  • Save Spacey4K/7b55505a853555eabc23d8258cf670e0 to your computer and use it in GitHub Desktop.
Save Spacey4K/7b55505a853555eabc23d8258cf670e0 to your computer and use it in GitHub Desktop.
Get all discord party mode achievements

Discord Party Mode achievements

How to get all Discord Party Mode achievements

Tutorial

  • Is this thing on? - Enable Party Mode enable
  • Is it me you're looking for? - @mention someone
  • Prepare for trouble - Combo multiplier x2
  • Stuck in character creation - Customize Confetti confetti
  • The IT Solution - Disable Party Mode disable
  • *Discord notification sound* - get mentioned
  • And Make It double - Combo multiplier x4
  • More!! - increase shake intensity shake
  • A Puebla party - Combo multiplier x5
  • Happy birthday!! - Combo multiplier x7
  • Click for your free prize! - Congrats, 100th visitor (Quickly switch between the Party Mode and Voice & Video tabs)

Cheat

Open Discord in the browser or enable dev tools by setting "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true in %appdata%/discord/settings.json
Open dev tools with ctrl+shift+i & go to Application > Storage > Local Storage > discord.com
Find or create the PoggermodeAchievementStore key and copy paste the local_storage.json file into the value.
Then press enter & restart Discord with ctrl+r and you should have all achievements unlocked & you can claim ur price ;)

See the script.vbs at the bottom to automate this

  • Will you still need me? - When I'm 64
  • Travel through time - 88 miles per hour
  • 80's pop - Total score 99
  • Animation fan - Total score 113
  • Two birds, one stone - Remember 430
  • Klondike's cell - Total score 555
  • Gonna be the very best - Catch them if you can (898)
  • Be elite - Total score 1337
  • A Slide Puzzle - True Math Fan 2048
{"_state":{"unlockedAchievements":{"0":{"achievementId":0,"dateUnlocked":1652551216423},"1":{"achievementId":1,"dateUnlocked":1652551216523},"2":{"achievementId":2,"dateUnlocked":1652551216623},"3":{"achievementId":3,"dateUnlocked":1652551216723},"4":{"achievementId":4,"dateUnlocked":1652551216823},"5":{"achievementId":5,"dateUnlocked":1652551216923},"6":{"achievementId":6,"dateUnlocked":1652551217023},"7":{"achievementId":7,"dateUnlocked":1652551217123},"8":{"achievementId":8,"dateUnlocked":1652551217223},"9":{"achievementId":9,"dateUnlocked":1652551217323},"10":{"achievementId":10,"dateUnlocked":1652551217423},"11":{"achievementId":11,"dateUnlocked":1652551217523},"12":{"achievementId":12,"dateUnlocked":1652551217623},"13":{"achievementId":13,"dateUnlocked":1652551217723},"14":{"achievementId":14,"dateUnlocked":1652551217823},"15":{"achievementId":15,"dateUnlocked":1652551217923},"16":{"achievementId":16,"dateUnlocked":1652551218023},"17":{"achievementId":17,"dateUnlocked":1652551218123},"18":{"achievementId":18,"dateUnlocked":1652551218223},"19":{"achievementId":19,"dateUnlocked":1652551218323}}},"_version":0}
Set WshShell = WScript.CreateObject("WScript.Shell")
WScript.sleep 100
WshShell.AppActivate("discord") 'focus the discord window
WScript.sleep 100
Dim arr(9)
arr(0) = 64
arr(1) = 88
arr(2) = 99
arr(3) = 113
arr(4) = 430
arr(5) = 555
arr(6) = 898
arr(7) = 1337
arr(8) = 1024
arr(9) = 1024
For Each a In arr
For i = 1 To a
WshShell.SendKeys "x"
WScript.sleep 20 'delay
Next
WshShell.SendKeys "{ENTER}"
WScript.sleep 500 'delay
If a <> 1024 Then ' split 2048 into 2*1042 because of the 2000 char limit for non Nitro users
WScript.sleep 2000 'reset combo
End If
Next
WScript.Echo "Completed"
@uselesnik
Copy link

usefull

@george-jw
Copy link

oh jeez

@MJHeijster
Copy link

MJHeijster commented May 14, 2022

I don't see vbs a lot anymore, very nice!

@GaboAlfa10
Copy link

It was really useful and I needed to spam to get all the ''Total Score'' achievements.

@GaboAlfa10
Copy link

But overall really good, the only thing that I don't like is that you didn't put you needed nitro for the ''A Slide Puzzle''.

@MJHeijster
Copy link

MJHeijster commented May 15, 2022

But overall really good, the only thing that I don't like is that you didn't put you needed nitro for the ''A Slide Puzzle''.

You don't, hence the:
If a <> 1024 Then ' split 2048 into 2*1042 because of the 2000 char limit for non Nitro users
WScript.sleep 2000 'reset combo
End If

which uses the combo multiplier.

What it does is it gets the 1024 achievement, then it doesn't wait for 2000ms (resetting the combo multiplier) and does 1024 again, which gets the 2048 achievement.

@GaboAlfa10
Copy link

O sorry, I didn't read the script of script.vbs. So really good. xD

@GaboAlfa10
Copy link

But overall really good, the only thing that I don't like is that you didn't put you needed nitro for the ''A Slide Puzzle''.

You don't, hence the: If a <> 1024 Then ' split 2048 into 2*1042 because of the 2000 char limit for non Nitro users WScript.sleep 2000 'reset combo End If which uses the combo multiplier.

What it does is it gets the 1024 achievement, then it doesn't wait for 2000ms (resetting the combo multiplier) and does 1024 again, which gets the 2048 achievement.

Yes, I didn't read that at first xD.

@GaboAlfa10
Copy link

I am really blind for reading codes because I have nothing to do with them because I do not have a coding app.

@MJHeijster
Copy link

All fine, I have only been reading VB(.NET) for a year and I do not always get it at first glance.

@AuraDvin
Copy link

Spacey moment o7

@ddday
Copy link

ddday commented May 15, 2022

Thank you for this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment