Skip to content

Instantly share code, notes, and snippets.

@aamiaa
Last active June 22, 2024 00:51
Show Gist options
  • Save aamiaa/204cd9d42013ded9faf646fae7f89fbb to your computer and use it in GitHub Desktop.
Save aamiaa/204cd9d42013ded9faf646fae7f89fbb to your computer and use it in GitHub Desktop.
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

This no longer works if you're alone in vc! Somebody else has to join you!

Warning

There are now two quest types ("stream" and "play")! Pay attention to the instructions!

How to use this script:

  1. Accept a quest under User Settings -> Gift Inventory
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
Click to expand
let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let ApplicationStreamingStore, RunningGameStore, QuestsStore, ExperimentStore, FluxDispatcher, api
if(window.GLOBAL_ENV.SENTRY_TAGS.buildId === "366c746173a6ca0a801e9f4a4d7b6745e6de45d4") {
	ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
	RunningGameStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getRunningGames).exports.default;
	QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
	ExperimentStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getGuildExperiments).exports.default;
	FluxDispatcher = Object.values(wpRequire.c).find(x => x?.exports?.default?.flushWaitQueue).exports.default;
	api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports.HTTP;
} else {
	ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.Z?.getStreamerActiveStreamMetadata).exports.Z;
	RunningGameStore = Object.values(wpRequire.c).find(x => x?.exports?.ZP?.getRunningGames).exports.ZP;
	QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.Z?.getQuest).exports.Z;
	ExperimentStore = Object.values(wpRequire.c).find(x => x?.exports?.Z?.getGuildExperiments).exports.Z;
	FluxDispatcher = Object.values(wpRequire.c).find(x => x?.exports?.Z?.flushWaitQueue).exports.Z;
	api = Object.values(wpRequire.c).find(x => x?.exports?.tn?.get).exports.tn;
}

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let isApp = navigator.userAgent.includes("Electron/")
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else {
	const pid = Math.floor(Math.random() * 30000) + 1000
	
	let applicationId, applicationName, secondsNeeded, secondsDone, canPlay
	if(quest.config.configVersion === 1) {
		applicationId = quest.config.applicationId
		applicationName = quest.config.applicationName
		secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
		secondsDone = quest.userStatus?.streamProgressSeconds ?? 0
		canPlay = quest.config.variants.includes(2)
	} else if(quest.config.configVersion === 2) {
		applicationId = quest.config.application.id
		applicationName = quest.config.application.name
		canPlay = ExperimentStore.getUserExperimentBucket("2024-04_quest_playtime_task") > 0 && quest.config.taskConfig.tasks["PLAY_ON_DESKTOP"]
		const taskName = canPlay ? "PLAY_ON_DESKTOP" : "STREAM_ON_DESKTOP"
		secondsNeeded = quest.config.taskConfig.tasks[taskName].target
		secondsDone = quest.userStatus?.progress?.[taskName]?.value ?? 0
	}

	if(canPlay) {
		api.get({url: `/applications/public?application_ids=${applicationId}`}).then(res => {
			const appData = res.body[0]
			const exeName = appData.executables.find(x => x.os === "win32").name.replace(">","")
			
			const games = RunningGameStore.getRunningGames()
			const fakeGame = {
				cmdLine: `C:\\Program Files\\${appData.name}\\${exeName}`,
				exeName,
				exePath: `c:/program files/${appData.name.toLowerCase()}/${exeName}`,
				hidden: false,
				isLauncher: false,
				id: applicationId,
				name: appData.name,
				pid: pid,
				pidPath: [pid],
				processName: appData.name,
				start: Date.now(),
			}
			games.push(fakeGame)
			FluxDispatcher.dispatch({type: "RUNNING_GAMES_CHANGE", removed: [], added: [fakeGame], games: games})
			
			let fn = data => {
				let progress = quest.config.configVersion === 1 ? data.userStatus.streamProgressSeconds : Math.floor(data.userStatus.progress.PLAY_ON_DESKTOP.value)
				console.log(`Quest progress: ${progress}/${secondsNeeded}`)
				
				if(progress >= secondsNeeded) {
					console.log("Quest completed!")
					
					const idx = games.indexOf(fakeGame)
					if(idx > -1) {
						games.splice(idx, 1)
						FluxDispatcher.dispatch({type: "RUNNING_GAMES_CHANGE", removed: [fakeGame], added: [], games: []})
					}
					FluxDispatcher.unsubscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
				}
			}
			FluxDispatcher.subscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
			
			console.log(`Spoofed your game to ${applicationName}. Wait for ${Math.ceil((secondsNeeded - secondsDone) / 60)} more minutes.`)
		})
	} else {
		let realFunc = ApplicationStreamingStore.getStreamerActiveStreamMetadata
		ApplicationStreamingStore.getStreamerActiveStreamMetadata = () => ({
			id: applicationId,
			pid,
			sourceName: null
		})
		
		let fn = data => {
			let progress = quest.config.configVersion === 1 ? data.userStatus.streamProgressSeconds : Math.floor(data.userStatus.progress.STREAM_ON_DESKTOP.value)
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) {
				console.log("Quest completed!")
				
				ApplicationStreamingStore.getStreamerActiveStreamMetadata = realFunc
				FluxDispatcher.unsubscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
			}
		}
		FluxDispatcher.subscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
		
		console.log(`Spoofed your stream to ${applicationName}. Stream any window in vc for ${Math.ceil((secondsNeeded - secondsDone) / 60)} more minutes.`)
		console.log("Remember that you need at least 1 other person to be in the vc!")
	}
}
  1. Follow the printed instructions depending on what type of quest you have
    • If your quest says to "play" the game, you can just wait and do nothing
    • If your quest says to "stream" the game, join a vc with a friend or alt and stream any window
  2. Wait for 15 minutes
  3. You can now claim the reward in User Settings -> Gift Inventory!

You can track the progress by looking at the Quest progress: prints in the Console tab, or by reopening the Gift Inventory tab in settings.

FAQ

Q: Ctrl + Shift + I doesn't work

A: Either download the ptb client, or use this to enable DevTools on stable

Q: I get an error saying "Unauthorized"

A: Discord has patched the script from working in browsers. Use the desktop app, or alternatively find some extension which lets you change your User-Agent and append the string Electron/ anywhere in it.

They have also started checking how many people are in the vc, so make sure you join it on at least 1 other account.

Q: I get a different error

A: Make sure you're copy/pasting the script correctly and that you've have done all the steps.

@04Roberto
Copy link

QSJCZLSDWYN5
code

@SOME-01
Copy link

SOME-01 commented Apr 27, 2024

BTW is there a way to do it on mobile (ios)

@Pwn17
Copy link

Pwn17 commented Apr 27, 2024

XBJUH5SSLGU5

@ROBLOXfinull
Copy link

how i solve this
Capture d'écran 2024-04-27 144602

@Higuyshowisitgoing
Copy link

how i solve this Capture d'écran 2024-04-27 144602

Let a person join the vc

@TheRedEnd2000
Copy link

5SKCHLTH6DHV

@Jettcodey
Copy link

Another Free Code xD
ST3CZMBYA4G9

@Higuyshowisitgoing
Copy link

Nothing appears when I press ctrl+shift+I can someone help me

@Higuyshowisitgoing
Copy link

when i press ctrl+shift+i no console appears pls help

Did you fix it?

@driverspy
Copy link

Gif

Nice! 🎉

@uSkizzik
Copy link

Worked like a charm, 8A2UH4TXLHVV.

@Vitaliklidy
Copy link

not working

@bugsisbadd
Copy link

I don't play genshin. Take - 9BJDZLAE58JD

@spidervinny
Copy link

omg i forgot to unsub. THE AMOUNT OF EMAILS I GOT… my mom’s phone had my gmail on there too and it was exploding 😭

@spidervinny
Copy link

spidervinny commented Apr 27, 2024

Nothing appears when I press ctrl+shift+I can someone help me

try ctrl+i instead, maybe?
the shift in my browser interrupted the execution when i did it yesterday

if this doesnt work, check FAQ

@spidervinny
Copy link

BTW is there a way to do it on mobile (ios)

i remember a comment from here that there is..? but it’s pretty hard so do it on desktop
i may be mistaking a different comment but yeah.

@SOME-01
Copy link

SOME-01 commented Apr 27, 2024

lol mine stuck at 40%

Gif

Nice! 🎉

@Yemer55IsBack
Copy link

Yemer55IsBack commented Apr 27, 2024

when i press ctrl+shift+i no console appears pls help
If your on Stable, download BetterDiscord, Go to Settings, Scroll down to BetterDiscord Section and click Settings, Scroll Down, Open the Developer Settings Dropdown Menu, Toggle the "DevTools" toggle to on, Restart Discord, then try Ctrl + Shift + I or F12.

@spidervinny
Copy link

it says "No character information on current server. Please create a character first before redeeming the redemption code." how to fix?

you dont have an account on the specified server, im guessing
i havent played genshin since like 3 years so try other servers

@spidervinny
Copy link

lol mine stuck at 40%

Gif
Nice! 🎉

have you disconnected while doing it?

@Jettcodey
Copy link

And Another one
RSKVYLSWWEV9

@Yemer55IsBack
Copy link

Code: NSJUY74TR3XV

@spidervinny
Copy link

not working

you may be doing something wrong. check FAQ or ask a question here

im no professional, just trying to help out the most i can lol

@spidervinny
Copy link

I DO NOT USE CHROME MY GLEEBY DEEBY ASS IS HALF ASLEEP I USE OPERA GX

Opera GX runs on Chromium, it's just reskinned Chrome with a few more functions

oh. Bruh.

@uSkizzik
Copy link

omg i forgot to unsub. THE AMOUNT OF EMAILS I GOT… my mom’s phone had my gmail on there too and it was exploding 😭

relatable

@AliAlexRG
Copy link

"Discord has patched the script from working in browsers. Use the desktop app, or alternatively find some extension which lets you change your User-Agent and append the string Electron/ anywhere in it." what does this mean and also, have any extension suggestion?

So does this no longer work?

@YTAW
Copy link

YTAW commented Apr 27, 2024

because it doesnt work in the browser anymore how do i paste the code in on the desktop app?

@NimaWasTaken
Copy link

SS3CG4CLB4PD

@Yemer55IsBack
Copy link

Yemer55IsBack commented Apr 27, 2024

because it doesnt work in the browser anymore how do i paste the code in on the desktop app?
If your on Stable, download BetterDiscord, Go to Settings, Scroll down to BetterDiscord Section and click Settings, Scroll Down, Open the Developer Settings Dropdown Menu, Toggle the "DevTools" toggle to on, Restart Discord, then try Ctrl + Shift + I or F12.

@YTAW
Copy link

YTAW commented Apr 27, 2024

because it doesnt work in the browser anymore how do i paste the code in on the desktop app?
If your on Stable, download BetterDiscord, Go to Settings, Scroll down to BetterDiscord Section and click Settings, Scroll Down, Open the Developer Settings Dropdown Menu, Toggle the "DevTools" toggle to on, Restart Discord, then try Ctrl + Shift + I or F12.

so download better discord on windows or your platform and scroll to settings?

@Higuyshowisitgoing
Copy link

It’s still working I used the desktop app method

@YTAW
Copy link

YTAW commented Apr 27, 2024

It’s still working I used the desktop app method

how did you do it?

@Higuyshowisitgoing
Copy link

because it doesnt work in the browser anymore how do i paste the code in on the desktop app?

Did you use this method https://gist.github.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb?permalink_comment_id=5038299#gistcomment-5038299

@Yemer55IsBack
Copy link

because it doesnt work in the browser anymore how do i paste the code in on the desktop app?
If your on Stable, download BetterDiscord, Go to Settings, Scroll down to BetterDiscord Section and click Settings, Scroll Down, Open the Developer Settings Dropdown Menu, Toggle the "DevTools" toggle to on, Restart Discord, then try Ctrl + Shift + I or F12.

so download better discord on windows or your platform and scroll to settings?

Download better discord, go to your user settings, if you scroll down you should see a section called BetterDiscord, in that section, you should see Settings, click that. Then scroll down till you see "Developer Settings". Click that an some settings should pop out. Toggle on DevTools then restart Discord.

@Yemer55IsBack
Copy link

because it doesnt work in the browser anymore how do i paste the code in on the desktop app?

Did you use this method https://gist.github.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb?permalink_comment_id=5038299#gistcomment-5038299

That didnt work for me.

@At-Heal
Copy link

At-Heal commented Apr 27, 2024

Code: 4AKDH4D2NSAV

@sxck36
Copy link

sxck36 commented Apr 27, 2024

DA2CZLV38ZFH

@ItsIan0
Copy link

ItsIan0 commented Apr 27, 2024

bro how do you restart discord

@Yemer55IsBack
Copy link

bro how do you restart discord

Close Discord then Reopen it

@ItsIan0
Copy link

ItsIan0 commented Apr 27, 2024

dont work

@Higuyshowisitgoing
Copy link

bro how do you restart discord

Restarting discord didn’t work for me but restarting the whole pc worked

@Higuyshowisitgoing
Copy link

because it doesnt work in the browser anymore how do i paste the code in on the desktop app?

Did you use this method https://gist.github.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb?permalink_comment_id=5038299#gistcomment-5038299

That didnt work for me.

It worked for me in like 30 minutes ago, can you tell me where your problem is?

@30krishg
Copy link

30krishg commented Apr 27, 2024

Can someone please give me a unused code.

@Higuyshowisitgoing
Copy link

Can someone please give me a code.

Here’s mine CSKVG4VJCKGV

@doceazedo
Copy link

Tip: you can also do this in a voice call with a music bot :)

@AbstractScripts
Copy link

Thanks! Code: KS2CZLV84RC5

@qoestra
Copy link

qoestra commented Apr 27, 2024

8S2VZLD97V2R

@Yemer55IsBack
Copy link

because it doesnt work in the browser anymore how do i paste the code in on the desktop app?

Did you use this method https://gist.github.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb?permalink_comment_id=5038299#gistcomment-5038299

That didnt work for me.

It worked for me in like 30 minutes ago, can you tell me where your problem is?

There is no problem, I already did the quest with BetterDiscord. If you really want to know, the Devtools option in settings.json was already set to true.

@CodeGeek-01
Copy link

Can someone please give me a unused code.

LB2DHPF4D7FD take mine

@CJLoophole
Copy link

I did it! And I got a code: 6A3DH5D8NLYM!

@temp-pk
Copy link

temp-pk commented Apr 27, 2024

code == NAJDG4U8B8E9

@MeesJ
Copy link

MeesJ commented Apr 27, 2024

4TKUZLU9E6FH

@barnaq
Copy link

barnaq commented Apr 27, 2024

code: NSKUG5DQCCUD

@nightware47
Copy link

JS3CZMDRXNZ9

@Abelkrijgtalles
Copy link

ZBJCGLU9HJVR

@qoestra
Copy link

qoestra commented Apr 27, 2024

WSKDZLUP5925

@Revod
Copy link

Revod commented Apr 27, 2024

Worked for me using the discord app + a music bot

Here's the code if anyone need it: EB2DGLD6B6S9

@iJoeey
Copy link

iJoeey commented Apr 27, 2024

i hate my luck

@devdcc
Copy link

devdcc commented Apr 27, 2024

It literally works

@iJoeey
Copy link

iJoeey commented Apr 27, 2024

it's not

@Revod
Copy link

Revod commented Apr 27, 2024

it's not

Screenshot 2024-04-27 at 10 11 05 AM

Bro I just finished the stream when I sent that post, literally still works if you use discord app + a bot to stay with you

@iJoeey
Copy link

iJoeey commented Apr 27, 2024

i mean browser

@Revod
Copy link

Revod commented Apr 27, 2024

i mean browser

well, even if you run the script rn says that: no longer works in browser

@ItsIan0
Copy link

ItsIan0 commented Apr 27, 2024

ye

@iJoeey
Copy link

iJoeey commented Apr 27, 2024

in discord ?

@SOME-01
Copy link

SOME-01 commented Apr 27, 2024

how to make it work on browser

@Jkingnick2
Copy link

Im getting the "This no longer works in browser. Use the desktop app!" Error

@deyaee
Copy link

deyaee commented Apr 27, 2024

IF IT NOT WORKING:

try downloading betterdiscord and enable devtool in better discord settings
after that click ctrl + shift + i in the discord app and do the steps
also you can share screen to the bot

@deyaee
Copy link

deyaee commented Apr 27, 2024

Im getting the "This no longer works in browser. Use the desktop app!" Error
IF IT NOT WORKING:

try downloading betterdiscord and enable devtool in better discord settings
after that click ctrl + shift + i in the discord app and do the steps
also you can share screen to the bot

@linus-jansson
Copy link

To everyone that is having problem with this, download the canary version of discord. You can open the console using ctrl+shift+I in there no problem and paste in the command, seems to be working for me

image

@so5s
Copy link

so5s commented Apr 27, 2024

For AMD users the screenshot hotkey is also CTRL + SHIFT + I if the console won't open you need to change the screenshot hotkey

@wmcy2
Copy link

wmcy2 commented Apr 27, 2024

2TJCG4CZXDED

@wmcy2
Copy link

wmcy2 commented Apr 27, 2024

Im getting the "This no longer works in browser. Use the desktop app!" Error

do the same in the app +you need someone in the vc too , we can use music bot

@wmcy2
Copy link

wmcy2 commented Apr 27, 2024

Im getting the "This no longer works in browser. Use the desktop app!" Error

do the same in the app +you need someone in the vc too , we can use music bot

you**

@linus-jansson
Copy link

To everyone that is having problem with this, download the canary version of discord. You can open the console using ctrl+shift+I in there no problem and paste in the command, seems to be working for me

image

This worked for me btw heres another code: KTJDGLCF8M6M

@NicholasFlamy
Copy link

Lol, so many clueless people. This is for tech-savvy people who like to work around things to get sometimes pointless rewards.

@linus-jansson
Copy link

Lol, so many clueless people. This is for tech-savvy people who like to work around things to get sometimes pointless rewards.

What are you on? 😂

@Dityaren
Copy link

Lol, so many clueless people. This is for tech-savvy people who like to work around things to get sometimes pointless rewards.

I dont agree with that tech-savvy statement, but I do find it absurd that they dont read the FAQ section

@Dityaren
Copy link

just use the DevTools on desktop way, its much more simpler and fast than downloading other client

@TheBigSTN
Copy link

Free genshin code:TT2VGMWMSNWH

@AliiiAm
Copy link

AliiiAm commented Apr 27, 2024

press ctrl + shift + i then go to console tab

type allow pasting

start screen sharing
paste code and press enter
enjoy.

@AliiiAm
Copy link

AliiiAm commented Apr 27, 2024

6BKDYLW86UP5

@Futuremappermydud
Copy link

SBJCHLF9WBS5

@TheNolle
Copy link

Free code for you: 8A3VGMCYDMY5

@cizg
Copy link

cizg commented Apr 27, 2024

RSKDHLE7SZRV

@Blakwrym
Copy link

RA2UGME7X3KM

@aaaa1Z2Z12321312
Copy link

IF IT NOT WORKING:

try downloading betterdiscord (https://docs.betterdiscord.app/developers/devtools) and enable devtool in better discord settings
after that click ctrl + shift + i in the discord app and do the steps
also you can share screen to the bot

@PikachuGabe
Copy link

PikachuGabe commented Apr 27, 2024

IF IT NOT WORKING:

try downloading betterdiscord (https://docs.betterdiscord.app/developers/devtools) and enable devtool in better discord settings after that click ctrl + shift + i in the discord app and do the steps also you can share screen to the bot

Or use vencord, which has dev tools enabled by default and is much more stable and less laggy than betterdiscord. https://vencord.dev/download/ since we are already sending links here. @deyaee make sure you read this too :)

@W1ldAustin
Copy link

seems I have to stay in the Quests tab or it will reset the progress bar

@stevieggtest
Copy link

it's not

Screenshot 2024-04-27 at 10 11 05 AM Bro I just finished the stream when I sent that post, literally still works if you use discord app + a bot to stay with you

how do you do it in app

@KasmaiLee
Copy link

how do i claim those free codes everyone is sending, and what those are for?

@aamiaa
Copy link
Author

aamiaa commented Apr 27, 2024

how do i claim those free codes everyone is sending, and what those are for?

They're for genshin. If you play it, you can redeem one at https://genshin.hoyoverse.com/en/gift

@KasmaiLee
Copy link

how do i claim those free codes everyone is sending, and what those are for?

They're for genshin. If you play it, you can redeem one at https://genshin.hoyoverse.com/en/gift

i dont play, i thought it was for badge. btw i tried streaming other game for 40 mins and nothing happened... do i have to stream genshin impact only?

@anexi97400
Copy link

VBJUZ5EHNZ6V

@a7md8762
Copy link

Thank you for the cool tutorial!!!

JB2CHMFGEZ6D

@NathanCrazy
Copy link

VSJDZLEXJ7B9

@wibabe
Copy link

wibabe commented Apr 27, 2024

Thanks!
KS3VZ5FXU3XD
Enjoy <3

@L1shed
Copy link

L1shed commented Apr 27, 2024

thanks to ntts

@pesoki
Copy link

pesoki commented Apr 27, 2024

Does not work for some reason, i ran the cmd in console but it doesnt actually screenshare anything
I tried also calling in dms. Im using vencord ctrl shift i all works , any ideas? It says undefined under it also.
Screenshot from 2024-04-27 23-45-48

@pesoki
Copy link

pesoki commented Apr 27, 2024

It doesnt work from browser even when i spoofed the useragent to Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) discord/0.0.306 Chrome/78.0.3904.130 Electron/7.1.11 Safari/537.36.

:(

@aamiaa
Copy link
Author

aamiaa commented Apr 27, 2024

@pesoki You have to start the screenshare yourself

@DevBefell
Copy link

For now, and future, best and most reliable way to do so is having a exe (if on Windows) that has a GUI and renaming the file tree similarly to the game's, and Discord will detect it as that game. E.G Genshin Impact path is Genshin Impact Game/GenshinImpact.exe, then streaming it to a private server of sort with a friend or alt that is in there.
NOTE: It is possible they patch this way as well, but that would be a matter of finding what other way they use and how to reverse that.

@ZSabiudj
Copy link

very cool thank you!
Also heres another code: XTJCY4HRNHZ5

@PikachuGabe
Copy link

Does not work for some reason, i ran the cmd in console but it doesnt actually screenshare anything I tried also calling in dms. Im using vencord ctrl shift i all works , any ideas? It says undefined under it also. Screenshot from 2024-04-27 23-45-48

It doesnt start a stream itself, you will have to start a stream then run the script

@lekkerelou
Copy link

Feel free to use :)
3AKVZ5HRGYBH

@kierkat10
Copy link

guys i don’t know what you’re on about, just download vencord and then you are able to use ctrl+shift+i on desktop

@kierkat10
Copy link

IF IT NOT WORKING:
try downloading betterdiscord (https://docs.betterdiscord.app/developers/devtools) and enable devtool in better discord settings after that click ctrl + shift + i in the discord app and do the steps also you can share screen to the bot

Or use vencord, which has dev tools enabled by default and is much more stable and less laggy than betterdiscord. https://vencord.dev/download/ since we are already sending links here. @deyaee make sure you read this too :)

also yes, vencord is much better than betterdiscord lol

@whynotmax
Copy link

Feel free to use :)
9A2CYLY7A8MV

@BlazeShubhamm
Copy link

You can still use this without having friend you just need alt and then join with alt 1 time then startstreaming in your main account then paste the code after that you can leave with alt account it will work : )

@SadeghianAM
Copy link

feel free to use :)
AT3VYLYPWP59

@ejwhdjuwus
Copy link

4TKDH4G6E69H

@cuum
Copy link

cuum commented Apr 27, 2024

is it against tos?

I'd say no since I saw this on https://www.youtube.com/@NoTextToSpeech and they have it on their account (unsure if they did this method on their main) but his life is discord so don't think he'd do people wrong.

@hypenage
Copy link

hypenage commented Apr 27, 2024

free codes if anyone wants them lol
MTKAJW67J26D
SAKTKFFHS3YM

@HoldLifee
Copy link

it says "not working in the browser. Use the desktop app!"

@JoeBob445
Copy link

Free code for degenerates who play Genshin Impact HBJCGMZTHT3D

@hxiyL
Copy link

hxiyL commented Apr 27, 2024

FBKVHMYG3R3R for someone who plays geshin

@xeqhon
Copy link

xeqhon commented Apr 27, 2024

SAJCG5YG7AZM free code

@lmaogoodcodenotreally
Copy link

lmaogoodcodenotreally commented Apr 27, 2024

very clean script (I didn't use OFC it because ToS ;)
EDIT: CTRL + SHIFT + I won't work if you have AMD Radeon Software default config on your PC
-> You need to AMD disable keybinds as they bind CTRL + SHIFT + I to screenshots. (they should be off always)

amd_bs

JAJUY5HYN4UH
8TKCYMERAZBD

@Filo35
Copy link

Filo35 commented Apr 27, 2024

Here:
FB2VZMGYVGBD
CA3CHMYELHE5

@NoahYTK
Copy link

NoahYTK commented Apr 28, 2024

WA3CGLK49UQV

@idogold3
Copy link

it dosent seem to work for me :(
when I type the code it gives me an error.
says:
VM103:2 Uncaught TypeError: Cannot read properties of undefined (reading 'push')
at :2:32
any fix?

@Almansour2
Copy link

still works?
Uploading image (17).png…

@tthn0
Copy link

tthn0 commented Apr 28, 2024

XA3DZL224CBZ

@ItsVeryBright
Copy link

TSKVZL3JPURV Feel free to use it

@MikhailF1337
Copy link

MikhailF1337 commented Apr 28, 2024

Well, for some reason, progress is not going anyway, still 0%.
Got my second account on my phone watching the stream, main account is running on Discord PTB with the code running correctly without any issues, but the progress bar is not updating, even in the console.
The reason might be that i'm from Russia, and we do not have access to a "Gift Inventory" tab, but i connected a VPN, accepted the quest, even tried to stream with it, but progress bar still not going anyway, tried to launch Discord with VPN and then turned off VPN, still no progress.
Dont even know what to do, any suggestions?

Heartbeat thing is always receiving it

@PierugA
Copy link

PierugA commented Apr 28, 2024

ASKUY4HEMAUZ

@Gavya1234
Copy link

so how can i paste the code in the app and not in the browser??

@guigui0246
Copy link

It also works if you use a music bot in the channel so you don't even need an alt

@SetuCoder
Copy link

Worked for me with the Mac client. Here's a code btw, feel free to use it

4B3DG527W9PH

@ansh-odyssey
Copy link

Worked for me :)
use these codes for Genshin if someone wants them:

3AJDHL2V3XKR
GB2DG4JVVRK5

@rohitsaha29
Copy link

CAKCZ53T38ZZ

@Corayzy
Copy link

Corayzy commented Apr 28, 2024

PS2DY5JBBLYM

@Oorecco
Copy link

Oorecco commented Apr 28, 2024

Whoever play genshin impact, here's your code:
2A2DGPDMB7JZ

@yanbxr
Copy link

yanbxr commented Apr 28, 2024

Thanks!

@adminskwi
Copy link

UBJUYLLLWXHH

@Luispupuis
Copy link

ET3CH45LX8L5

@TokiisTime
Copy link

KSJUZMMKQHZR

@ddnowicki
Copy link

5TJCH55KV8Y5

@aaaa1Z2Z12321312
Copy link

EBJCY4XD7NN9

@aaaa1Z2Z12321312
Copy link

EBJCY4XD7NN9

@Ansemik
Copy link

Ansemik commented Apr 28, 2024

Guys you can use music bot to join channel with you and make it not play anything. Thank me later and enjoy this code lol RS3VG5LQLVXH

@searinminecraft
Copy link

people literally giving away codes because they dont need em

I dont need codes but the ones i got ill just give to my friends that play the game (yea im too generous)

@KasmaiLee
Copy link

DT2DZ4M8653Z

@carabax
Copy link

carabax commented Apr 28, 2024

TT2CY4M9DAJ5

@Snapdragon845GMS
Copy link

Enjoy the code: TAJCGLEDNGVV

@Spigey
Copy link

Spigey commented Apr 28, 2024

@aamiaa console.log("You don't have any uncompleted quests!") console.log("You either \n 1. don't have any uncompleted quests \n or \n 2. did not accept a quest!")

no cuz useless stop feeling cool cuz of 2 print statements you wrote

@Snapdragon845GMS
Copy link

👆 yapping CEO

@Etheresk
Copy link

7TJUZ446BGDH

@vmprs
Copy link

vmprs commented Apr 28, 2024

luh free code
JS2VHMM6UEL9

@amadich
Copy link

amadich commented Apr 28, 2024

{ "Redeem Code" : "DSKDHMM6AUZH"  }

@NightsDev
Copy link

YSJVY55DK685

@ummmbello
Copy link

can i know why it still saying "This no longer works in browser. Use the desktop app!"? im using the official discord app and it keep popping up this "This no longer works in browser. Use the desktop app!"? can anyone tell me why? and how to fix it?

@BigTLR
Copy link

BigTLR commented Apr 28, 2024

does anyone have a code they can dm me?
my discord is ___ anonymouse ___
(without the spaces because it turns bold without putting spaces)

@ezTxmMC
Copy link

ezTxmMC commented Apr 28, 2024

8SKDHLLEJMEV

@Ayberkyvs
Copy link

Ayberkyvs commented Apr 28, 2024

Current Quest Badge getting method:

badge

  1. Open the Discord application and accept the quest under User Settings -> Gift Inventory
  2. press Ctrl+Shift+I while on any audio channel.
  3. Use any music bot, you will listen to songs for about 30 minutes, choose nice music, share the screen while the bot is on the sound channel.
  4. Paste the code (you will get an error)
  5. type allow pasting and press enter
  6. Paste the code
  7. wait and get the reward after 15 minutes

Free Genshin Code: US3VH5MGY8XM

@Qwanderin
Copy link

Current Quest Badge getting method:

badge

  1. Open the Discord application and press Ctrl+Shift+I while on any audio channel.
  2. Use any music bot, you will listen to songs for about 30 minutes, choose nice music, share the screen while the bot is on the sound channel.
  3. Paste the code (you will get an error)
  4. type allow pasting and press enter
  5. Paste the code
  6. wait and get the reward after 30 minutes

Free Genshin Code: US3VH5MGY8XM

it's only 15 minutes

@Ayberkyvs
Copy link

Current Quest Badge getting method:

badge

  1. Open the Discord application and press Ctrl+Shift+I while on any audio channel.
  2. Use any music bot, you will listen to songs for about 30 minutes, choose nice music, share the screen while the bot is on the sound channel.
  3. Paste the code (you will get an error)
  4. type allow pasting and press enter
  5. Paste the code
  6. wait and get the reward after 30 minutes

Free Genshin Code: US3VH5MGY8XM

it's only 15 minutes

Thank you, I corrected

@AmKinGesteR
Copy link

I successfully obtained the code and badge.
However, my account has been online for the past 20 hours, even though I haven't been on Discord at all. How can I fix this? (I used PTB).

@guigui0246
Copy link

EAJCGL2C58J9

@idogold3
Copy link

can someone send me the code? i can't do the command on the console. i says: VM107:2 Uncaught TypeError: Cannot read properties of undefined (reading 'push')
at :2:32


@SideWayy
Copy link

SA3CY57J7GC5 :P

@guigui0246
Copy link

I successfully obtained the code and badge. However, my account has been online for the past 20 hours, even though I haven't been on Discord at all. How can I fix this? (I used PTB).

Idk what PTB is but try to completely close discord on all your devices (for computers right click to icon and quit discord and for phones square button and swipe remove the app) and open them again

@rinpd
Copy link

rinpd commented Apr 28, 2024

can someone dm me a code on discord? @rinpd

@TheoGamer5
Copy link

fyi if no progress is being made try closing and streaming the app again

@TheoGamer5
Copy link

also just close discord from task manager to make genshin go away

@Fleshcrafter
Copy link

ST3DZ73ADJTM

@HGStyle
Copy link

HGStyle commented Apr 28, 2024

I wont ever play that shitty game, so here's a free Genshin code: PTKUY5NNQTYH

@Tr0llie
Copy link

Tr0llie commented Apr 28, 2024

code.py

redeem_code = {"code" : "FT2CY46P8L7D"}

@nikkowich
Copy link

XAJUG46V8G4D

@AmKinGesteR
Copy link

I successfully obtained the code and badge. However, my account has been online for the past 20 hours, even though I haven't been on Discord at all. How can I fix this? (I used PTB).

Idk what PTB is but try to completely close discord on all your devices (for computers right click to icon and quit discord and for phones square button and swipe remove the app) and open them again

Dont Work

@2mdtln
Copy link

2mdtln commented Apr 28, 2024

Thanks <3
GT3CG4PDZMTR

@Skyral1
Copy link

Skyral1 commented Apr 28, 2024

ABJVGL6A3SXM

@Tr0llie
Copy link

Tr0llie commented Apr 28, 2024

I successfully obtained the code and badge. However, my account has been online for the past 20 hours, even though I haven't been on Discord at all. How can I fix this? (I used PTB).

Ptb clients are usually used for testing = bugs / errors

@Unproven
Copy link

I'm on a Mac. How do i do this on the discord desktop app as there is no "console" ?

@Bheeni2120
Copy link

Can someone who doesnt need it send it to this username: bheeni
it doesnt work for me so it'll be appreciated

@toothykitty
Copy link

can someone give me code pls @_pifi

@mirronake
Copy link

LTKVG5PZKJJZ

@toothykitty
Copy link

Can someone who doesnt need it send it to this username: bheeni it doesnt work for me so it'll be appreciated

it doesn't work for me too omg T_T i hate it

@benranoah
Copy link

Well, cheeers
NA3DH47Z9QTD

@Tr0llie
Copy link

Tr0llie commented Apr 28, 2024

I'm on a Mac. How do i do this on the discord desktop app as there is no "console" ?

enable dev tools

OR

use PTB client

OR

install vencord and should work (vencord.dev)
if you have trouble installing:
vencord support > discord.gg/vencord

@boudywho
Copy link

boudywho commented Apr 28, 2024

Can someone who doesnt need it send it to this username: bheeni it doesnt work for me so it'll be appreciated

it doesn't work for me too omg T_T i hate it

@toothykitty I am currently using it and it's working fine, I am on linux, I use the official discord app patched with vencord, then I join a VC with someone inside (my alt account), then began streaming and entered the commands in console and it's working fine, u sure u did the all the steps right?

@XentryEU
Copy link

BBJCGLL5EEJZ for someone who plays geshin

@CallMeNifo
Copy link

CB3CY46HXTFR

@SnowyTheBluejay
Copy link

5S3UHM7ZTX99 code for whoever wants it.

@Tr0llie
Copy link

Tr0llie commented Apr 28, 2024

Can someone who doesnt need it send it to this username: bheeni it doesnt work for me so it'll be appreciated

it doesn't work for me too omg T_T i hate it

@toothykitty I am currently using it and it's working fine, I am on linux, I use the official discord app patched with vencord, then I join a VC with someone inside (my alt account), then began streaming and entered the commands in console and it's working fine, u sure u did the all the steps right?

Vencord fixes everything

@Unproven
Copy link

I'm on a Mac. How do i do this on the discord desktop app as there is no "console" ?

enable dev tools

OR

use PTB client

OR

install vencord and should work (vencord.dev) if you have trouble installing: vencord support > discord.gg/vencord

i have vencord, how do i open the console or where do i paste the code?

@Glan51
Copy link

Glan51 commented Apr 28, 2024

YB3CGLPXKSD5

@Nevah5
Copy link

Nevah5 commented Apr 28, 2024

4BJDG4PHGDUV
someone enjoy this!

@lukas265-tech
Copy link

code:BSJVZLMVH5QH

@boudywho
Copy link

Fixin to resell all these codes ngl lmao

On Apr 28, 2024, at 10:54 AM, Nevah @.***> wrote: @Nevah5 commented on this gist. 4BJDG4PHGDUV someone enjoy this! — Reply to this email directly, view it on GitHub https://gist.github.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb#gistcomment-5039478 or unsubscribe https://github.com/notifications/unsubscribe-auth/BIEONN3ZDABAIA65A7PG753Y7ULSLBFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVEYTEOJXGM3DANBVU52HE2LHM5SXFJTDOJSWC5DF. You are receiving this email because you commented on the thread. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

chances that these codes got used are high + they are worthless, even 1$/code would be expensive compared to what u get in-game lol

@bsyDee
Copy link

bsyDee commented Apr 28, 2024

Since it does not work in the browser anymore, how should i enable console if I am meant to use the actual client?

@boudywho
Copy link

boudywho commented Apr 28, 2024

I'm on a Mac. How do i do this on the discord desktop app as there is no "console" ?

enable dev tools
OR
use PTB client
OR
install vencord and should work (vencord.dev) if you have trouble installing: vencord support > discord.gg/vencord

i have vencord, how do i open the console or where do i paste the code?

you have to enable 'dev reaction mode' (something like that) in settings > vencord settings, then enter a VC with a friend (or an alt account), press Ctrl + shift + I and it should open up the console, make sure you already starting streaming a random window before running the code

@boudywho
Copy link

boudywho commented Apr 28, 2024

Since it does not work in the browser anymore, how should i enable console if I am meant to use the actual client?

The easier method is to:

  1. install vencord ( from vencord.dev website)
  2. Patch discord with vencord.dev
  3. Go to settings -> vencord settings
  4. Enable 'React Developer Tools'
  5. Fully restart discord (press exit on taskbar OR end process in task manager.)
  6. Join a VC with someone (could be an ALT account, BUT u must have someone in VC for it to work)
  7. Share your screen (any window, doesn't matter)
  8. Press CTRL + SHIFT + I
  9. Go to console and paste the code there, give it some time and it should work, u should see the progress bar start moving

If you can't paste the code in console, just manually type "enable pasting" (or check what the console tells you to enable paste) and then press enter and paste the code again, it should work.

Good luck c:

@bsyDee
Copy link

bsyDee commented Apr 28, 2024

Since it does not work in the browser anymore, how should i enable console if I am meant to use the actual client?

The easier method is to:

  1. install vencord (vencord.dev)
  2. Patch discord with vencord.dev
  3. Go to settings -> vencord settings
  4. Enable 'developer reaction' (something like that, I don't remember the exact name but you will figure it out.
  5. Fully restart discord (press exit on task bar OR end process in task manager.
  6. Join a VC with someone (could be an alt account, BUT u must have someone in VC for it to work)
  7. Share your screen (any window, doesn't matter)
  8. Press CTRL + SHIFT + I
  9. Go to console and paste the code there, give it some time and it should work, u should see the progress bar starts moving

If you can't paste the code in console, just manually type "enable pasting" (or check what the console tells you to enable paste) and then press enter and paste the code again, it should work

Thanks will try this in a bit

@boudywho
Copy link

Since it does not work in the browser anymore, how should i enable console if I am meant to use the actual client?

The easier method is to:

  1. install vencord (vencord.dev)
  2. Patch discord with vencord.dev
  3. Go to settings -> vencord settings
  4. Enable 'developer reaction' (something like that, I don't remember the exact name but you will figure it out.
  5. Fully restart discord (press exit on task bar OR end process in task manager.
  6. Join a VC with someone (could be an alt account, BUT u must have someone in VC for it to work)
  7. Share your screen (any window, doesn't matter)
  8. Press CTRL + SHIFT + I
  9. Go to console and paste the code there, give it some time and it should work, u should see the progress bar starts moving

If you can't paste the code in console, just manually type "enable pasting" (or check what the console tells you to enable paste) and then press enter and paste the code again, it should work

Thanks will try this in a bit

sure let me know if it worked, or if you faced any issues

@Unproven
Copy link

Since it does not work in the browser anymore, how should i enable console if I am meant to use the actual client?

The easier method is to:

  1. install vencord (vencord.dev)
  2. Patch discord with vencord.dev
  3. Go to settings -> vencord settings
  4. Enable 'developer reaction' (something like that, I don't remember the exact name but you will figure it out.
  5. Fully restart discord (press exit on task bar OR end process in task manager.
  6. Join a VC with someone (could be an alt account, BUT u must have someone in VC for it to work)
  7. Share your screen (any window, doesn't matter)
  8. Press CTRL + SHIFT + I
  9. Go to console and paste the code there, give it some time and it should work, u should see the progress bar starts moving

If you can't paste the code in console, just manually type "enable pasting" (or check what the console tells you to enable paste) and then press enter and paste the code again, it should work

Thanks will try this in a bit

sure let me know if it worked, or if you faced any issues

Thank you for the info! Bless your soul! :)

@utw0
Copy link

utw0 commented Apr 28, 2024

Since it does not work in the browser anymore, how should i enable console if I am meant to use the actual client?

The easier method is to:

  1. install vencord (vencord.dev)
  2. Patch discord with vencord.dev
  3. Go to settings -> vencord settings
  4. Enable 'developer reaction' (something like that, I don't remember the exact name but you will figure it out.
  5. Fully restart discord (press exit on task bar OR end process in task manager.
  6. Join a VC with someone (could be an alt account, BUT u must have someone in VC for it to work)
  7. Share your screen (any window, doesn't matter)
  8. Press CTRL + SHIFT + I
  9. Go to console and paste the code there, give it some time and it should work, u should see the progress bar starts moving

If you can't paste the code in console, just manually type "enable pasting" (or check what the console tells you to enable paste) and then press enter and paste the code again, it should work

Thanks will try this in a bit

sure let me know if it worked, or if you faced any issues

I press ctrl shft and nothing comes up

@boudywho
Copy link

boudywho commented Apr 28, 2024

Since it does not work in the browser anymore, how should i enable console if I am meant to use the actual client?

The easier method is to:

  1. install vencord (vencord.dev)
  2. Patch discord with vencord.dev
  3. Go to settings -> vencord settings
  4. Enable 'developer reaction' (something like that, I don't remember the exact name but you will figure it out.
  5. Fully restart discord (press exit on task bar OR end process in task manager.
  6. Join a VC with someone (could be an alt account, BUT u must have someone in VC for it to work)
  7. Share your screen (any window, doesn't matter)
  8. Press CTRL + SHIFT + I
  9. Go to console and paste the code there, give it some time and it should work, u should see the progress bar starts moving

If you can't paste the code in console, just manually type "enable pasting" (or check what the console tells you to enable paste) and then press enter and paste the code again, it should work

Thanks will try this in a bit

sure let me know if it worked, or if you faced any issues

I press ctrl shft and nothing comes up

make sure you press CTRL + SHIFT + I, and you have to be on vencord with "Enable React Developer tools" option enabled.

@boudywho
Copy link

Since it does not work in the browser anymore, how should i enable console if I am meant to use the actual client?

The easier method is to:

  1. install vencord (vencord.dev)
  2. Patch discord with vencord.dev
  3. Go to settings -> vencord settings
  4. Enable 'developer reaction' (something like that, I don't remember the exact name but you will figure it out.
  5. Fully restart discord (press exit on task bar OR end process in task manager.
  6. Join a VC with someone (could be an alt account, BUT u must have someone in VC for it to work)
  7. Share your screen (any window, doesn't matter)
  8. Press CTRL + SHIFT + I
  9. Go to console and paste the code there, give it some time and it should work, u should see the progress bar starts moving

If you can't paste the code in console, just manually type "enable pasting" (or check what the console tells you to enable paste) and then press enter and paste the code again, it should work

Thanks will try this in a bit

sure let me know if it worked, or if you faced any issues

Thank you for the info! Bless your soul! :)

awh, you're very welcome<3

@cybik
Copy link

cybik commented Apr 28, 2024

Vencord doesn't have Electron in its useragent, and thus doesn't "register" as a Desktop app. The script complains about that bit.

@boudywho
Copy link

boudywho commented Apr 28, 2024

Vencord doesn't have Electron in its useragent, and thus doesn't "register" as a Desktop app. The script complains about that bit.

Weird, I just tried it today, and it works fine, you sure you aren't using "vesktop" instead of vencord?

For me using vesktop didn't work, but getting official discord then patching it with vencord worked well

@cybik
Copy link

cybik commented Apr 28, 2024

Vencord doesn't have Electron in its useragent, and thus doesn't "register" as a Desktop app. The script complains about that bit.

Weird, I just tried it today, and it works fine, you sure you aren't using "vesktop" instead of vencord?

For me using vesktop didn't work, but getting official discord then patching it with vencord worked well

fair point, I'm using the vesktop client and not vencord extensions for Discord.

@Ravid-A
Copy link

Ravid-A commented Apr 28, 2024

amazing thanks

@SaulGoodManTX
Copy link

I'm using vencord but it's not working. It's just sending heartbeat and heartbeat ack. I also have enabled "react developer tools" and I restarted my discord after enabling the option. I'm currently in vc with my alt sharing screen and I pasted the code but no progress yet.

@ELKER54
Copy link

ELKER54 commented Apr 28, 2024

Still works for me using Vencord. Here is my code if anyone wants it YTKDH48VGP89

@Liqutch
Copy link

Liqutch commented Apr 28, 2024

7B2DGLRA3CXV enjoy it

@ionlyusegithubformcmods

PB2CY7LES4ZD if yall play genshin

@Ravid-A
Copy link

Ravid-A commented Apr 28, 2024

If one of y’all playing genshin have fun

WSKCY5R6F68D
4BKVZLR63UT5

@shijosei
Copy link

If one of you all playing genshin impact im sending the code below:
KBJCG58S9NCV

@Unproven
Copy link

It doesnt work for me in the desktop app. Is the shortcut different for Mac?
Thamks

@cybik
Copy link

cybik commented Apr 28, 2024

If one of you all playing genshin impact im sending the code below: KBJCG58S9NCV

Yoink thanks

@sleezeball
Copy link

8BJVGL8E2RU9
free code ig

@Gahfz
Copy link

Gahfz commented Apr 28, 2024

A little tip, you can use a music bot to sit in vc with you, and the quest progress will start moving. ;0

@Trojan-V
Copy link

RB2CHMQEVUNR

@Ixnayed
Copy link

Ixnayed commented Apr 28, 2024

can someone please give me a code? My discord is: azarenkaa

@Trojan-V
Copy link

can someone please give me a code? My discord is: azarenkaa

there are a lot below this post, did you try them all already?

@xAngel01
Copy link

It just repeats the heartbeat over and over. Anyone got a work around or know if it's still working? I'm running Vencord currently, have an alt and a music bot just in case, no luck.

@Ixnayed
Copy link

Ixnayed commented Apr 28, 2024

can someone please give me a code? My discord is: azarenkaa

there are a lot below this post, did you try them all already?

yeah

@Ixnayed
Copy link

Ixnayed commented Apr 28, 2024

someone please help me

@xAngel01
Copy link

It just repeats the heartbeat over and over. Anyone got a work around or know if it's still working? I'm running Vencord currently, have an alt and a music bot just in case, no luck.

nevermind, just quit discord and streamed again and it works now

@Ixnayed
Copy link

Ixnayed commented Apr 28, 2024

Please if someone got a spare code dm me: malxnet

@Almansour2
Copy link

Almansour2 commented Apr 28, 2024

if you are facing are issues please
Discord: 35v
here to help dm

@Kikubay
Copy link

Kikubay commented Apr 28, 2024

HTJVZ3T2HCVV

You're welcome

@pifando
Copy link

pifando commented Apr 28, 2024

VBKVZKT9SQVZ

free code for yall

@nilahreal
Copy link

VB3UHKA6WD5D
free code :D

@dcodeu
Copy link

dcodeu commented Apr 29, 2024

MA2UZJTCJV4R

Free code for y'all!

If you're on Mac use vencord and then use CMD + Option + i and it will open Dev Tools.

@vienuss
Copy link

vienuss commented Apr 29, 2024

on mac after pasting the code, when i hit enter it doesn't work

@waltereleven
Copy link

ZT3DH3BHL5PZ

you're welcome :)

@hypenage
Copy link

NBKDZ3SXCGJ9
e

@U65535F
Copy link

U65535F commented Apr 29, 2024

Code: PT2UHKU5NSE5

@bosshacker14
Copy link

Can someone send me a code on Discord, this is my ID @team_boss😢

@IamAkaFake
Copy link

How to do this on chromebook/ChromeOS?

@PenguieDev
Copy link

heres my code:
DBJVHKC2NP9Z

@PansanGG
Copy link

my code who really needs it: 8BJDY3C2VB75

@LaJoker0316
Copy link

LaJoker0316 commented Apr 29, 2024

i need one code cuz im using mac, if somebody sees this please dm discord, my id: joker.clownn

@DDD1292a
Copy link

DDD1292a commented Apr 29, 2024

idk why but I'm getting this error
Warning: Don’t paste code into the DevTools Console that you don’t understand or haven’t reviewed yourself. This could allow attackers to steal your identity or take control of your computer. Please type ‘allow pasting’ below to allow pasting
when I write allow pasting, it says Uncaught SyntaxError: Unexpected identifier 'pasting'

For the context, I've tried both normal discord app, and then the discord app with vencord along with React Developer Tools but still no luck.

Scrap all that, magically worked now

@hap9410
Copy link

hap9410 commented Apr 29, 2024

it says This no longer works in browser. Use the desktop app!

@lucasledoge
Copy link

TA2UYKD8LFRD
take it

@HECKTOR10
Copy link

enjoy:;
8AKDH3DRMPSD
XS2DZ3V2VG3V

@HECKTOR10
Copy link

it says This no longer works in browser. Use the desktop app!

that's what it says in the instructions as well, do some basic reading!

@N4te2k
Copy link

N4te2k commented Apr 29, 2024

UB2VG2C8PWU5

@DDD1292a
Copy link

DDD1292a commented Apr 29, 2024

it says This no longer works in browser. Use the desktop app!

uh excuse me but i've mentioned that I'm using the deskop app. I've even tried it with Vencord, but it's giving same error.

Nevermind, just opened discord again and retried. Then it worked like nothing was wrong before.

@AlvinCodez
Copy link

AlvinCodez commented Apr 29, 2024

@NVa7T i need one code cuz im using mac, if somebody sees this please dm discord, my id: joker.clownn

Bro there are many here being dropped every few mins you can take one and see if they works @N4te2k sent the latest one
UB2VG2C8PWU5 you can try if this works or scroll and try the other codes

(Just so you know your Discord account does not allow users to send friend requests and you have to add someone inorder to DM.)

@ehjt
Copy link

ehjt commented Apr 29, 2024

not working for me sadly

@BeastGamer81
Copy link

Invalid expression error

@LHBlitz
Copy link

LHBlitz commented Apr 29, 2024

I ain't got no use for this lol. Someone enjoy. :)
FAKVZKV9XA9R

@Jalenzzz
Copy link

I don't play Genshin, you can have my code: SB2VGKV8YHA5

Copy link

ghost commented Apr 29, 2024

can anyone give me the code? I would appreciate it a lot since i'm a mobile user and can't do it. My username's kript1

@bosshacker14
Copy link

أنا لا ألعب Genshin، يمكنك الحصول على الرمز الخاص بي: SB2VGKV8YHA5

Can you send me another code on Decord, this is my ID @team_boss

@Misterpopcorn12
Copy link

someone please send me a code in dms local.random
85d085ce718cecf9ee1d6508fc3f46a8

@Nycto97
Copy link

Nycto97 commented Apr 29, 2024

How and where to run the code if it doesn't work in browser anymore?

Copy link

ghost commented Apr 29, 2024

How and where to run the code if it doesn't work in browser anymore?

You need to install vencord and enable dev tools on the desktop app

@aoagamer6
Copy link

ZTKDZKDPQ8K5 enjoy code

@Nycto97
Copy link

Nycto97 commented Apr 29, 2024

How and where to run the code if it doesn't work in browser anymore?

You need to install vencord and enable dev tools on the desktop app

Thanks!

But I got it working by going to %APPDATA%/discord/settings.json and adding the line:
"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true

This allows ctrl+shift+i in Discord to get the console. I'll make sure to set it to false later, or to delete the line in the settings file.

@Krashgamer
Copy link

enjoy HB2VZ2D6TA35

@kentheam
Copy link

XT3DH3UPATXV

thanks, u can have my code :)

@Meiiosei
Copy link

ZBKCG3DPF8NR

@Tr0llie
Copy link

Tr0llie commented Apr 29, 2024

Is everyone here fucking stupid, your suppose to type that in the console and press enter, then paste the snippet.

On Mon, Apr 29, 2024, 11:31 AM DDD1292a @.> wrote: @.* commented on this gist. ------------------------------ idk why but I'm getting this error Warning: Don’t paste code into the DevTools Console that you don’t understand or haven’t reviewed yourself. This could allow attackers to steal your identity or take control of your computer. Please type ‘allow pasting’ below to allow pasting when I write allow pasting, it says Uncaught SyntaxError: Unexpected identifier 'pasting' — Reply to this email directly, view it on GitHub https://gist.github.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb#gistcomment-5040074 or unsubscribe https://github.com/notifications/unsubscribe-auth/A6FYFBCQ25XFVNWKK34TO5DY7YAMZBFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVEYTEOJXGM3DANBVU52HE2LHM5SXFJTDOJSWC5DF . You are receiving this email because you commented on the thread. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

lmao this is what i wanted to say

@Tr0llie
Copy link

Tr0llie commented Apr 29, 2024

can anyone give me the code? I would appreciate it a lot since i'm a mobile user and can't do it. My username's kript1

Just get a computer

@verbelowski
Copy link

can anyone give me the code? I would appreciate it a lot since i'm a mobile user and can't do it. My username's kript1

YSJUH2CVYSVV

@maiemeigen
Copy link

can someone give me code please DC: 4olk plsssssss

@AenR
Copy link

AenR commented Apr 29, 2024

Code for Genshin Impact: QA2DH3UBY7WV

@eldziad0
Copy link

it says This no longer works in browser. Use the desktop app!

it literally says what u need to do, use the desktop app

@thejulfor
Copy link

thejulfor commented Apr 29, 2024

hey guys if anyone got a spare code which you didnt share anywhere, can you please dm it to me -> julfor 🙏

@DevExlim
Copy link

Here is for the no-lifers
3AKCGKW5477H

@trazhub
Copy link

trazhub commented Apr 29, 2024

it says This no longer works in browser. Use the desktop app!

yea just use in app same thing

@muparzival
Copy link

Can any one please send me code please. My username is m_parzival

@trazhub
Copy link

trazhub commented Apr 29, 2024

m_parzival
go to this page and try again https://genshin.hoyoverse.com/en/gift

@XxnubnubxX
Copy link

UA3VZKE33GQ9

@XxnubnubxX
Copy link

here is another one from a freind "FAKCY2EJ2Q5Z"

@virgil48YT
Copy link

NSJVYJXJBG2M

@Navaden
Copy link

Navaden commented Apr 29, 2024

Is there a way of disabling this? is this going to run forever or stop when you finish the quest/restart discord/or something like that?
Not sure if i want to have some code running all the time and discord thinking i'm sharing genshing all the time

@GamerTilen
Copy link

Here is the code (i don't need it cause i don't play Genshin Impact): 8TJDHKW3DYUM

@wesleyyys
Copy link

2A2CG2E3EPAD

@RobOnRealDevHours
Copy link

ASJVHJXJFPCV

@thejenja
Copy link

Another code QB2UYJFJHCA5

@aamiaa
Copy link
Author

aamiaa commented Apr 29, 2024

Is there a way of disabling this? is this going to run forever or stop when you finish the quest/restart discord/or something like that? Not sure if i want to have some code running all the time and discord thinking i'm sharing genshing all the time

Just restart discord

@nakyoungwav
Copy link

How and where to run the code if it doesn't work in browser anymore?

You need to install vencord and enable dev tools on the desktop app

Thanks!

But I got it working by going to %APPDATA%/discord/settings.json and adding the line: "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true

This allows ctrl+shift+i in Discord to get the console. I'll make sure to set it to false later, or to delete the line in the settings file.

I can't seems to do ctrl+shift+i for some reason, i have pasted this line: "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true in microsoft vscode, am i doing anything wrong

@TheBooker66
Copy link

My code, if anyone wants it: 9S3UGKXQV3R9.

@Matrixhero01
Copy link

Matrixhero01 commented Apr 29, 2024

Plz if someone have extra code dm me matrixhero🥺🥺

@StrawberryNature
Copy link

Who needs it, take it:

YA3UZ2WN85V5

@ERROR496
Copy link

YB2UH2X6YAJ5

@LunarScripts3
Copy link

Can someone give me a code plisss my discord krosowy00 plis plis i will send Nu**s

@Nrbak
Copy link

Nrbak commented Apr 29, 2024

8S2VYKWUK2YD

@cank0k
Copy link

cank0k commented Apr 29, 2024

Can someone give me a code plisss my discord krosowy00 plis plis i will send Nu**s

nigga go get a life fr

@Dream699
Copy link

why does mine say.
Uncaught SyntaxError: Unexpected end of input

@1alphabyte
Copy link

My code, if anyone wants it: SS3DG3FVGUNH

@V0lkanic
Copy link

8SJUZJWMB2N5

@ITKewai
Copy link

ITKewai commented Apr 29, 2024

why does mine say. Uncaught SyntaxError: Unexpected end of input

you did a wrong copy paste

@hap9410
Copy link

hap9410 commented Apr 29, 2024

Can any one please send me code please. My username is hap9410

@somerand0mcat
Copy link

somerand0mcat commented Apr 29, 2024

im doing this rn, im at about 70% lol

@dianapintea
Copy link

Code here for anyone who needs :D SB3CHKEBVU39

@andreasOMG1000
Copy link

code from me: GTJVYKXSCSDV

@somerand0mcat
Copy link

i got this code when i completed the quest but it was already used as soon as i posted it on a discord server: WBKDYKFBUEBR

@Adodamo23
Copy link

9A3VGKWG375D

@The-Techy
Copy link

The-Techy commented Apr 29, 2024

Trying to change my user agent in chrome to spoof the desktop app, but adding Electron/ somewhere in the agent means it gets stuck on 'RTC connecting' forever when joining a VC, and clicking share screen says I need to download the desktop app (which it doesn't if I don't mess around with the user agent). This is the agent I've been using, is there something wrong here, or would I just have to use vencord now?

Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Electron/ Safari/537.36

@Damix-hash
Copy link

for curious ones i placed the fetch response of claim award request
https://github.com/Damix-hash/discord-quest-badge-request/blob/main/Request.js

@EfeSerindik
Copy link

9A2VHKCHBCGD

@Dream699
Copy link

why does mine say. Uncaught SyntaxError: Unexpected end of input

you did a wrong copy paste

how can i do it right

@ivymeowww
Copy link

MTKDG2WGGWN5

@mxqz
Copy link

mxqz commented Apr 29, 2024

Can anyone please send me code, if there's is a needless one, i'm in discord: booba.exe

@Incilite
Copy link

9TKUYKEXYRQ5

@a-turtle9302
Copy link

UTKUZKEWY4RH

@imkrai
Copy link

imkrai commented Apr 29, 2024

This no longer works in browser. Use the desktop app!

@whiskydev11
Copy link

ban risk?

@Storm21212
Copy link

8T3UHJZ5B8RR

@Benzitczo
Copy link

no worked how solution:
image
undefined

@Akasha53
Copy link

Akasha53 commented Apr 29, 2024

image
It's no longer working I think or am I doing something wrong

@aamiaa Do you think they fix it ?

@CaelDou
Copy link

CaelDou commented Apr 29, 2024

how do I open dev tools on desktop app?

@commondevelopernp
Copy link

WA2UHKH3CX7M thanks

@aamiaa
Copy link
Author

aamiaa commented Apr 29, 2024

image
It's no longer working I think or am I doing something wrong

@aamiaa Do you think they fix it ?

Use the desktop app

@CIuttch
Copy link

CIuttch commented Apr 29, 2024

image
It's no longer working I think or am I doing something wrong
@aamiaa Do you think they fix it ?

Use the desktop app

so im trying to do this on a mac you think you can help me out on this one?

@Enbou0
Copy link

Enbou0 commented Apr 29, 2024

7S3UHKY3D6ND
FTKCZ2H3U4ED

@ItsAlmee
Copy link

WA2UHKH3CX7M thanks

it worked for you ?

@Enbou0
Copy link

Enbou0 commented Apr 29, 2024

Download Discord PTB and login to the acc u want to get badges for. Then open a server and invite ur other acc that u are logged into in the browser. Join a voice with ur 2 acc. Open screen with ur main acc and watch the screen with ur other acc. Press ctrl+shift+I in Discord PTB then paste that code into console and wait 15 minutes..
(I just tried it and get badges on both my accounts)

@ItsAlmee
Copy link

Does it still works ?
I cant do it on my browser

@Enbou0
Copy link

Enbou0 commented Apr 29, 2024

Does it still works ? I cant do it on my browser

u need discord ptb, read my comment

@cosmicglitch1
Copy link

how tf do i get the dev console on mac os

@Starebeodd
Copy link

I NEED A CODE DAWG!!

@SOME-01
Copy link

SOME-01 commented Apr 29, 2024

"Use the desktop app, or alternatively find some extension which lets you change your User-Agent and append the string Electron/ anywhere in it." anyone know a extension tht could do it

@DDD1292a
Copy link

For those If it's not working please use your brain for once!

also if it doesn't work on first try, try closing the app and retrying later again. For example, in my case, it refused to work for no literal reason, and when I retried 15 mins later, worked like a charm.

@MilanK1
Copy link

MilanK1 commented Apr 29, 2024

how tf do i get the dev console on mac os

(CMD+OPTION+I)

@daerea
Copy link

daerea commented Apr 30, 2024

BTKVG3Y6XDUZ

@HuskiGames
Copy link

code for anyone who wants it 6SJCY3H7E5P5

@CIuttch
Copy link

CIuttch commented Apr 30, 2024

5T3VGJHCANK9
heres a code im currently about to get 2 more so just wait on that !!!

@CIuttch
Copy link

CIuttch commented Apr 30, 2024

MSJUYJHVV2DR
2A3CY3HUDKHV
two other codes i promised

@PacoLosion13
Copy link

7TKVH2GS3PQV

@diparate
Copy link

how can i stop the process?

@KpochMX
Copy link

KpochMX commented Apr 30, 2024

QA2UZ3GAWBNR

@Vexedz
Copy link

Vexedz commented Apr 30, 2024

can anyone send me code my user is haerraia_11094

@iDxrk
Copy link

iDxrk commented Apr 30, 2024

Can someone send me a code to my user, i_dxrk

@ZarirDev
Copy link

XBKVZKZZXB6H

@Poonce
Copy link

Poonce commented Apr 30, 2024

FB3DHKZBGYDD

@OkayStark
Copy link

QS3VY3HGZMBR

@epmels
Copy link

epmels commented Apr 30, 2024

4S3VYJHYY26V

@Vexedz
Copy link

Vexedz commented Apr 30, 2024

where do I redeem the codes ?

@sasukenukedyoulolxd
Copy link

if im not supposed to use ctrl + shift + i then what do i use? because everytime i use it, it doesnt work so idk

@oOHiyoriOo
Copy link

oOHiyoriOo commented Apr 30, 2024

if im not supposed to use ctrl + shift + i then what do i use? because everytime i use it, it doesnt work so idk

You need to enable the Console first, for that you can Press "WIN + R" a "run" window should now open, type "%appdata%".
Now an folder should open where you can find a "discord" folder.
Inside of that you should find a "settings" file, if you have Extensions Visible it's named "settings.json", you can just open it using any Text Editor like notepad or VSCode.

add following at the end of the File:

"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING":"true" 

(Don't forget the , in the line above it )
Should look like following:
image

After you done it, Save the File and Close Discord Completly, when you now Start it again you should be able to use "CTRL + Shift + I" if you're on Windows.
Linux has the same Shortcut if i remember correctly.
For MacOS:

how tf do i get the dev console on mac os

(CMD+OPTION+I)

(Thanks to MilanK1 for that Info)

Alternative:

Vencord

I think they just have a Plugin or Option to Enable it, i don't remember.
Keep in mind that Technically Vencord is against Discord TOS tho.

@sharmagamingff
Copy link

Download Discord PTB and login to the acc u want to get badges for. Then open a server and invite ur other acc that u are logged into in the browser. Join a voice with ur 2 acc. Open screen with ur main acc and watch the screen with ur other acc. Press ctrl+shift+I in Discord PTB then paste that code into console and wait 15 minutes.. (I just tried it and get badges on both my accounts)

thanks, your trick worked

@proaurel
Copy link

who wants a free code dm me cxinity i dont really play genshin impact

@l0zthrental
Copy link

MAKDZJ2MVM25

@Livaaaa
Copy link

Livaaaa commented Apr 30, 2024

who wants a free code dm me cxinity i dont really play genshin impact

can you give it to me?

@fw-real
Copy link

fw-real commented Apr 30, 2024

who wants a free code dm me cxinity i dont really play genshin impact

can you give it to me?

ES3UZ5ML9QYV

@anshuuxd
Copy link

Discord PTB

can i get it ?

@anshuuxd
Copy link

who wants a free code dm me cxinity i dont really play genshin impact

can i get ??

@anshuuxd
Copy link

ES3UZ5ML9QYV

invaild

@L3-M
Copy link

L3-M commented Apr 30, 2024

MA2CGJ39S4CR, welcome.

@hmhainkiller
Copy link

MA2CGJ39S4CR, welcome.

Invalid, welcome

@hmhainkiller
Copy link

The Script is patched I guess

@L3-M
Copy link

L3-M commented Apr 30, 2024

MA2CGJ39S4CR, welcome.

Invalid, welcome

looks like someone else used it, sorry!

@anshuuxd
Copy link

MA2CGJ39S4CR, welcome.

Invalid, welcome

looks like someone else used it, sorry!

do you have another ?

@hmhainkiller
Copy link

..

@anshuuxd
Copy link

MA2CGJ39S4CR, welcome.

Invalid, welcome

looks like someone else used it, sorry!

can you dm in dc : xoanshuu

@L3-M
Copy link

L3-M commented Apr 30, 2024

MA2CGJ39S4CR, welcome.

Invalid, welcome

looks like someone else used it, sorry!

do you have another ?

i might do it again later with my alt.

@L3-M
Copy link

L3-M commented Apr 30, 2024

MA2CGJ39S4CR, welcome.

Invalid, welcome

looks like someone else used it, sorry!

can you dm in dc : xoanshuu

sure. ''L3_M'' mine

@anshuuxd
Copy link

MA2CGJ39S4CR, welcome.

Invalid, welcome

looks like someone else used it, sorry!

do you have another ?

i might do it again later with my alt.

can you pls dm

@fw-real
Copy link

fw-real commented Apr 30, 2024

ES3UZ5ML9QYV

invaild

you were too late probably, got another

@geicoo
Copy link

geicoo commented Apr 30, 2024

2BJUG2JU522H

@MisterFixx
Copy link

followed the instructions, the console just prints a 404 error to some discord API URL every 30 seconds, no progress is being made

@Idris1401
Copy link

8TKVYK2AMLAM

@hmhainkiller
Copy link

8TKVYK2AMLAM

you can claim it without completing the quest right?

@N8waf
Copy link

N8waf commented Apr 30, 2024

QT2CZ2JHEGLD
A code for the game if u want it, I don't play it

@ma-wais
Copy link

ma-wais commented Apr 30, 2024

who wants a free code dm me cxinity i dont really play genshin impact

can you give it to me?

discord: notvegetarian
will dm

@ilyascode
Copy link

I did it from the application and the codes behind are still working. I'm still playing the game as a fake, so how do I turn it off?
Screenshot_398

@Romatdev
Copy link

XTJDYK5MMWUV

@marinofranz
Copy link

I did it from the application and the codes behind are still working. I'm still playing the game as a fake, so how do I turn it off? Screenshot_398

Should be OK if you just reload your Discord window.

@fiz109
Copy link

fiz109 commented Apr 30, 2024

yo can some1 give me one code for me it isnt workin

@YouziRT
Copy link

YouziRT commented Apr 30, 2024

can i get cod pls

@Toys2313Real
Copy link

This no longer works in browser. Use the desktop app!

if it doesnt work in browser anymore then how the hell do i do this 💀

@raantard
Copy link

raantard commented Apr 30, 2024

Code for anyone who wants it, i don't play Genshin Impact:
MAKCHK53DR3Z

@YouziRT
Copy link

YouziRT commented Apr 30, 2024

not work

@ItsAlmee
Copy link

JTJDZKGSV5DZ

@fiz109
Copy link

fiz109 commented Apr 30, 2024

not workin

@YouziRT
Copy link

YouziRT commented Apr 30, 2024

these people are trolling

@fiz109
Copy link

fiz109 commented Apr 30, 2024

ikr

@raantard
Copy link

these people are trolling

You got to be quick lolz

@epicy
Copy link

epicy commented Apr 30, 2024

ATJCGJL83WDZ

@epicy
Copy link

epicy commented Apr 30, 2024

lmk who got it

@YouziRT
Copy link

YouziRT commented Apr 30, 2024

not work my guy

@epicy
Copy link

epicy commented Apr 30, 2024

stop lying lol i copied it instantly from the redeem

@YouziRT
Copy link

YouziRT commented Apr 30, 2024

image

@epicy
Copy link

epicy commented Apr 30, 2024

ur stupid asf, u have to redeem the code on genshins website
https://genshin.hoyoverse.com/en/gift
dumbass

@YouziRT
Copy link

YouziRT commented Apr 30, 2024

image

what i need to do here pls

@epicy
Copy link

epicy commented Apr 30, 2024

put ur game name in???? are you slow

@YouziRT
Copy link

YouziRT commented Apr 30, 2024

i
dont have the game

@epicy
Copy link

epicy commented Apr 30, 2024

what the fuck are you trying to redeem then lmfao ur actually braindead if u think the code is for the badge

@whoisbaby
Copy link

what the fuck are you trying to redeem then lmfao ur actually braindead if u think the code is for the badge

true

@PixelTNT
Copy link

code for u guys, cuz i got a life xD

QT2VH348ANN5

@fiz109
Copy link

fiz109 commented Apr 30, 2024

it def works bro

@RedReaperLp
Copy link

If you'd like to get the reward (Genshin Code): "ZA2DZK4NKXN9"

@TelestoRR
Copy link

A code for those who still haven't touched grass so far (although using a Discord script for a badge is still kinda lame :D )
Genshing Impact:
ZA2CY3MNNCG9

@cizg
Copy link

cizg commented Apr 30, 2024

6TKCG3LVUD9M

@ItsIan0
Copy link

ItsIan0 commented Apr 30, 2024

were do i put a code

@DiamondRoPlayz
Copy link

You don't need another person or alt to do it, You can just put a discord bot into the voice channel, that's what I did with my discord bots I've created in the past

@palidval
Copy link

WA2VZK5ZCSRZ for anyone that wants one

@Prol506
Copy link

Prol506 commented May 1, 2024

Can someone share code

@HehexOne
Copy link

HehexOne commented May 1, 2024

Code: KSJVZKN5QR45

@v0n0istaken
Copy link

When i try to paste in the code it wont paste for some reason is there a fix?

@Dylanvanschouwen
Copy link

Dylanvanschouwen commented May 1, 2024

I got this error message. What am i doing wrong exactly?

VM159:2 Uncaught TypeError: Cannot read properties of undefined (reading 'push')
at :2:32

Nvm i forgot how to open the CTRL SHIFT I console thing in the discord app, I found it there and pasted the code there. it still works luckily

If u have trouble opening the console page on the discord app go to the folder where your discord is located then click on the settings.json file.  
In there ur gonna want to paste this: 
"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true

Then close the json file and restart discord. then try the CTRL SHIFT I thing again and it should pop up.

@SakethReddyhyd
Copy link

If you don't have any friends/alt (like me) invite a music bot to vc and start streaming It works for me....

@mackenzietorculas
Copy link

can someone give me a code

@B4nk2
Copy link

B4nk2 commented May 1, 2024

does it auto stop spoofing after restarting the discord app?

@B4nk2
Copy link

B4nk2 commented May 1, 2024

BS3DZ2N62CPV

@mackenzietorculas
Copy link

is already entered :(

@nw-viii
Copy link

nw-viii commented May 1, 2024

I've tried this on mac cus I don't have Windows 💀

Unfortunately adding "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true on json.file then restarting discord won't work. I also have the game installed and streamed it to an alt for 15+ mins with the main gaming window on live. Anyone got any idea if I'm doing something wrong? I don't know if this would work on Mac either. I've seen Window users only 🌚

@grapeorchard
Copy link

XS3DHKP7RBXV
Expires 05/23/2024
Redeem: https://genshin.hoyoverse.com/en/gift

don't need the code, just wanted the badge :)

@dev-hunter-10
Copy link

XS3DHKP7RBXV Expires 05/23/2024 Redeem: https://genshin.hoyoverse.com/en/gift

don't need the code, just wanted the badge :)

bro your discord username?

@DeadLyBro
Copy link

Code: 4TJDZKPCQ55R
Redeem: Hoyoverse - Genshin Impact - Gift (EN)
23 May 2024 - 00:00 UTC+8

Go & touch grass.

@BBB112Q
Copy link

BBB112Q commented May 1, 2024

game's code : 5AKVHJ6CCYT9

@shincy1
Copy link

shincy1 commented May 1, 2024

2BJUG3NBL8JR Just take it because I accidentally got 2 redeem codes

@PossiblePanda
Copy link

PossiblePanda commented May 1, 2024 via email

@neme-sys-io
Copy link

Waited for half hour but doesnt work
image

@Const72l
Copy link

Const72l commented May 1, 2024

ZBJUZ2NZ3QR5 I have a life so Take it XD

@SARJC72752
Copy link

EB2DG3PZ833V :)

@yogi701
Copy link

yogi701 commented May 1, 2024

If your games after that are appearing as Genshit Impact, just restart Discord 👍

@Tazified
Copy link

Tazified commented May 1, 2024

HSKDYJNGVSUV

have it :)

@Pinnedyr
Copy link

Pinnedyr commented May 1, 2024

free code: 8A2CGJNHF5S5
:)

@deputyman
Copy link

why are peopl sending codes what does it do

@Tazified
Copy link

Tazified commented May 1, 2024

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

@deputyman
Copy link

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

@FahadAlshemali
Copy link

I'm getting this error "This no longer works in browser. Use the desktop app!"

@deputyman
Copy link

I'm getting this error "This no longer works in browser. Use the desktop app!"

yea it says that on the top of this page, so im asking if there r any alternatives

@Tazified
Copy link

Tazified commented May 1, 2024

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

Install Vencord Plugin from Vencord.dev, you can enable developer settings on it

@deputyman
Copy link

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

Install Vencord Plugin from Vencord.dev, you can enable developer settings on it

yeah i tried that but it didnt work, im on mac idk if that makes a difference

@Tazified
Copy link

Tazified commented May 1, 2024

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

Install Vencord Plugin from Vencord.dev, you can enable developer settings on it

yeah i tried that but it didnt work, im on mac idk if that makes a difference

No idea, I've used vencord and it worked perfectly.

@deputyman
Copy link

o

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

Install Vencord Plugin from Vencord.dev, you can enable developer settings on it

yeah i tried that but it didnt work, im on mac idk if that makes a difference

No idea, I've used vencord and it worked perfectly.

oh ok, thanks anyways, ill try again after i reinstall discord

@deputyman
Copy link

o

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

Install Vencord Plugin from Vencord.dev, you can enable developer settings on it

yeah i tried that but it didnt work, im on mac idk if that makes a difference

No idea, I've used vencord and it worked perfectly.

oh ok, thanks anyways, ill try again after i reinstall discord

by "requires a full restart" does it mean restarrting my mac or discord itself?

@Tazified
Copy link

Tazified commented May 1, 2024

o

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

Install Vencord Plugin from Vencord.dev, you can enable developer settings on it

yeah i tried that but it didnt work, im on mac idk if that makes a difference

No idea, I've used vencord and it worked perfectly.

oh ok, thanks anyways, ill try again after i reinstall discord

by "requires a full restart" does it mean restarrting my mac or discord itself?

Just Discord.

@fauxtyai
Copy link

fauxtyai commented May 1, 2024

WT3CZ285AC5H code

@CSYFO
Copy link

CSYFO commented May 1, 2024

AAKUZJQJCGJD - code

@NylonCS
Copy link

NylonCS commented May 1, 2024

image
doesn't work(

@sharmagamingff
Copy link

image doesn't work(

Download Discord PTB and login to the acc u want to get badges for. Then open a server and invite ur other acc that u are logged into in the browser. Join a voice with ur 2 acc. Open screen with ur main acc and watch the screen with ur other acc. Press ctrl+shift+I in Discord PTB then paste that code into console and wait 15 minutes..
(I just tried it and get badges on both my accounts)

@jokerwtf
Copy link

jokerwtf commented May 1, 2024

WS2DG3RDKDHD
enjoy

@mfr-fr
Copy link

mfr-fr commented May 1, 2024

Use discord PTB for the acount you whant the badge
CS2UZ29APUND
enjoy

@Alcatraz-Funtime
Copy link

UT2CHJ8BYAZ9

@XotiicReaper
Copy link

5B3DHJ9Z6LCV

code

@SmilerMist
Copy link

HBKUH29HE7S5
;)

@Riz-ve
Copy link

Riz-ve commented May 1, 2024

ZA2CH2RWDAZZ You're welcome!

@Numain
Copy link

Numain commented May 1, 2024

SB3VYGS2XTBM Enjoy!

@NotDoger
Copy link

NotDoger commented May 1, 2024

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

why are peopl sending codes what does it do

People can redeem some stuffs on the genshin impact game using the code obtained from discord.

o ok thanks, btw it doesnt work in browser and i cant open console in the app so what do i do

Install Vencord Plugin from Vencord.dev, you can enable developer settings on it

how do you enable dev settings, i downloaded vencord but haven't found out how

@CHENNAjasti
Copy link

can someone get me a code please i am gettign the error:VM695:2 Uncaught TypeError: Cannot read properties of undefined (reading 'push')
at :2:32 i am not an expert in cloud

@xieliann1
Copy link

Hello. Does this work on a MacBook? Im not sure how to open the discord console on Mac.

@HyphenSam
Copy link

Free code: EBKCZZ?S3K8Z
Replace the ? with an A.

@stomhz
Copy link

stomhz commented May 2, 2024

GAJUGYAARZRZ

@YogTandel
Copy link

This no longer works in browser. Use the desktop app!

@DevEsquilo
Copy link

PSJDYZTSELYD

@xieliann1
Copy link

xieliann1 commented May 2, 2024 via email

@Ser1ch
Copy link

Ser1ch commented May 2, 2024

JAJVYYAZ8NXR

@s-xtc
Copy link

s-xtc commented May 2, 2024

BTJCHZD3JHKM

@auh609u
Copy link

auh609u commented May 2, 2024

why the codes are not working?

@luxima-dev
Copy link

AAJVGZV8P72Z
Thanks for info!

Copy link

ghost commented May 2, 2024

ı just want the badge, free code MT2VYYU86LQ5

@FaviFake
Copy link

FaviFake commented May 2, 2024

Free Genshin Impact code: JT2VHY%QF4WD (replace % with the letter U) (expires 05/23/2024 but will be long gone by then)

@sasimedss
Copy link

hello
aamiaa said that This no longer works in browser
how to do it now

@FaviFake
Copy link

FaviFake commented May 2, 2024

@sasimedss You just don't do it in the browser but in the PTB desktop app or the Canary desktop app. The steps are the same (including Ctrl Shift i): discord.com/api/download/ptb?platform=win

@sasimedss
Copy link

FaviFake

should i uninstall vencord?

@Tredoxx
Copy link

Tredoxx commented May 2, 2024

Ptb Client didnt worked for me, try with normal discord and enable developer console.

AB2UHGUN73V9

@FaviFake
Copy link

FaviFake commented May 2, 2024

FaviFake

should i uninstall vencord?

@sasimedss No I've read there's a vencord plugin you can use, read the pinned comment in NTTS's video: youtube.com/watch?v=MV33-XB0gss

@FaviFake
Copy link

FaviFake commented May 2, 2024

Ptb Client didnt worked for me, try with normal discord and enable developer console.

AB2UHGUN73V9

@Tredoxx Weird, I used Canary and it worked. Maybe it's just stable and PTB that don't work

@bosshacker14
Copy link

Please kind people send me the code to try it. I did not have any code to try it. I will be happy if you send it to me on Discord.ID: @team_boss

@bosshacker14
Copy link

Please kind people send me the code to try it. I did not have any code to try it. I will be happy if you send it to me on Discord.ID: @team_boss

@bosshacker14
Copy link

Please kind people send me the code to try it. I did not have any code to try it. I will be happy if you send it to me on Discord.ID: @team_boss

@FaviFake
Copy link

FaviFake commented May 2, 2024

Please kind people send me the code to try it. I did not have any code to try it. I will be happy if you send it to me on Discord.ID: @team_boss

If you keep spamming you won't get one, be civil

@MrDabFoot
Copy link

I am getting the error message: VM689:2 Uncaught TypeError: Cannot read properties of undefined (reading 'push')
at :2:32
what do I do?

@DoomJ0y
Copy link

DoomJ0y commented May 2, 2024

Please kind people send me the code to try it. I did not have any code to try it. I will be happy if you send it to me on Discord.ID: @team_boss

i sent u a friend request, user is i_need_waffles

@bosshacker14
Copy link

من فضلكم أرسلوا لي الكود لتجربته. لم يكن لدي أي رمز لتجربته. سأكون سعيدًا إذا أرسلته لي على Discord.ID: @team_boss

لقد أرسلت طلب صداقة، المستخدم هو i_need_waffles

I await your response, bro

@MrDabFoot
Copy link

nvm im dumb

@MrDabFoot
Copy link

JB3VZZVY4KWM

@hmhainkiller
Copy link

JB3VZZVY4KWM

where to claim this?

@jahmes8
Copy link

jahmes8 commented May 3, 2024

Hello. Does this work on a MacBook? Im not sure how to open the discord console on Mac.

Yes, using the discord desktop app itself hit the following keys CMD + Option + i all at the same time and then it will open inspect elements and then follow the same steps.

If CMD + Option + i doesn't do anything

  1. Go to the finder app
  2. CMD + Shift + G
  3. Type in ~/library
  4. Once that folder opens go to Application Support -> discord -> settings.json
  5. Right click on settings.json -> Open With -> TextEdit and paste the code below the first curly bracket {
    "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true,
  6. Save and Restart Discord

@Tr0llie
Copy link

Tr0llie commented May 3, 2024

I am getting the error message: VM689:2 Uncaught TypeError: Cannot read properties of undefined (reading 'push') at :2:32 what do I do?

Are you using Canary? if so try using ptb or just stable.

@DogeSkii
Copy link

DogeSkii commented May 3, 2024

QA3DZGWYTRJD if anyone wants a code

@bee1850
Copy link

bee1850 commented May 3, 2024

4B2CHZFHA2DH

@Craleone
Copy link

Craleone commented May 3, 2024

9T2CHZEHZK29

@pluba
Copy link

pluba commented May 3, 2024

XBKVZYFF3XWD

@h6rd
Copy link

h6rd commented May 3, 2024

YTKUHYEWMQHM

@Kredwi
Copy link

Kredwi commented May 3, 2024

EB2VYGZL3WRR

@34-4
Copy link

34-4 commented May 3, 2024

Just wanted the badge.
Free code: AB3UHGEECAEH

@SCsupercraft
Copy link

Here are my two codes, redeem them for free stuff at https://genshin.hoyoverse.com/en/gift
PBJCGHGMX9CR
EAJDGYZJMYBR

@sovietcorrupt
Copy link

QAKCHZZ7ECJD

@k0sy
Copy link

k0sy commented May 3, 2024

code: US2UYZYVPDXD

@sanchaton
Copy link

3T2DYHYSNLQV code

@Starebeodd
Copy link

ANOTHER CODE GANG!!!

@searinminecraft
Copy link

My inbox is literally getting flooded with these crap now :/

@mackenzietorculas
Copy link

Code? :<

@mackenzietorculas
Copy link

Redeem Code:

  1. RERBFT39544D
  2. ULEP3495428K
  3. RTJUNRSHTAL9
  4. CA3BLTURGH9D
  5. GENSHINGIFT

redeem them for free stuff at https://genshin.hoyoverse.com/en/gift

@tehfuturegamerz
Copy link

MSKUYGYW48NV

@aix05
Copy link

aix05 commented May 4, 2024

4AKDHZJLS3V9

@bhanukaurav2
Copy link

its not working on windows

@crypt0x1337
Copy link

thanks for the code , here are my codes as i only wanted the badge

MA3CZZ32X65R
NB3DGYJ8KG3Z
DBKUHGK8438D

@Nycto97
Copy link

Nycto97 commented May 4, 2024

My inbox is literally getting flooded with these crap now :/

Top-right of the page, click Unsubscribe

@DiamondRoPlayz
Copy link

My inbox is literally getting flooded with these crap now :/

Same here, I get spammed emails from here 💀

@Razil131
Copy link

Razil131 commented May 4, 2024

3A2UYG262LD9

@Starebeodd
Copy link

most of the codes aren't even working

@ixires
Copy link

ixires commented May 4, 2024

Захват32323232

@zulnurdiana
Copy link

4TJCZH2VJPT5

@aamiaa
Copy link
Author

aamiaa commented May 4, 2024

Захват32323232

You... translated the code to russian?? That obviously won't work 😭

@L3-M
Copy link

L3-M commented May 4, 2024

Was this Patched on browser?

image

@L3-M
Copy link

L3-M commented May 4, 2024

most of the codes aren't even working

you guys know those codes are for Genshin Impact!?
i saw a lot trying to redeem it here
image
if you are here for the badge you need to complete the quest yourself

@L3-M
Copy link

L3-M commented May 4, 2024

here is another one:
LSKCHKK64G3D

@dsiofugyrehijguht
Copy link

PT2CGH2GFCNZ

@NotDragonek
Copy link

it still works?

@Spigey
Copy link

Spigey commented May 4, 2024

Захват32323232

please kill me

@Loona21
Copy link

Loona21 commented May 4, 2024

image
Why like this?

@Lev1fe
Copy link

Lev1fe commented May 4, 2024

Here: "EBKCZY5MN5S5" :D

@soulnlmb
Copy link

soulnlmb commented May 4, 2024

8S2CGHLLCHVZ

@unseensnick
Copy link

it still works?

it does, but for me it only worked when I did it on the discord desktop app (same steps as mentioned above)

@Xrm0s
Copy link

Xrm0s commented May 4, 2024

unseensnick

how do u do it on desktop app?

@L3-M
Copy link

L3-M commented May 5, 2024

unseensnick

how do u do it on desktop app?

OMG WHY YOU TOO LAZY TO READ

Q: Ctrl + Shift + I doesn't work

A: Either download the ptb client, or use this to enable DevTools on stable

@lollilol
Copy link

lollilol commented May 5, 2024

unseensnick

how do u do it on desktop app?

OMG WHY YOU TOO LAZY TO READ

Q: Ctrl + Shift + I doesn't work

A: Either download the ptb client, or use this to enable DevTools on stable

you can also use vencord and enable the option to be able to open the dev console

@lollilol
Copy link

lollilol commented May 5, 2024

UAJUGZLCRR9H

@lollilol
Copy link

lollilol commented May 5, 2024

btw i added some improvements: https://gist.github.com/lollilol/3bb618a6581dda75514d388bcc902653
Strg+Shift+I doesn't work: use vencord to enable dev tools

also maybe add the information that after pasting the script it doesn't work, you need to execute allow pasting in the console and then paste the code block again.

@JxxIT
Copy link

JxxIT commented May 5, 2024

TBJVZZMA67EV

@jarvis09-yann
Copy link

2T2DH7YF3ZMR

@EviclyBoss
Copy link

3T2DHY4FXNNR

@aamiaa
Copy link
Author

aamiaa commented May 5, 2024

btw i added some improvements: https://gist.github.com/lollilol/3bb618a6581dda75514d388bcc902653 Strg+Shift+I doesn't work: use vencord to enable dev tools

also maybe add the information that after pasting the script it doesn't work, you need to execute allow pasting in the console and then paste the code block again.

Honestly if people can't read the text in the console then they won't read the instructions saying the same thing either.

Btw you don't have to tick "Enable React Devtools" in vencord. That toggle only adds 2 extra tabs which aren't relevant here.

@kopa-github
Copy link

Thank you @aamiaa for the codework and the simple guide.

My Reward Code: RBKCYY74W73V

@LunarGalaxyX
Copy link

XSJCYZ6JJVRR

@ExtbhiteEAS
Copy link

So, since that I don't play this game because I got a life and playing on HSR(help). I'll share with you my reward code: LSJDZYN3462R. Here it is, enjoy guys.

@Switch-modder
Copy link

My code is:
YA3CG6LGQCM9

@HunterGodX
Copy link

ABJVZZ779C9H

@Geekberk3
Copy link

SA3CZG6NFJK5

@Anim-osity
Copy link

ETKCYY7UJRWZ

@OnePunchMan2718
Copy link

PSKUGZ63QBWD

@SiriusVegas
Copy link

YB3CHY6WQJD5

@fredi-python
Copy link

4AKCYZ8LRWCD

@Uxifly
Copy link

Uxifly commented May 6, 2024

FB3VZGRRJEF5 here you go

@VeDoxe
Copy link

VeDoxe commented May 6, 2024

3B3UGZQ8QZFH

@ItzGosho
Copy link

ItzGosho commented May 6, 2024

3AKCHY9RFYPR

@CheeseyPlayz
Copy link

i dont play genshin impact, so heres the code, enjoy
MS3DZZ97NPV9

@thisforest
Copy link

Thank you for this,

anyone wanting to redeem in Genshin heres mine

QT2UZYR7TET9

@panthercheats
Copy link

its not even working
image

@kzndotsh
Copy link

kzndotsh commented May 7, 2024

3TKDHGQVWFX5

@TheTrueShadow
Copy link

DAJDZZQCYBHM

@mi9khin12
Copy link

MTJVZGRW5A5V
Thx for this script

@RoyWillems137
Copy link

4BKDHHRFABR9

@mikoprimeb
Copy link

its not even working image

well now you just use desktop app, cant you read

@IshankShankerCodes
Copy link

its not even working image

well now you just use desktop app, cant you read

how to do it on desktop app :-:

@DELTA293
Copy link

DELTA293 commented May 7, 2024

This no longer works in browser. Use the desktop app!

@CamberWTF
Copy link

i dont play genshin impact so if you cant do it and want the code there it is: AS2UGXSVM4ZR

@arHSM
Copy link

arHSM commented May 8, 2024

IIFE version for vencord

(() => {
    const ApplicationStreamingStore = Vencord.Webpack.findStore(
        "ApplicationStreamingStore"
    );
    const QuestsStore = Vencord.Webpack.findStore("QuestsStore");
    const { FluxDispatcher } = Vencord.Webpack.Common;

    let quest = [...QuestsStore.quests.values()].find(
        x =>
            x.userStatus?.enrolledAt &&
            !x.userStatus?.completedAt &&
            new Date(x.config.expiresAt).getTime() > Date.now()
    );

    let isApp = navigator.userAgent.includes("Electron/");
    if (!isApp) {
        console.log("This no longer works in browser. Use the desktop app!");
    } else if (!quest) {
        console.log("You don't have any uncompleted quests!");
    } else {
        let pid = Math.floor(Math.random() * 30000) + 1000;
        ApplicationStreamingStore.getStreamerActiveStreamMetadata = () => ({
            id: quest.config.applicationId,
            pid,
            sourceName: null,
        });

        let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60;
        let fn = data => {
            let progress = data.userStatus.streamProgressSeconds;
            console.log(`Quest progress: ${progress}/${secondsNeeded}`);

            if (progress >= secondsNeeded) {
                console.log("Quest completed!");
                FluxDispatcher.unsubscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn);
            }
        };
        FluxDispatcher.subscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn);

        console.log(
            `Spoofed your stream to ${
                quest.config.applicationName
            }. Stay in vc for ${Math.ceil(
                quest.config.streamDurationRequirementMinutes -
                    (quest.userStatus?.streamProgressSeconds ?? 0) / 60
            )} more minutes.`
        );
        console.log(
            "Remember that you need at least 1 other person to be in the vc!"
        );
    }
})();

@goat865
Copy link

goat865 commented May 8, 2024

2SKCGMHL738R (genshin)

@lastlament
Copy link

works with hsr! thx

@omarAtef101
Copy link

GT2SWJSXFY4F

@goat865
Copy link

goat865 commented May 8, 2024

CT2AX2SX2Z47 (honkai)

@Redblazer27
Copy link

i have 2 codes ( i have a life):

  1. ETJAWJBDA6BK
  2. US3AF3A6DWSK (from my friend)
    enjoy it broskys!

@famesxd
Copy link

famesxd commented May 8, 2024

9S2BW3TJDCCX honkai

@famesxd
Copy link

famesxd commented May 8, 2024

LSKDH6ZMXCXZ genshin

@OptioniaI
Copy link

Honkai

KSKSE48XDW3K

@XenusDev
Copy link

XenusDev commented May 8, 2024

6S2BW59ZF63P Honkai !

@TwoPointInfinity
Copy link

TwoPointInfinity commented May 8, 2024

This works for me, the other person in vc doesnt even have to "watch stream" they can be afk or just a public server. (if you dont have an alt)

@NullDev
Copy link

NullDev commented May 8, 2024

Thanks! PT3TEM6AKJCT Honkai

@Shroomisle
Copy link

For those who want the genshin code: JSKCYGQBCGAM

For those who want the honkai code: 3T3TE5NU5R2X

Enjoy!

@corp14x3
Copy link

corp14x3 commented May 9, 2024

KS3AWMMSFGAX for honkai

@SpookZorp
Copy link

how do I do it on desktop app?

@4rvx
Copy link

4rvx commented May 9, 2024

Genshin Code: 7B2CGHJXWSUZ
Honkai code: PAJBELJY2XBK

@Higuyshowisitgoing
Copy link

Genshin Code: 7B2CGHJXWSUZ Honkai code: PAJBELJY2XBK

Do u get a new badge with honkai or it’s the same?

@0zul
Copy link

0zul commented May 9, 2024

Honkai Star Rail Code: AS3SXMJQPW9X

@akylaj2
Copy link

akylaj2 commented May 9, 2024

ST2SXMGHLC2B

@daerea
Copy link

daerea commented May 9, 2024

TS2SF4HVCCL7

@t0g3pii
Copy link

t0g3pii commented May 9, 2024

Genshin Code: 7B2CGHJXWSUZ Honkai code: PAJBELJY2XBK

Do u get a new badge with honkai or it’s the same?

It should be the same since before the Genshin one there was a Lost Ark one (where you got a pfp border) and doing both quests gave the same badge.

@cleverwasp24
Copy link

cleverwasp24 commented May 9, 2024

Honkai: 6AJBXLC8KAQB

@Gogagra
Copy link

Gogagra commented May 9, 2024

Can someone give me honkai code?

@svayp1337
Copy link

Honkai: 3A3SF4VR6A6X

@hmhainkiller
Copy link

patched?

Badge Isn't obtainable anymore

@ekstraabdi
Copy link

honkai : HS3SFLT8MGTF

@Zis-ter
Copy link

Zis-ter commented May 9, 2024

HSR: 2A2AE69EG75B

@obamajoebidens1
Copy link

honkai PS3SFPR7WHZ7

@NyaShinn1204
Copy link

HSR: 9AJBWNQ4AY8X
HSR: ZB2AEP94ALQK

@L3-M
Copy link

L3-M commented May 9, 2024

ET2SFN5MF8SF

@zxcqirara
Copy link

ZB2SX62EXWZB

@zxcqirara
Copy link

patched?

Badge Isn't obtainable anymore

Why do u think so?

@dx9scope
Copy link

dx9scope commented May 9, 2024

honkai XBJBX62PLPUT

@savoie7304
Copy link

ZAJAX7HAMVJF Honkai
CB3CZZVQZRT9 Genshin

Enjoy !

@playgamesgo
Copy link

WT3UHPT5BAQV Genshin
ZS2TEPFNBZ2P Honkai

@17YL3
Copy link

17YL3 commented May 9, 2024

Honkai - PBJBFNWRCV23
Genshin - CS2UH4B5MFMD

@MarblezGas
Copy link

genshin: XAKDGPVV2BF5
honkai: MAJSWNDFGA4F

@Kennyz-McCormick
Copy link

Code for The Finals..?

@OnePunchMan2718
Copy link

OnePunchMan2718 commented May 9, 2024

Honkai: TT3AFPKZ4NTX

@0m3g4Dev
Copy link

0m3g4Dev commented May 9, 2024

This no longer works in browser. Use the desktop app!

@hoyazin
Copy link

hoyazin commented May 9, 2024

This no longer works in browser. Use the desktop app!

how??

@EmK530
Copy link

EmK530 commented May 9, 2024

how??

in the FAQ they have linked this as one of the methods
check the top comment to see how you can enable dev console

@hoyazin
Copy link

hoyazin commented May 9, 2024

how??

in the FAQ they have linked this as one of the methods check the top comment to see how you can enable dev console

im using arch linux tho

@bestcoderboy
Copy link

how is this working for everyone on desktop app? i'm getting the initial messages but not the Quest progress: in the console

@ternera
Copy link

ternera commented May 9, 2024

Not going to use it, so here is a Honkai key for someone: ZAKSTVK92GB7

@pofaknamak
Copy link

genshin: JT2DHR97MRN5
honkai: QTKATVGHYGTK

@Wasim-jr
Copy link

Wasim-jr commented May 9, 2024

Hello, how do u use the desktop app for this? can someone help me, my discord is @wasim

@DanceTillPee
Copy link

honkai: 2BKBTUPPBB9P

@DanceTillPee
Copy link

honkai: BBJTSC78SLMT

@enderx0n
Copy link

does this work for honkai also?

@aamiaa
Copy link
Author

aamiaa commented May 10, 2024

yes

@micro2547
Copy link

is there ANY way i can remove the badge i changed my mind really quick lmao

@aamiaa
Copy link
Author

aamiaa commented May 10, 2024

Not at the moment

@DuolaD
Copy link

DuolaD commented May 10, 2024

Thanks you,you save my life.

@a2hg
Copy link

a2hg commented May 10, 2024

its not working, i did everything that it said to do

@heychris04
Copy link

Who has the code?

@heychris04
Copy link

is there ANY way i can remove the badge i changed my mind really quick lmao

Do you have the code I want that badge

@LifelikeRylie
Copy link

7A2TTU46YGVT Honkai

@DuolaD
Copy link

DuolaD commented May 10, 2024

its not working, i did everything that it said to do

See FAQ

@soulvlrt
Copy link

anyone got a code?

@soulvlrt
Copy link

honkai: BBJTSC78SLMT

do you have another code? for honkai

@Not-A-Bird-07
Copy link

honkai: MT2ABC5MHCCX

@FilipBoe
Copy link

honkai: GBKT9RWH7TSX

@YannickFuereder
Copy link

honkai: 2BJA88WBYWY3

@Merbuz
Copy link

Merbuz commented May 10, 2024

honkai: 4TKS98WAVRNT
thanks you, author

@ant4536
Copy link

ant4536 commented May 10, 2024

Honkai: QTJARRESN22P
I'm sure someone wants it

@ssaeza
Copy link

ssaeza commented May 10, 2024

Genshin :
5A3DZKW7GX7D
7S3CG3WPQVXM

Honkai :
QBKTR9XCFPHT
RB3T88XT7LEX

@Variable1485
Copy link

honkai: RAJA98WA2AE7

@rorixpatrick
Copy link

Honkai : 8AJSAU2W2LBP

@RizzyD
Copy link

RizzyD commented May 10, 2024

Honkai Codes for Humans: 8B3BTDKH2PM7

@EJoyi221
Copy link

Does anyone still have the code for honkai? I can't do it!!! Helpppp

@lopyo-art
Copy link

Does anyone still have the code for honkai? I can't do it!!! Helpppp

there you go : YSJSTD2UDMZ7

@EJoyi221
Copy link

Does anyone still have the code for honkai? I can't do it!!! Helpppp

there you go : YSJSTD2UDMZ7

Thank you but maybe the code is wrong so I can't enter it😭

@heychris04
Copy link

Does anyone still have the code for honkai for me

@nixielectra
Copy link

Honkai: HSJTQQ8TS9V3

@yahyaa0
Copy link

yahyaa0 commented May 10, 2024

pls i want code honkai

@heychris04
Copy link

Honkai: HSJTQQ8TS9V3

Thanks

@Sandvic1
Copy link

Does anyone still have the code for honkai for me ?

@Conkley
Copy link

Conkley commented May 10, 2024

Does anyone still have the code for honkai for me ?

3B2STU4KTL6T

And Genshin one:

LB3UH2R3KUTD

@yahyaa0
Copy link

yahyaa0 commented May 10, 2024

DOESNT WORK

@OniorR
Copy link

OniorR commented May 10, 2024

Can someone give me a code for honkai?

@gsjfj
Copy link

gsjfj commented May 10, 2024

Honkai: BA3TTVGPUJVB

@OniorR
Copy link

OniorR commented May 10, 2024

why does it says invalid

@headxrc
Copy link

headxrc commented May 10, 2024

Honkai: 9B3TBVH8NU5K

@OniorR
Copy link

OniorR commented May 10, 2024

how do i redeem this bro?
its says invalid

@apt9002
Copy link

apt9002 commented May 10, 2024

still work?

@OniorR
Copy link

OniorR commented May 10, 2024

still work?

not anymore

@apt9002
Copy link

apt9002 commented May 10, 2024

why it says undefined

@apt9002
Copy link

apt9002 commented May 10, 2024

still work?

not anymore

sad

@Blackberrii
Copy link

Blackberrii commented May 10, 2024

still work?

not anymore

sad

I just used it and it's working fine.
got the badge no problem

Code for Honkai: 5SKSAVH43VNK
for whoever wants it

@AverageBum
Copy link

Code for Honkai: LT3TSCEWSVZP
And I never gave away my Genshin code so heres that one too: QA2VZPSW4XPV

@Skijearz
Copy link

Honkai: 4TJABVWW9JH7

@Jo3sDX
Copy link

Jo3sDX commented May 10, 2024

honkai code for the nerds ZS2AR8NENCVT

@Arsh-Arnav
Copy link

Arsh-Arnav commented May 10, 2024

anyone want honkai code the here it is plz thank me:- RSJTQR7HXAGK

@awangelo
Copy link

genshin: GS3VY62A8HGR

@MementoDaMori
Copy link

I cant do it, Anybody got a Honkai code?

@Arsh-Arnav
Copy link

I cant do it, Anybody got a Honkai code?

RSJTQR7HXAGK

@AushrewIsBae
Copy link

Honaki: VTJB9QPTC3VP

@MementoDaMori
Copy link

These are both invalid tho

@Sharmaps1757
Copy link

MAJTBUWSRK3B reply if you claim :)

@soulvlrt
Copy link

bro the code doesnt give youy the badge yall are stupid

@soulvlrt
Copy link

it gives u ingame rewards

@23ovii
Copy link

23ovii commented May 10, 2024

LBJBQQPT9TZP

@Rusiokas
Copy link

6TJTAUFCY7AP

@Toskan4134
Copy link

5BKTR8PT4DE3

@1CM
Copy link

1CM commented May 10, 2024

Honkai:
US2BQ9NUWAPT

@Oligaming
Copy link

Honkai code : 2A3T9Q66243F

@PleaseHelp758474293
Copy link

for anyone who cant open the DevTools on mac. (if you did all the previous steps) turns out that the keyboard shortcut is command+option+i and not command+shift+i

@Arsh-Arnav
Copy link

for anyone who cant open the DevTools on mac. (if you did all the previous steps) turns out that the keyboard shortcut is command+option+i and not command+shift+i

https://www.youtube.com/watch?v=MV33-XB0gss
you can check his pinned comments

@Phinknz
Copy link

Phinknz commented May 10, 2024

Genshin Impact:
3BJVHG8VN8NR

Honkai Star Rail:
YT3T98638RGX

@DimKonta
Copy link

Honkai code
:WBJTACW4TDZB

@apt9002
Copy link

apt9002 commented May 11, 2024

code works?

@hypenage
Copy link

free honkai code: KA2T8Q5FRUZB
go crazy

@Insomniac05
Copy link

Insomniac05 commented May 11, 2024

Honkai Codes : GA3BR8LZ4Z3P, XB2SR94YK5RF

@8bitblock
Copy link

still work?

i litterly just used it

  1. you need someone in a vc with you watching your steam play a game if it doesnt show up at first
  2. wait 15 mins
  3. get badge
  4. prey no one saw that you where "playing" honki (or the other cringe games they pick)

@nolucid
Copy link

nolucid commented May 11, 2024

free honkai hooray: CBJS98MASE2K

@SARJC72752
Copy link

Honkai Star rail code

XA2SRRLTKE4K :)

@searinminecraft
Copy link

Here you go degenerates: UA2TQR5DREFF

- Ryo :3

@khalil-hamidani
Copy link

Honkai : DBJS8R5P5DT7

@TazeXL
Copy link

TazeXL commented May 11, 2024

patched?

nop still working im doing it rn

@RetroDogo
Copy link

for some reason every time i do it, it keeps saying "undefined" right after the warning text telling you to join on an alt wtfff

@8bitblock
Copy link

for some reason every time i do it, it keeps saying "undefined" right after the warning text telling you to join on an alt wtfff

its doing that because the code you input isnt defined in the code orignaly it will still work and make sure you have an alt in the call to "watch" the stream

@xPapy
Copy link

xPapy commented May 11, 2024

'' This no longer works in browser. Use the desktop app!'' how i use this code

@dreyware
Copy link

Honkai code for you: FBJTQRKSD7Y7

@8bitblock
Copy link

'' This no longer works in browser. Use the desktop app!'' how i use this code

have developer options on in discord app then hit ctrl+shift+i and do it then

@galaxyaiclub
Copy link

7B2STVC95EXX

@emrcaca
Copy link

emrcaca commented May 12, 2024

Honkai code 1: CAJBSVU8RUBF
Honkai code 2: JSJTQRHT3RQT
Honkai code 3: VA3BRQYS3DKP
Honkai code 4: TA2TSDC9LVNX
Honkai code 5: DTKSBUD3G797
Honkai code 6: VT2ABVUJC32B

@YousseffAB
Copy link

yo, also works with the new mission? for me it doesnt.

@Ma110w
Copy link

Ma110w commented May 12, 2024

yeah, i guess they patched it again, as currently even though im using the discord app, it claims im in the browser

@Ma110w
Copy link

Ma110w commented May 12, 2024

if you had my issue just swap to PTB, it seems to work flawlessly

@YousseffAB
Copy link

YousseffAB commented May 12, 2024 via email

@putmeinagrave
Copy link

Honkai: RB3BSVTZNVN3

@asxtroz
Copy link

asxtroz commented May 12, 2024

honkai: XSJBRQGCC28B

@SmartGuy09
Copy link

For Honkai
RSKA9RGD59T7

but seriously who tf play this game

@MrPiggy105
Copy link

This works (if you follow the instructions). For those badge goblins, the badge has been discontinued :(

The JavaScript works by spoofing the stream so make sure you are on the Desktop App and are streaming any window. (does not have to be named anything).

@apt9002
Copy link

apt9002 commented May 12, 2024

This works (if you follow the instructions). For those badge goblins, the badge has been discontinued :(

The JavaScript works by spoofing the stream so make sure you are on the Desktop App and are streaming any window. (does not have to be named anything).

thank you so much man, it worked!

@vmprs
Copy link

vmprs commented May 12, 2024

idk who plays this game but here
FBJA8RGQZE5P

@apt9002
Copy link

apt9002 commented May 12, 2024

Honkai code:
2B3ARRY74YW3
3SKT98G73MC7

@R-udren
Copy link

R-udren commented May 12, 2024

Honkai: QA3S8QGR5J6B

@R-udren
Copy link

R-udren commented May 12, 2024

'' This no longer works in browser. Use the desktop app!'' how i use this code

Try some discord clients such as Vencord where you can turn on developer console

@ahmedhoosam
Copy link

RBKSR9G2X9QT
LTKB9QH2W6BK

@omegion3
Copy link

Honkai: SAKB89ZJVQ3K

@Anonim-Anonim
Copy link

Now it always shows that I am streaming this game. How to remove it? Help me please.

@aamiaa
Copy link
Author

aamiaa commented May 12, 2024

Now it always shows that I am streaming this game. How to remove it? Help me please.

Restart discord

@azurexxxx
Copy link

Honkai code for u <3
3T3BBDBBJ9V7

@xm4r1us
Copy link

xm4r1us commented May 12, 2024

i pasted and didnt get any err but not responding after 15min. Im using ubuntu version of discord.

@GSaelor
Copy link

GSaelor commented May 12, 2024

You are welcome
LBJSBVSNF8NK

@MythicHH
Copy link

Honkai code: QB2TTUSQCSQF

@123SONIC321
Copy link

Honkai code: 3AJABUA2AWXB

@p4n-dev
Copy link

p4n-dev commented May 12, 2024

Dropping my code here since I dont play the game:
XSJCHFSY6S9Z

@Benlu-ca
Copy link

Honkai code: 9A2BBHAVCJU3

@BoomBoomMushroom
Copy link

Honkai code: UBKB9RX3NKHT

@Shrapnel-118
Copy link

RA3AR9VFSJAT

@Qusaidsaidsoadioa
Copy link

I'm really tired and I don't know how to take the badge
('' This no longer works in browser. Use the desktop app!'')
If someone can help me, please provide the information in detail so that I can apply them in order.

@aix05
Copy link

aix05 commented May 13, 2024

@Qusaidsaidsoadioa This no longer works in browser! You can download "Discord PTB".
Click:View >Developer >Toggle Developer Tools

@Qusaidsaidsoadioa
Copy link

@Qusaidsaidsoadioa This no longer works in browser! You can download "Discord PTB". Click:View >Developer >Toggle Developer Tools
man ty now i have it <3

@Qusaidsaidsoadioa
Copy link

ZAKASE8CEV2B

@Tr0llie
Copy link

Tr0llie commented May 13, 2024

HonKai_Star_Rail_Code = "HA2SSY5T6MBP"

@zeff9801
Copy link

Honkai code: VAJSQ9CBHD4P

@itzL1m4k
Copy link

ABKA9RCCVD97

@Glan51
Copy link

Glan51 commented May 13, 2024

Honkai: GT2ATZ5NYU5B

@XenusDev
Copy link

If someone can help me, please provide the information in detail so that I can apply them in order.

use this way on Client Version

@GamingWubba93
Copy link

Here are the following codes:

  • Genshin Impact: GB2VYKLTMSJZ
  • Honkai Star Rail: XT3S99C6NNCF

@ardaltunel
Copy link

ardaltunel commented May 14, 2024

Honkai Star Rail: 5T2SQRDRYP93
PUBG: U01743-0ZF5-3IJU-1I0PZ

@CIuttch
Copy link

CIuttch commented May 14, 2024

ZA2TR8D8DP7F

Honkai Star Rail Code!!!

@UniWest
Copy link

UniWest commented May 14, 2024

DT3TTZLJXTHP honkai code

@hidudes1232
Copy link

How do i do this on the app cuz it says it dosent work on the browser anymore. Ive tried the browser and dosnet work. How am i supposed to do this on the desktop app?

@candestan
Copy link

Honkai: 9B2SSH3E2WBF

@8venn
Copy link

8venn commented May 14, 2024

if it doesnt work for anyone:
(THIS IS PC)

  1. i think you have to download vencord to get it in app but im not sure.
  2. when in the discord app, make sure to have 1 alt together with you in the vc, which is watching the stream.
  3. click ctrl + shift + i to open console.
  4. paste the code. if the code doesnt work, paste the raw code, this worked for me. (to get the raw code click "raw" on the top of the code)
  5. then wait 15 minutes!
    NOTE: this worked for me, it might not work for everyone.

@xPapy
Copy link

xPapy commented May 14, 2024

hepinizin amına koyim

noldu la

@Novakym
Copy link

Novakym commented May 14, 2024

free genshin impact code : 5TKUZ25AL5AH

@Novakym
Copy link

Novakym commented May 14, 2024

Honkai: PAKBSGKPG89X

@Novakym
Copy link

Novakym commented May 14, 2024

PUBG : U01743-00GL-20V0-30K5G

@Abelkrijgtalles
Copy link

Honkai: CB3BTYJ687YF

@ZuhuInc
Copy link

ZuhuInc commented May 14, 2024

i just checked if it could be done with a bot instead of a alt and that works 2

@playgamesgo
Copy link

PUBG: U01743-0606-ARKC-PQERQ

@luxima-dev
Copy link

Honkai Impact Star Rail code: FAJTQ9CSX8KT

Enjoy it ❤️✨

@luxima-dev
Copy link

PUBG code: U01743-0BLF-BX1L-5VO69

Enjoy!

@TheSrBig
Copy link

Honkai Code: QAKSBGK8KXBF

@chadexe
Copy link

chadexe commented May 14, 2024

I have tried every discord client, and betterdiscord, vencord and cant get the dev console/element inspect opened (Ctrl + Shift + I)

@ccsimplyspolit
Copy link

I have tried every discord client, and betterdiscord, vencord and cant get the dev console/element inspect opened (Ctrl + Shift + I)
use this to enable DevTools on stable

@TwoPointInfinity
Copy link

pubg "og is back" pack
code: U01743-0Y27-1ECE-V6VAU

@MkevinF
Copy link

MkevinF commented May 14, 2024

Thanks, it really works.

Honkai Code: 2SKTSY32L863

Genshin Impact: GB2UG74WNXD5

PUBG: U01743-13I9-R8EJ-8ZZZM

@Icee1
Copy link

Icee1 commented May 14, 2024

HSR Code: 9B2ASZ24GS4P
thanks for the thingy!

@ZanoxQc
Copy link

ZanoxQc commented May 15, 2024

@ZanoxQc
Copy link

ZanoxQc commented May 15, 2024

How to make it work on Discord App

Do Win + R then type %appdata%

Then Open :
discord/settings.json with a text editor or VSC

In Settings add
"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true

Reboot Ur Client ( Close completely discord then open it back )

Claim the quest et start a stream with at least another Friends or alt ( They Don't Need to watch it )

Hit Ctrl + Shift + I

Go in console then paste the code ( Make sure you copied all of it )

Wait t'ill it complete then ur good to go for all of the oder quest

@GarnishBoi
Copy link

Honkai Star Rail code: EBJABGKL35ST

@chadexe
Copy link

chadexe commented May 15, 2024

I have tried every discord client, and betterdiscord, vencord and cant get the dev console/element inspect opened (Ctrl + Shift + I)
use this to enable DevTools on stable

Done that already over 15th times

@Faris0520
Copy link

Just download Discord PTB / Beta. It will works

@se2ndDude
Copy link

PUBG: U01743-1WSD-8W0U-GLGNT

@Shroomisle
Copy link

Pubg code: U01743-1XBT-I73N-RF1WS

@MahmoudAli96505
Copy link

Pubg code: U01743-210P-4UYP-QHVNF

@asxtroz
Copy link

asxtroz commented May 15, 2024

Pubg : U01743-21IF-EYBZ-GX74P

@TracGlader
Copy link

HONKAI: STJBBXG2AE87

@aceyx3
Copy link

aceyx3 commented May 15, 2024

U01743-299L-GE4H-EOH0B - PUBG

@soldierguy
Copy link

PUBG code if anyone wants it U01743-2QO7-LSX7-3UCJE

@dx9scope
Copy link

pubg U01743-3538-QQPU-EH8KV

@Conkley
Copy link

Conkley commented May 15, 2024

PUBG U01743-3918-JBF7-T4S0H

@pofaknamak
Copy link

PUBG : U01743-4494-U7FC-OQLD4

@Abelkrijgtalles
Copy link

PUBG: U01743-4GO6-YVB7-WMJZV

@pleasegiverocket
Copy link

PUBG: U01743-5191-8VWW-STXK6

@valentineu0
Copy link

It's really great that this code works in all quests.

@atouu
Copy link

atouu commented May 15, 2024

PUBG: U01743-5AX4-PQ0V-WCMPP

@Glan51
Copy link

Glan51 commented May 15, 2024

PUBG: U01743-5N4Y-2XM6-U0SG7

@vmprs
Copy link

vmprs commented May 15, 2024

U01743-5NAZ-CZV9-JJCHD - PUBG

@Speedyu
Copy link

Speedyu commented May 15, 2024

I have tried every discord client, and betterdiscord, vencord and cant get the dev console/element inspect opened (Ctrl + Shift + I)

If you have AMD probably the shortcut for screenshot is interfering with the console shortcut. Try and disable the hotkey

@Dadan2002
Copy link

I would be the happiest dude if anyone could help me make the pubg quest, pleasee
here is my discord : justfullofsecrets with cat pfp

@ItsDevilCrossy69
Copy link

U01743-6104-LPD1-LHSKF PUBG

@ItsDevilCrossy69
Copy link

And Honkai: STJTRRD4D6BK

@AxB2002
Copy link

AxB2002 commented May 15, 2024

I have tried every discord client, and betterdiscord, vencord and cant get the dev console/element inspect opened (Ctrl + Shift + I)

Its working for me:

  • Completely close discord via the task manager
  • Win+R -> %appdata%\discord
  • Find settings.json and open it
  • Delete everything, add the following lines:
    {
    "DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true,
    "chromiumSwitches": {}
    }
  • Relaucnh discord app and press Ctrl+Shift+I

Voilà :)

@Shakiozz
Copy link

Honkai Code: RBKS9QBY8MHT

@blackrider6066
Copy link

blackrider6066 commented May 16, 2024

Will it still work if I accept 2 quests together?

also, this isn't working even though I'm using discord clinet
if (!isApp) {
console.log("This no longer works in browser. Use the desktop app!")

@AxB2002
Copy link

AxB2002 commented May 16, 2024

Will it still work if I accept 2 quests together?

It will not do all the quest at the same time.
Finish one and then reload the script for the second quest

@OnePunchMan2718
Copy link

Pubg: U01743-74SX-Q4WM-SCG3O

@aix05
Copy link

aix05 commented May 16, 2024

PUBG: U01743-7GVF-ERL2-BYE18

@JosamX
Copy link

JosamX commented May 16, 2024

Honkai: 9S2ATZYH38RF

@TBTech205
Copy link

Honkai Star Rail code: 9TJATYGAP2BB

@Tr0llie
Copy link

Tr0llie commented May 16, 2024

Note

if im not wrong, discord recently fix it so that u can't do it with a music bot anymore, you need an alt that is watching the stream for it to progress.
If it does still work, please correct me, but as far as i know, someone needs to be watching the stream

@blakewitha4
Copy link

it still works if you do it in discord. for people having problems what i did was just delete
(its at the very end of the code) and make sure to add back the "}" so the code works
console.log(Spoofed your stream to ${quest.config.applicationName}. Stay in vc for ${Math.ceil(quest.config.streamDurationRequirementMinutes - (quest.userStatus?.streamProgressSeconds ?? 0) / 60)} more minutes.)
console.log("Remember that you need at least 1 other person to be in the vc!")
}

@Tr0llie
Copy link

Tr0llie commented May 17, 2024

it still works if you do it in discord. for people having problems what i did was just delete (its at the very end of the code) and make sure to add back the "}" so the code works console.log(Spoofed your stream to ${quest.config.applicationName}. Stay in vc for ${Math.ceil(quest.config.streamDurationRequirementMinutes - (quest.userStatus?.streamProgressSeconds ?? 0) / 60)} more minutes.) console.log("Remember that you need at least 1 other person to be in the vc!") }

per your comment, i am not sure what you're tryn to imply, it still work with a music bot? because i tried it on multiple account and it does not work anymore

@x-xhai
Copy link

x-xhai commented May 17, 2024

HONKAI:

HSKT8RAA6FTF

@nixielectra
Copy link

PUBG: U01743-9V5K-P5ZM-C8N84

@WilkorPLYT
Copy link

WilkorPLYT commented May 17, 2024

Genshin:

MA3TTWQ8YKFB

@arpan-khan
Copy link

PUBG: U01743-A6WL-S6SY-MT9HB

@MrBaconHat
Copy link

how do i use this script on desktop? can anyone guide me?

@TropicalBeach
Copy link

U01743-AO3C-51B7-1LYVI pubg reward

@aamiaa
Copy link
Author

aamiaa commented May 17, 2024

how do i use this script on desktop? can anyone guide me?

Yes. You'll find a guide at the top of the page.

@truja000
Copy link

not workin??

@BubblzxD
Copy link

How do i disable this from my console its making my discord slow dm me on discord B3bblz @aamiaa

@aamiaa
Copy link
Author

aamiaa commented May 17, 2024

what
it can't make your discord slow, it just overwrites an existing function

@Abd1lle
Copy link

Abd1lle commented May 18, 2024

Honkai: RAKATFNF3ZHX

@sealldeveloper
Copy link

Working great, thank you!

@misike12
Copy link

Honkai: YBKSSAJ38TEK

@sealldeveloper
Copy link

Honkai Star Rail: 5SKBBB32DJMK
PUBG: U01743-BPMD-AA8M-VJ51M

@searinminecraft
Copy link

searinminecraft commented May 18, 2024

I don't have any friends that play PUBG so here: U01743-BPD2-WX42-711VR

- Ryo again :3

@BernhardSigl
Copy link

honkai:
NA2BAT2298D7

@SpaceCat1748
Copy link

SpaceCat1748 commented May 18, 2024

Снимок экрана 2024-05-18 160456
Maybe someone can tell me how to complete this task? (I don’t have pubg)

@czQery
Copy link

czQery commented May 18, 2024

idk, for previous 2 quests it worked for me but not for pubg

@sealldeveloper
Copy link

Снимок экрана 2024-05-18 160456 Maybe someone can tell me how to complete this task? (I don’t have pubg)

Do the instructions it says and you will be able to get the reward, you don't have to own the game.

@sealldeveloper
Copy link

idk, for previous 2 quests it worked for me but not for pubg

Worked fine for me, did it on a Mac M1 btw

@cxb190007
Copy link

cxb190007 commented May 18, 2024

honkai: CB2SAAYEK293
GS2ABGXVWCQB

@6fq
Copy link

6fq commented May 18, 2024

PUBG : U01743-CIZA-QTT9-EX1X2
Genshin : LAKBTD3S8CJP

@strangerlel
Copy link

got this error how can i fix it?: VM186:2 Uncaught TypeError: Cannot read properties of undefined (reading 'push')
at :2:32

@Meredith666
Copy link

after I close discord the code will dissapear?

@strangerlel
Copy link

nevermind i got it to work heres the code for
honkai: MT2TSZWU47ZK

@courfazor
Copy link

courfazor commented May 19, 2024

Hi. I can confirm it does not work for PUBG, but it works for Genshin Impact.
I followed the instructions for both quests, and I tried it for PUBG multiple times. After getting the message that I need more people in vc there is two people, but nothing more happens. Using Macbook ARM if that makes any difference.
Screenshot 2024-05-19 at 02 33 50

@searinminecraft
Copy link

seems that it does not work for some reason but it worked for my other account (havent tested my 1 other account)

@cizg
Copy link

cizg commented May 19, 2024

honkai: ZBJABGF8HYUF

@cizg
Copy link

cizg commented May 19, 2024

pubg: U01743-DBKE-5M71-69V6J

@Lampe2020
Copy link

I don't play Honkai (I already slid into Genshin through the Discord Quests XD), so here's the Honkai code I got: 4BKABZFJFKUB
And because I have declared all violence-centric games off-limits for me I don't play PUBG either, so here's my PUBG code: U01743-DIF9-GZIG-VQ52H

@vperpl
Copy link

vperpl commented May 19, 2024

worked for genshit, not working for pubg having same shit as picture above by @courfazor

@H644b
Copy link

H644b commented May 19, 2024

@courfazor I noticed that it doesn't work on mac try using it on linux or pc. It didn't work for me while on mac either. Also @vperpl Are you using a mac too?

@czQery
Copy link

czQery commented May 19, 2024

I am on win11 so i don't think its os related, also tried with and without vencord, and with different alt connected from different ip in the vc, but no luck.

@SuchBlue
Copy link

SuchBlue commented May 19, 2024

Honkai: 7T2BSYCYT5N3
PUBG: U01743-EA95-52PJ-W29C8

@courfazor
Copy link

courfazor commented May 19, 2024

I have no idea why others have no problems with PUBG quest as they are posting codes, but I cannot get it to work when it worked for the two other quests. I tried it with Windows 10 today too and no luck with that either. I am using vanilla Discord with no mods just to be safe.
@H644b @czQery
Edit: They might be checking the graphics card I use too? I am grasping at straws here.

@aamiaa
Copy link
Author

aamiaa commented May 19, 2024

They aren't checking anything. Rerunning the script after completing other quests should be enough to complete PUBG.
I've also tried an hour ago on an alt and it worked fine.

@Aarondoran
Copy link

How do i disable this from my console its making my discord slow dm me on discord B3bblz @aamiaa

its called a low-end pc

@Ixnayed
Copy link

Ixnayed commented May 19, 2024

Can somebody give me a pugb code, im desperate. my ds is: Azarenkaa

@xaetacore
Copy link

Honkai: LAJABGDABMP7

@bigbearsl
Copy link

bigbearsl commented May 20, 2024

Honkai: QS3STHVDRL73
PUBG: U01743-ENRD-2FY3-01PHY

@vrakelsmike
Copy link

PUBG: U01743-ES2C-5XWM-ABD80

@sametaor
Copy link

PUBG: U01743-ES2C-5XWM-ABD80

I can't seem to get the one for PUBG, does it show you the Quest Progress in the console logs?

@Lampe2020
Copy link

Lampe2020 commented May 20, 2024

PUBG: U01743-ES2C-5XWM-ABD80

I can't seem to get the one for PUBG, does it show you the Quest Progress in the console logs?

Yes, and in the "Quests" tab in the Discord settings.
I needed to restart Discord and reinsert the script for it to work with the PUBG one, because I clicked the "Accept quest" button for both PUBG and Honkai, so it chose to do Honkai first and then didn't automatically detect that the PUBG one was also open.

@sametaor
Copy link

PUBG: U01743-ES2C-5XWM-ABD80

I can't seem to get the one for PUBG, does it show you the Quest Progress in the console logs?

Yes, and in the "Quests" tab in the Discord settings. I needed to restart Discord and reinsert the script for it to work with the PUBG one, because I clicked the "Accept quest" button for both PUBG and Honkai, so it chose to do Honkai first and then didn't automatically detect that the PUBG one was also open.

Alr, thanks. I did the same mistake, ig I gotta restart the client or reinstall it. Will update if it works

@snackpackwayne
Copy link

genshin impact - v4.6 quest
6TJDZ5BUQ5E5

honkai: star rail - v2.2 quest
KBKTTYXHRS3T

pubg: battlegrounds - erangel classic quest
U01743-EVKS-000Z-ASN2U

@davehornik
Copy link

@aamiaa Any way to revert back the spoofing as PUBG? I am playing V-Rising, quest complete but Dsc is still thinkin I am playing PUBG 🤣

@swredderx
Copy link

idk, for previous 2 quests it worked for me but not for pubg

Worked fine for me, did it on a Mac M1 btw

How did you bring up console on discord desktop app (Mac) ? I tried Command⌘ + Option + I but it does not work..

@sametaor
Copy link

PUBG: U01743-ES2C-5XWM-ABD80

I can't seem to get the one for PUBG, does it show you the Quest Progress in the console logs?

Yes, and in the "Quests" tab in the Discord settings. I needed to restart Discord and reinsert the script for it to work with the PUBG one, because I clicked the "Accept quest" button for both PUBG and Honkai, so it chose to do Honkai first and then didn't automatically detect that the PUBG one was also open.

Hey so I tried doing the same, but the error still persists, how exactly did you restart discord and start from scratch?

@Tr0llie
Copy link

Tr0llie commented May 20, 2024

PUBG: U01743-ES2C-5XWM-ABD80

I can't seem to get the one for PUBG, does it show you the Quest Progress in the console logs?

Yes, and in the "Quests" tab in the Discord settings. I needed to restart Discord and reinsert the script for it to work with the PUBG one, because I clicked the "Accept quest" button for both PUBG and Honkai, so it chose to do Honkai first and then didn't automatically detect that the PUBG one was also open.

Hey so I tried doing the same, but the error still persists, how exactly did you restart discord and start from scratch?

TO restart discord, if you are on windows go to task manager and search for discord and end task
if ur on Linux (mint) right click on the discord applet and click force close

@Tr0llie
Copy link

Tr0llie commented May 20, 2024

idk, for previous 2 quests it worked for me but not for pubg

Worked fine for me, did it on a Mac M1 btw

How did you bring up console on discord desktop app (Mac) ? I tried Command⌘ + Option + I but it does not work..

u need to enable dev options in the settings
if not:
are you on discord ptb or stable? (ptb is recommanded)
if it still doesnt work, just install vencord.

@Tr0llie
Copy link

Tr0llie commented May 20, 2024

@aamiaa Any way to revert back the spoofing as PUBG? I am playing V-Rising, quest complete but Dsc is still thinkin I am playing PUBG 🤣

force shut discord close and open again

@czQery
Copy link

czQery commented May 20, 2024

I have no idea why others have no problems with PUBG quest as they are posting codes, but I cannot get it to work when it worked for the two other quests. I tried it with Windows 10 today too and no luck with that either. I am using vanilla Discord with no mods just to be safe. @H644b @czQery Edit: They might be checking the graphics card I use too? I am grasping at straws here.

I managed to claim it on alt, but it just doesn't work on my main.

@sametaor
Copy link

PUBG: U01743-ES2C-5XWM-ABD80

I can't seem to get the one for PUBG, does it show you the Quest Progress in the console logs?

Yes, and in the "Quests" tab in the Discord settings. I needed to restart Discord and reinsert the script for it to work with the PUBG one, because I clicked the "Accept quest" button for both PUBG and Honkai, so it chose to do Honkai first and then didn't automatically detect that the PUBG one was also open.

Hey so I tried doing the same, but the error still persists, how exactly did you restart discord and start from scratch?

TO restart discord, if you are on windows go to task manager and search for discord and end task if ur on Linux (mint) right click on the discord applet and click force close

That doesn't make any difference, the main difference here is that it just puts out "undefined" instead of "Quest Progress: x of 900" in the console.log, which I suspect is due to discord disabling it. Wonder if that can be bypassed, since I did manage to get the one for Honkai in the same way

@Tr0llie
Copy link

Tr0llie commented May 20, 2024

I have no idea why others have no problems with PUBG quest as they are posting codes, but I cannot get it to work when it worked for the two other quests. I tried it with Windows 10 today too and no luck with that either. I am using vanilla Discord with no mods just to be safe. @H644b @czQery Edit: They might be checking the graphics card I use too? I am grasping at straws here.

I managed to claim it on alt, but it just doesn't work on my main.

you probably ran the console first before you claim it, so try refresh discord and run the script again

@aamiaa
Copy link
Author

aamiaa commented May 20, 2024

The "undefined" doesn't matter. It's just a devtools shenanigan where it always outputs the value returned by the code you ran, and this one doesn't return anything.

The script is still working, discord didn't disable anything.

@sametaor
Copy link

The "undefined" doesn't matter. It's just a devtools shenanigan where it always outputs the value returned by the code you ran, and this one doesn't return anything.

The script is still working, discord didn't disable anything.

That's what I assumed as well, but it doesn't display any sort of progress on the PUBG quest, it remains at 0%. Is there any way of fixing this? Cause I really don't wanna install a 40GB game just to complete a quest lol.

@czQery
Copy link

czQery commented May 20, 2024

I have no idea why others have no problems with PUBG quest as they are posting codes, but I cannot get it to work when it worked for the two other quests. I tried it with Windows 10 today too and no luck with that either. I am using vanilla Discord with no mods just to be safe. @H644b @czQery Edit: They might be checking the graphics card I use too? I am grasping at straws here.

I managed to claim it on alt, but it just doesn't work on my main.

you probably ran the console first before you claim it, so try refresh discord and run the script again

I started the quest 2 days ago and retried many times exactly like it's said in the steps.
I would like to provide some debug information to help this figure it out but id don't know what.

@aamiaa
Copy link
Author

aamiaa commented May 20, 2024

I'm not sure why wouldn't it work for you guys.
If you run it and leave devtools open for a while, do you see any requests labeled "heartbeat" in the Network tab?

@sametaor
Copy link

sametaor commented May 20, 2024

I'm not sure why wouldn't it work for you guys. If you run it and leave devtools open for a while, do you see any requests labeled "heartbeat" in the Network tab?

Nope, all I see is a zstd-stream request being there, no sign of a heartbeat request, but I did notice the heartbeat ACK message being pushed into the console.log as the code defines.
I am guessing it has something to do with starting two quests at the same time, wherein, I accepted the PUBG quest first, followed by the Honkai one(which also worked as expected, unlike PUBG).

@czQery
Copy link

czQery commented May 20, 2024

in network tab no, just in console.

[RTCControlSocket] Sending heartbeat
[RTCControlSocket] Heartbeat ACK received
[DirectVideo] attaching srcObject for 25
Subscribing to direct frames for streamId 25
[RTCControlSocket] Sending heartbeat
[DirectVideo] handleReady for 25, have onReady callback = true
[RTCControlSocket] Heartbeat ACK received
[RTCControlSocket] Sending heartbeat
[RTCControlSocket] Heartbeat ACK received
Unsubscribing from direct frames for streamId 25

image

@Tr0llie
Copy link

Tr0llie commented May 20, 2024

@aamiaa Im pree

I'm not sure why wouldn't it work for you guys. If you run it and leave devtools open for a while, do you see any requests labeled "heartbeat" in the Network tab?

@aamiaa Im pretty sure that discord change it so that someone must be watching the stream no?
because i tried it with a music bot and it doesnt work on all 4 of my accounts

@sametaor
Copy link

@aamiaa Im pree

I'm not sure why wouldn't it work for you guys. If you run it and leave devtools open for a while, do you see any requests labeled "heartbeat" in the Network tab?

@aamiaa Im pretty sure that discord change it so that someone must be watching the stream no? because i tried it with a music bot and it doesnt work on all 4 of my accounts

I am watching my own stream using my own alt right as we speak, yet it doesn't do anything. Must be smth else, or just the usual fallback of discord trying to patch it up.

@Tr0llie
Copy link

Tr0llie commented May 20, 2024

@aamiaa Im pree

I'm not sure why wouldn't it work for you guys. If you run it and leave devtools open for a while, do you see any requests labeled "heartbeat" in the Network tab?

@aamiaa Im pretty sure that discord change it so that someone must be watching the stream no? because i tried it with a music bot and it doesnt work on all 4 of my accounts

I am watching my own stream using my own alt right as we speak, yet it doesn't do anything. Must be smth else, or just the usual fallback of discord trying to patch it up.

i do watxh my own stream but it used to work with bots

@Nixeld
Copy link

Nixeld commented May 20, 2024

The script is not working on my main account but works on 2 other alt accounts.

@zRamoox
Copy link

zRamoox commented May 20, 2024

5TJSSXP2QUXF Honkai Star Rail, thx

@reomix
Copy link

reomix commented May 20, 2024

Enjoy
Honkai gifts :

2AKS98C25827
3T3B89UJM2HX

@reomix
Copy link

reomix commented May 20, 2024

Enjoy
Pubg gifts :

U01743-5K4V-FBPZ-SO2FS
U01743-5NN5-6N5T-J3NXW

@Kekssaege
Copy link

Enjoy
Honkia gifts:
LA3S99S66D9F

@savoie7304
Copy link

PUBG : U01743-F98D-ID6N-0U2ZZ

@Ixnayed
Copy link

Ixnayed commented May 20, 2024

Can somebody please give me a pubg code? My ds is: Azarenkaa

@TfDucchi
Copy link

PUBG: U01743-ES2C-5XWM-ABD80

I can't seem to get the one for PUBG, does it show you the Quest Progress in the console logs?

it dont show in console log

@ktot404
Copy link

ktot404 commented May 21, 2024

Honkai: Star Rail: FBKTAW4FACTB, MT2ASDXTGRZK
PUBG: U01743-FP9S-MVT0-L6R5V, U01743-BM2P-DZDV-N2R1V

@vperpl
Copy link

vperpl commented May 21, 2024

Weird like created new discord account works now but on my main acc icant do it :suspect:

@BarievArtem
Copy link

BarievArtem commented May 21, 2024

Pubg: U01743-FV68-XAWP-MLXR4
Genshin Impact: YTKCH3GKMHNV
Honkai Star Rail: CT2SBXLE2KEX
enjoy)

@moseybat
Copy link

Genshin: 6T2DG7Z5CYE9
Honkai: YTKAADC28PHK
PUBG: U01743-G19V-GD4I-4B8BM

@rizzomz
Copy link

rizzomz commented May 22, 2024

PUBG: U01743-BFGK-SSAR-B29XR

@Yamac12345
Copy link

Completed a Quest

@Yamac12345
Copy link

Completed a Quest

@Yamac12345
Copy link

"9b1481cc0bc4f8...

@AyelenTH
Copy link

PUBG code: U01743-HMJ4-RU6I-XFDHD

@el-l33v
Copy link

el-l33v commented May 23, 2024

pupbg: U01743-HQ54-5ABY-FUSBB

@GoOfficial
Copy link

GoOfficial commented May 23, 2024

Honestly guys, I tried this code and it didn't work several times. I keep getting "undefined" instead of the quest time. I found another GitHub page with another persons code and it worked for me. If you want to use it then here's the link: https://gist.github.com/RussDev7/4744bd50dd65db27f9fd162e911fd936

@aamiaa
Copy link
Author

aamiaa commented May 23, 2024

Honestly guys, I tried this code and it didn't work several times. I keep getting "undefined" instead of the quest time. I found another GitHub page with another persons code and it worked for me. If you want to use it then here's the link: https://gist.github.com/RussDev7/4744bd50dd65db27f9fd162e911fd936

But you know that's the exact same code? lol

@UltraBot05
Copy link

UltraBot05 commented May 24, 2024

PUBG: U01743-I7JN-OVES-SCGB8
and if the above doesnt work, https://gist.github.com/UltraBot05/06af64592d07e963a1f46e743bc53c29
my link will 100% work cuz i got badge xd

@sametaor
Copy link

Honestly guys, I tried this code and it didn't work several times. I keep getting "undefined" instead of the quest time. I found another GitHub page with another persons code and it worked for me. If you want to use it then here's the link: RussDev7/4744bd50dd65db27f9fd162e911fd936

But you know that's the exact same code? lol

True, but it's slightly different, since somehow that worked for me as well. You can take a look as to why that worked when this one didn't, especially for us folks. Then you can add that as an alternative code snippet/solution for those who face similar issues in the future

@SoldMomForWiFi
Copy link

PUBG: U01743-I7JN-OVES-SCGB8 and if the above doesnt work, https://gist.github.com/UltraBot05/06af64592d07e963a1f46e743bc53c29 my link will 100% work cuz i got badge xd

this one worked for me

@aamiaa
Copy link
Author

aamiaa commented May 24, 2024

Honestly guys, I tried this code and it didn't work several times. I keep getting "undefined" instead of the quest time. I found another GitHub page with another persons code and it worked for me. If you want to use it then here's the link: RussDev7/4744bd50dd65db27f9fd162e911fd936

But you know that's the exact same code? lol

True, but it's slightly different, since somehow that worked for me as well. You can take a look as to why that worked when this one didn't, especially for us folks. Then you can add that as an alternative code snippet/solution for those who face similar issues in the future

No it's literally 1:1 same code. If you look at revisions it's just a fork of this gist without any changes.

@sametaor
Copy link

Honestly guys, I tried this code and it didn't work several times. I keep getting "undefined" instead of the quest time. I found another GitHub page with another persons code and it worked for me. If you want to use it then here's the link: RussDev7/4744bd50dd65db27f9fd162e911fd936

But you know that's the exact same code? lol

True, but it's slightly different, since somehow that worked for me as well. You can take a look as to why that worked when this one didn't, especially for us folks. Then you can add that as an alternative code snippet/solution for those who face similar issues in the future

No it's literally 1:1 same code. If you look at revisions it's just a fork of this gist without any changes.

Ah I see it now. So if there's no issue, could you paste this as an alternative solution if current one doesn't work? As I said, might prove helpful in the future if people do the same blunders like accepting two quests at once or not being able to use this one in a proper way.

@aamiaa
Copy link
Author

aamiaa commented May 24, 2024

Honestly guys, I tried this code and it didn't work several times. I keep getting "undefined" instead of the quest time. I found another GitHub page with another persons code and it worked for me. If you want to use it then here's the link: RussDev7/4744bd50dd65db27f9fd162e911fd936

But you know that's the exact same code? lol

True, but it's slightly different, since somehow that worked for me as well. You can take a look as to why that worked when this one didn't, especially for us folks. Then you can add that as an alternative code snippet/solution for those who face similar issues in the future

No it's literally 1:1 same code. If you look at revisions it's just a fork of this gist without any changes.

Ah I see it now. So if there's no issue, could you paste this as an alternative solution if current one doesn't work? As I said, might prove helpful in the future if people do the same blunders like accepting two quests at once or not being able to use this one in a proper way.

There is no alternative solution, it's literally the same code 😭

@K33ko
Copy link

K33ko commented May 25, 2024

hey aamiaa the code does the code not work anymore? im pasting it in the console and i am seeing heartbeat messages but no progress, it also said "undefined" can you help? or is it patched

@aamiaa
Copy link
Author

aamiaa commented May 25, 2024

It should still work. The "undefined" doesn't matter.

@tismofied
Copy link

Thank you @aamiaa . Worked like a charm. gave star ⭐⭐⭐⭐⭐

@sametaor
Copy link

Honestly guys, I tried this code and it didn't work several times. I keep getting "undefined" instead of the quest time. I found another GitHub page with another persons code and it worked for me. If you want to use it then here's the link: RussDev7/4744bd50dd65db27f9fd162e911fd936

But you know that's the exact same code? lol

True, but it's slightly different, since somehow that worked for me as well. You can take a look as to why that worked when this one didn't, especially for us folks. Then you can add that as an alternative code snippet/solution for those who face similar issues in the future

No it's literally 1:1 same code. If you look at revisions it's just a fork of this gist without any changes.

Ah I see it now. So if there's no issue, could you paste this as an alternative solution if current one doesn't work? As I said, might prove helpful in the future if people do the same blunders like accepting two quests at once or not being able to use this one in a proper way.

There is no alternative solution, it's literally the same code 😭

My bad, really sorry for misunderstanding. And thanks a lot for the code, it did help me out on the other two quests after all!

@K33ko
Copy link

K33ko commented May 25, 2024

It should still work. The "undefined" doesn't matter.

oohh my bad i just realized something, my quest is not to stream any game, it says "play pubg battlegrounds for 15 minutes" just that. is there any other code or something to get me dont with this quest that requires me to play and not stream the game?

@courfazor
Copy link

courfazor commented May 25, 2024

It should still work. The "undefined" doesn't matter.

oohh my bad i just realized something, my quest is not to stream any game, it says "play pubg battlegrounds for 15 minutes" just that. is there any other code or something to get me dont with this quest that requires me to play and not stream the game?

You are actually on to something and we are all being idiots!

Maybe some people got the quest to stream the game and others to just play the game?
Here's what it says on the account where it doesn't work: "Play PUBG for 15 minutes"
Screenshot 2024-05-25 at 22 08 12

Also to all the 1:1 forks and people who said the fork worked out and not this exact same code: lol, I feel sorry for you @aamiaa
Beware of people changing it to malicious code later and people running that. I could see that happening... Better to not link anything external here. Remember the XZ backdoor had a ton of social engineering before they decided to act.

@courfazor
Copy link

courfazor commented May 25, 2024

This is how I got the PUBG quest: Rename any .exe file on Windows to TslGame.exe, run it and Discord will think you are playing PUBG and it will progress.

For example:

  1. Find any installer. For example anything in the Downloads folder. If you don't have any download for example 7Zip installer from 7-zip.org, or if you want to be funny use the Discord installer from discord.com
  2. Re-name the .exe installer to TslGame.exe
  3. Run it, you do not have to install anything just keep it running for 15 minutes

Play PUBG for 15 minutes Quest should unlock in 15 minutes.

@aamiaa
Copy link
Author

aamiaa commented May 25, 2024

You guys are right, I didn't notice the "play" vs "stream" variants.
From what I see, they introduced this on May 13th, and the script worked fine with that a day later, tho I wouldn't be surprised if this has broken since then.

For those who have the "play" variant, does the script work for you when you follow the instructions regardless?
If not, can you try the following and see if it works:

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let RunningGameStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getRunningGames).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let FluxDispatcher = Object.values(wpRequire.c).find(x => x?.exports?.default?.flushWaitQueue).exports.default;
let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports;

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let isApp = navigator.userAgent.includes("Electron/")
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else {
	api.HTTP.get({url: `/applications/public?application_ids=${quest.config.applicationId}`}).then(res => {
		const appData = res.body[0]
		const exeName = appData.executables.find(x => x.os === "win32").name.replace(">","")
		
		const pid = Math.floor(Math.random() * 30000) + 1000
		const games = RunningGameStore.getRunningGames()
		const fakeGame = {
			cmdLine: `C:\\Program Files\\${appData.name}\\${exeName}`,
			exeName,
			exePath: `c:/program files/${appData.name.toLowerCase()}/${exeName}`,
			hidden: false,
			isLauncher: false,
			id: quest.config.applicationId,
			name: appData.name,
			pid: pid,
			pidPath: [pid],
			processName: appData.name,
			start: Date.now(),
		}
		games.push(fakeGame)
		FluxDispatcher.dispatch({type: "RUNNING_GAMES_CHANGE", removed: [], added: [fakeGame], games: games})
		
		let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
		let fn = data => {
			let progress = data.userStatus.streamProgressSeconds
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) {
				console.log("Quest completed!")
				
				const idx = games.indexOf(fakeGame)
				if(idx > -1) {
					games.splice(idx, 1)
					FluxDispatcher.dispatch({type: "RUNNING_GAMES_CHANGE", removed: [fakeGame], added: [], games: []})
				}
				FluxDispatcher.unsubscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
			}
		}
		FluxDispatcher.subscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
		
		console.log(`Spoofed your game to ${quest.config.applicationName}. Wait for ${Math.ceil(quest.config.streamDurationRequirementMinutes - (quest.userStatus?.streamProgressSeconds ?? 0) / 60)} more minutes.`)
	})
}

@itskenili
Copy link

PUBG: U01743-KGZ0-2LLV-FLUW8
Honkai: YAKTR9J4FC4X

@K33ko
Copy link

K33ko commented May 26, 2024

just tried that new script and it worked, didn't need to be in a vc nor needed any other alt account. just pasted that in the console and waited 15 minutes thank you aamiaa! (how did we not notice the play quest before lmfao)

@aamiaa
Copy link
Author

aamiaa commented May 26, 2024

Okay awesome, thanks for testing it!
I will update the main gist tomorrow to make it automatically choose which version of the code to run.

@barraIhsan
Copy link

barraIhsan commented May 26, 2024

You guys are right, I didn't notice the "play" vs "stream" variants. From what I see, they introduced this on May 13th, and the script worked fine with that a day later, tho I wouldn't be surprised if this has broken since then.

For those who have the "play" variant, does the script work for you when you follow the instructions regardless? If not, can you try the following and see if it works:

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let RunningGameStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getRunningGames).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let FluxDispatcher = Object.values(wpRequire.c).find(x => x?.exports?.default?.flushWaitQueue).exports.default;
let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports;

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let isApp = navigator.userAgent.includes("Electron/")
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else {
	api.HTTP.get({url: `/applications/public?application_ids=${quest.config.applicationId}`}).then(res => {
		const appData = res.body[0]
		const exeName = appData.executables.find(x => x.os === "win32").name.replace(">","")
		
		const pid = Math.floor(Math.random() * 30000) + 1000
		const games = RunningGameStore.getRunningGames()
		const fakeGame = {
			cmdLine: `C:\\Program Files\\${appData.name}\\${exeName}`,
			exeName,
			exePath: `c:/program files/${appData.name.toLowerCase()}/${exeName}`,
			hidden: false,
			isLauncher: false,
			id: quest.config.applicationId,
			name: appData.name,
			pid: pid,
			pidPath: [pid],
			processName: appData.name,
			start: Date.now(),
		}
		games.push(fakeGame)
		FluxDispatcher.dispatch({type: "RUNNING_GAMES_CHANGE", removed: [], added: [fakeGame], games: games})
		
		let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
		let fn = data => {
			let progress = data.userStatus.streamProgressSeconds
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) {
				console.log("Quest completed!")
				
				const idx = games.indexOf(fakeGame)
				if(idx > -1) {
					games.splice(idx, 1)
					FluxDispatcher.dispatch({type: "RUNNING_GAMES_CHANGE", removed: [fakeGame], added: [], games: []})
				}
				FluxDispatcher.unsubscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
			}
		}
		FluxDispatcher.subscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
		
		console.log(`Spoofed your game to ${quest.config.applicationName}. Wait for ${Math.ceil(quest.config.streamDurationRequirementMinutes - (quest.userStatus?.streamProgressSeconds ?? 0) / 60)} more minutes.`)
	})
}

ohhhh... that's why the pubg didnt work (I was confused why it didn'r print out "Quest Progress"), it's PLAY not STREAM, thanks! it's working now

@sametaor
Copy link

sametaor commented May 26, 2024

You guys are right, I didn't notice the "play" vs "stream" variants. From what I see, they introduced this on May 13th, and the script worked fine with that a day later, tho I wouldn't be surprised if this has broken since then.

For those who have the "play" variant, does the script work for you when you follow the instructions regardless? If not, can you try the following and see if it works:

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let RunningGameStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getRunningGames).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let FluxDispatcher = Object.values(wpRequire.c).find(x => x?.exports?.default?.flushWaitQueue).exports.default;
let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports;

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let isApp = navigator.userAgent.includes("Electron/")
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else {
	api.HTTP.get({url: `/applications/public?application_ids=${quest.config.applicationId}`}).then(res => {
		const appData = res.body[0]
		const exeName = appData.executables.find(x => x.os === "win32").name.replace(">","")
		
		const pid = Math.floor(Math.random() * 30000) + 1000
		const games = RunningGameStore.getRunningGames()
		const fakeGame = {
			cmdLine: `C:\\Program Files\\${appData.name}\\${exeName}`,
			exeName,
			exePath: `c:/program files/${appData.name.toLowerCase()}/${exeName}`,
			hidden: false,
			isLauncher: false,
			id: quest.config.applicationId,
			name: appData.name,
			pid: pid,
			pidPath: [pid],
			processName: appData.name,
			start: Date.now(),
		}
		games.push(fakeGame)
		FluxDispatcher.dispatch({type: "RUNNING_GAMES_CHANGE", removed: [], added: [fakeGame], games: games})
		
		let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
		let fn = data => {
			let progress = data.userStatus.streamProgressSeconds
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) {
				console.log("Quest completed!")
				
				const idx = games.indexOf(fakeGame)
				if(idx > -1) {
					games.splice(idx, 1)
					FluxDispatcher.dispatch({type: "RUNNING_GAMES_CHANGE", removed: [fakeGame], added: [], games: []})
				}
				FluxDispatcher.unsubscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
			}
		}
		FluxDispatcher.subscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
		
		console.log(`Spoofed your game to ${quest.config.applicationName}. Wait for ${Math.ceil(quest.config.streamDurationRequirementMinutes - (quest.userStatus?.streamProgressSeconds ?? 0) / 60)} more minutes.`)
	})
}

Yep, it works!
PUBG: U01743-KILK-F3HI-FG5RQ

@barraIhsan
Copy link

PUBG: U01743-KKGB-BN2H-VUO2X

@kacygd
Copy link

kacygd commented May 26, 2024

PUBG U01743-KQYI-LDRY-1MRF7

@K33ko
Copy link

K33ko commented May 26, 2024

Okay awesome, thanks for testing it! I will update the main gist tomorrow to make it automatically choose which version of the code to run.

no problem! thanks for your work, dropped a follow.

@Rayyan2650
Copy link

it doesn't work in browser
image
is it patched now? (my quest was the pubg one play it for 15minutes)

@Azqupai
Copy link

Azqupai commented May 26, 2024

PUBG: U01743-KUQH-RNR9-XKQDV

@Rayyan2650
Copy link

it doesn't work in browser
image
is it patched now? (my quest was the pubg one play it for 15minutes)

@sametaor
Copy link

it doesn't work in browser image is it patched now? (my quest was the pubg one play it for 15minutes)

Browser won't work for this anyways, as the description says, you're better off using discord ptb or enabling the inspect mode in discord app on desktop

@K33ko
Copy link

K33ko commented May 26, 2024

it doesn't work in browser image is it patched now? (my quest was the pubg one play it for 15minutes)

it doesnt work in browser you have to do it in the discord app but to be able to open console in the discord app you have to enable that first in the settings.json file of discord (u can easily find a quick tutorial on that)

@BSNIKYT
Copy link

BSNIKYT commented May 26, 2024

I set the resolution, opened the console and pasted the code. But I don't receive 0/900 data in response. What's the matter?
image

@Tifanadputra
Copy link

Same problem, I just tried it and the quest process didn't increase the percent

I set the resolution, opened the console and pasted the code. But I don't receive 0/900 data in response. What's the matter? image
Same problem, I just tried it and the quest process didn't increase the percent

@Hacktiv8or
Copy link

Hacktiv8or commented May 28, 2024

I set the resolution, opened the console and pasted the code. But I don't receive 0/900 data in response. What's the matter? image

Same Problem with me too... it just gives this error
Screenshot 2024-05-28 095754

@Tanishq-rwt9
Copy link

same

@Aviviviviveee
Copy link

mmm, ive got the same problem as the people above me. the progress bar just doesnt move.

@quincynyan
Copy link

U01743-OJM4-AC41-KHI45
PUBG

@ZeLemun
Copy link

ZeLemun commented May 29, 2024

why i havent got anything? yesterday i had the pubg quest but now nothing? why?

@pinkjimrussiagirl
Copy link

i tried it and it just says i don't have any uncompleted quests

@ZeLemun
Copy link

ZeLemun commented Jun 4, 2024

fixed: i got a cod quest now

@cykorr
Copy link

cykorr commented Jun 4, 2024

image

@cykorr
Copy link

cykorr commented Jun 4, 2024

fixed it.
used https://gist.github.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb/revisions?diff=unified&short_path=8709983&w=#diff-870998314e8a8cebf534541d3429034df47ca9353604dafce9da342bc9f3ef46

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let FluxDispatcher = Object.values(wpRequire.c).find(x => x?.exports?.default?.flushWaitQueue).exports.default;

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let isApp = navigator.userAgent.includes("Electron/")
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else {
	let pid = Math.floor(Math.random() * 30000) + 1000
	ApplicationStreamingStore.getStreamerActiveStreamMetadata = () => ({
		id: quest.config.applicationId,
		pid,
		sourceName: null
	})
	
	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
	let fn = data => {
		let progress = data.userStatus.streamProgressSeconds
		console.log(`Quest progress: ${progress}/${secondsNeeded}`)
		
		if(progress >= secondsNeeded) {
			console.log("Quest completed!")
			FluxDispatcher.unsubscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
		}
	}
	FluxDispatcher.subscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
	
	console.log(`Spoofed your stream to ${quest.config.applicationName}. Stay in vc for ${Math.ceil(quest.config.streamDurationRequirementMinutes - (quest.userStatus?.streamProgressSeconds ?? 0) / 60)} more minutes.`)
	console.log("Remember that you need at least 1 other person to be in the vc!")
}

@Trollicus
Copy link

what does even the cod quest give?

@ZeLemun
Copy link

ZeLemun commented Jun 4, 2024

**
immagine
**
for me it gives this :(

@ZeLemun
Copy link

ZeLemun commented Jun 4, 2024

when i paste your code ^^^^

fixed it. used https://gist.github.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb/revisions?diff=unified&short_path=8709983&w=#diff-870998314e8a8cebf534541d3429034df47ca9353604dafce9da342bc9f3ef46

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let FluxDispatcher = Object.values(wpRequire.c).find(x => x?.exports?.default?.flushWaitQueue).exports.default;

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let isApp = navigator.userAgent.includes("Electron/")
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else {
	let pid = Math.floor(Math.random() * 30000) + 1000
	ApplicationStreamingStore.getStreamerActiveStreamMetadata = () => ({
		id: quest.config.applicationId,
		pid,
		sourceName: null
	})
	
	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
	let fn = data => {
		let progress = data.userStatus.streamProgressSeconds
		console.log(`Quest progress: ${progress}/${secondsNeeded}`)
		
		if(progress >= secondsNeeded) {
			console.log("Quest completed!")
			FluxDispatcher.unsubscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
		}
	}
	FluxDispatcher.subscribe("QUESTS_SEND_HEARTBEAT_SUCCESS", fn)
	
	console.log(`Spoofed your stream to ${quest.config.applicationName}. Stay in vc for ${Math.ceil(quest.config.streamDurationRequirementMinutes - (quest.userStatus?.streamProgressSeconds ?? 0) / 60)} more minutes.`)
	console.log("Remember that you need at least 1 other person to be in the vc!")
}

@EddieTristes
Copy link

EddieTristes commented Jun 4, 2024

@ZeLemun For me I pasted this one because I got both the TypeError, and your issue on the code Cykorr used

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports.HTTP;
let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let VoiceStateStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getCurrentClientVoiceChannelId).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let encodeStreamKey = Object.values(wpRequire.c).find(x => x?.exports?.encodeStreamKey).exports.encodeStreamKey;
let sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let streamData = ApplicationStreamingStore.getCurrentUserActiveStream()
let isApp = navigator.userAgent.includes("Electron/")
let isAloneInVC = streamData && Object.keys(VoiceStateStore.getVoiceStatesForChannel(streamData.channelId)).length === 1
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else if(!streamData) {
	console.log("You haven't started a stream!")
} else if(isAloneInVC) {
	console.log("You need to join the vc on 1 other account!")
} else {
	let streamId = encodeStreamKey(streamData)
	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
	let heartbeat = async function() {
		console.log("Completing quest", quest.config.messages.gameTitle, "-", quest.config.messages.questName)
		while(true) {
			let res = await api.post({url: `/quests/${quest.id}/heartbeat`, body: {stream_key: streamId}, headers: {"X-Discord-Resource-Optimization-Level": "1"}})
			let progress = res.body.stream_progress_seconds
			
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) break;
			await sleep(30 * 1000)
		}
		
		console.log("Quest completed!")
	}
	heartbeat()
}

Seems to be working!
Paste
Progress

(Sorry for the edits, was having trouble figuring out how to format a github comment, never done it before)

@ZeLemun
Copy link

ZeLemun commented Jun 4, 2024

thanks g it worked

@EddieTristes
Copy link

No problem!

@11tl
Copy link

11tl commented Jun 4, 2024

I'm getting an error that states:

Uncaught SyntaxError: Unexpected identifier 'pasting'
after type allow pasting any help?

@EddieTristes
Copy link

Reward code I got is 04X2-PCS1F-T697 if anyone wants it for Modern Warfare III

@Xpert10
Copy link

Xpert10 commented Jun 4, 2024

@EddieTristes appreciate u

@11tl
Copy link

11tl commented Jun 4, 2024

@EddieTristes Your script paste worked for me, thanks.

@Aholicknight
Copy link

@ZeLemun For me I pasted this one because I got both the TypeError, and your issue on the code Cykorr used

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports.HTTP;
let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let VoiceStateStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getCurrentClientVoiceChannelId).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let encodeStreamKey = Object.values(wpRequire.c).find(x => x?.exports?.encodeStreamKey).exports.encodeStreamKey;
let sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let streamData = ApplicationStreamingStore.getCurrentUserActiveStream()
let isApp = navigator.userAgent.includes("Electron/")
let isAloneInVC = streamData && Object.keys(VoiceStateStore.getVoiceStatesForChannel(streamData.channelId)).length === 1
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else if(!streamData) {
	console.log("You haven't started a stream!")
} else if(isAloneInVC) {
	console.log("You need to join the vc on 1 other account!")
} else {
	let streamId = encodeStreamKey(streamData)
	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
	let heartbeat = async function() {
		console.log("Completing quest", quest.config.messages.gameTitle, "-", quest.config.messages.questName)
		while(true) {
			let res = await api.post({url: `/quests/${quest.id}/heartbeat`, body: {stream_key: streamId}, headers: {"X-Discord-Resource-Optimization-Level": "1"}})
			let progress = res.body.stream_progress_seconds
			
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) break;
			await sleep(30 * 1000)
		}
		
		console.log("Quest completed!")
	}
	heartbeat()
}

Seems to be working! Paste Progress

(Sorry for the edits, was having trouble figuring out how to format a github comment, never done it before)

@EddieTristes I do not think this is working, yes I already activated the quest, but I get "undefined" printed to my console.
DiscordPTB_20240613_chQ4cjyGFX

@EddieTristes
Copy link

@Aholicknight Did you start streaming something before running it?

@AsP3X
Copy link

AsP3X commented Jun 4, 2024

Redeem your code at callofduty.com/redeem

Item included: Game Is Love - MCW 6.8 Marksman Rifle Weapon Blueprint

@AsP3X
Copy link

AsP3X commented Jun 4, 2024

07W2-YCF11-3EZ2

@IAmSomeoneLol
Copy link

image
There's a quest for streaming to a friend (MW3) and the code doesn't work, it gets stuck on either line 19 or 20 on "including(2))". Unable to do anything.

@FloBoBre
Copy link

FloBoBre commented Jun 4, 2024

@ZeLemun For me I pasted this one because I got both the TypeError, and your issue on the code Cykorr used

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports.HTTP;
let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let VoiceStateStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getCurrentClientVoiceChannelId).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let encodeStreamKey = Object.values(wpRequire.c).find(x => x?.exports?.encodeStreamKey).exports.encodeStreamKey;
let sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let streamData = ApplicationStreamingStore.getCurrentUserActiveStream()
let isApp = navigator.userAgent.includes("Electron/")
let isAloneInVC = streamData && Object.keys(VoiceStateStore.getVoiceStatesForChannel(streamData.channelId)).length === 1
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else if(!streamData) {
	console.log("You haven't started a stream!")
} else if(isAloneInVC) {
	console.log("You need to join the vc on 1 other account!")
} else {
	let streamId = encodeStreamKey(streamData)
	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
	let heartbeat = async function() {
		console.log("Completing quest", quest.config.messages.gameTitle, "-", quest.config.messages.questName)
		while(true) {
			let res = await api.post({url: `/quests/${quest.id}/heartbeat`, body: {stream_key: streamId}, headers: {"X-Discord-Resource-Optimization-Level": "1"}})
			let progress = res.body.stream_progress_seconds
			
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) break;
			await sleep(30 * 1000)
		}
		
		console.log("Quest completed!")
	}
	heartbeat()
}

Seems to be working! Paste Progress
(Sorry for the edits, was having trouble figuring out how to format a github comment, never done it before)

@EddieTristes I do not think this is working, yes I already activated the quest, but I get "undefined" printed to my console. DiscordPTB_20240613_chQ4cjyGFX

@IAmSomeoneLol
This version works, not flawless as it shows the progress as x/NAN, but it does in fact work to complete the quest. You just gotta wait 15 mins. You can track the progress in the gift inventory.

@clearnet
Copy link

clearnet commented Jun 4, 2024

I set the resolution, opened the console and pasted the code. But I don't receive 0/900 data in response. What's the matter? image

i got the same problem!!

@Kingtay241241241
Copy link

I got a discord quest for playing the game but the code doesnt work when i press enter. The game it wants my to play is CODW. HEres a picture of what it says when i press enter in the console
Uploading Screenshot 2024-06-04 162516.png…

@uShifty
Copy link

uShifty commented Jun 4, 2024

@IAmSomeoneLol This version works, not flawless as it shows the progress as x/NAN, but it does in fact work to complete the quest. You just gotta wait 15 mins. You can track the progress in the gift inventory.

In order to fix the 0/NAN you can use this revision which will fix the issue!

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports.HTTP;
let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let VoiceStateStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getCurrentClientVoiceChannelId).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let encodeStreamKey = Object.values(wpRequire.c).find(x => x?.exports?.encodeStreamKey).exports.encodeStreamKey;
let sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let streamData = ApplicationStreamingStore.getCurrentUserActiveStream()
let isApp = navigator.userAgent.includes("Electron/")
let isAloneInVC = streamData && Object.keys(VoiceStateStore.getVoiceStatesForChannel(streamData.channelId)).length === 1
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else if(!streamData) {
	console.log("You haven't started a stream!")
} else if(isAloneInVC) {
	console.log("You need to join the vc on 1 other account!")
} else {
	let streamId = encodeStreamKey(streamData)
	let secondsNeeded = quest.config.taskConfig.tasks.STREAM_ON_DESKTOP.target
	let heartbeat = async function() {
		console.log("Completing quest", quest.config.messages.gameTitle, "-", quest.config.messages.questName)
		while(true) {
			let res = await api.post({url: `/quests/${quest.id}/heartbeat`, body: {stream_key: streamId}, headers: {"X-Discord-Resource-Optimization-Level": "1"}})
			let progress = res.body.stream_progress_seconds
			
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) break;
			await sleep(30 * 1000)
		}
		
		console.log("Quest completed!")
	}
	heartbeat()
}

I changed the secondsNeeded variable to target quest.config.taskConfig.tasks.STREAM_ON_DESKTOP.target

@clearnet
Copy link

clearnet commented Jun 4, 2024

@ZeLemun For me I pasted this one because I got both the TypeError, and your issue on the code Cykorr used

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports.HTTP;
let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let VoiceStateStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getCurrentClientVoiceChannelId).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let encodeStreamKey = Object.values(wpRequire.c).find(x => x?.exports?.encodeStreamKey).exports.encodeStreamKey;
let sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let streamData = ApplicationStreamingStore.getCurrentUserActiveStream()
let isApp = navigator.userAgent.includes("Electron/")
let isAloneInVC = streamData && Object.keys(VoiceStateStore.getVoiceStatesForChannel(streamData.channelId)).length === 1
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else if(!streamData) {
	console.log("You haven't started a stream!")
} else if(isAloneInVC) {
	console.log("You need to join the vc on 1 other account!")
} else {
	let streamId = encodeStreamKey(streamData)
	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
	let heartbeat = async function() {
		console.log("Completing quest", quest.config.messages.gameTitle, "-", quest.config.messages.questName)
		while(true) {
			let res = await api.post({url: `/quests/${quest.id}/heartbeat`, body: {stream_key: streamId}, headers: {"X-Discord-Resource-Optimization-Level": "1"}})
			let progress = res.body.stream_progress_seconds
			
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) break;
			await sleep(30 * 1000)
		}
		
		console.log("Quest completed!")
	}
	heartbeat()
}

Seems to be working! Paste Progress

(Sorry for the edits, was having trouble figuring out how to format a github comment, never done it before)

it works, luv bro
0JZL-65QEC-CNZD (MODERN WARFARE III)

@aamiaa
Copy link
Author

aamiaa commented Jun 4, 2024

I've updated the gist with a fixed version.

@Blackberrii
Copy link

Blackberrii commented Jun 4, 2024

I've updated the gist with a fixed version.

It works perfectly fine with this update

@Blackberrii
Copy link

Modern Warfare 3 code: 0ZBW-CG8ME-LNCC

@Ex3o
Copy link

Ex3o commented Jun 4, 2024

What's the script for just playing the game?

@kashgram
Copy link

kashgram commented Jun 5, 2024

@ZeLemun For me I pasted this one because I got both the TypeError, and your issue on the code Cykorr used

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports.HTTP;
let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let VoiceStateStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getCurrentClientVoiceChannelId).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let encodeStreamKey = Object.values(wpRequire.c).find(x => x?.exports?.encodeStreamKey).exports.encodeStreamKey;
let sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let streamData = ApplicationStreamingStore.getCurrentUserActiveStream()
let isApp = navigator.userAgent.includes("Electron/")
let isAloneInVC = streamData && Object.keys(VoiceStateStore.getVoiceStatesForChannel(streamData.channelId)).length === 1
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else if(!streamData) {
	console.log("You haven't started a stream!")
} else if(isAloneInVC) {
	console.log("You need to join the vc on 1 other account!")
} else {
	let streamId = encodeStreamKey(streamData)
	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
	let heartbeat = async function() {
		console.log("Completing quest", quest.config.messages.gameTitle, "-", quest.config.messages.questName)
		while(true) {
			let res = await api.post({url: `/quests/${quest.id}/heartbeat`, body: {stream_key: streamId}, headers: {"X-Discord-Resource-Optimization-Level": "1"}})
			let progress = res.body.stream_progress_seconds
			
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) break;
			await sleep(30 * 1000)
		}
		
		console.log("Quest completed!")
	}
	heartbeat()
}

Seems to be working! Paste Progress

(Sorry for the edits, was having trouble figuring out how to format a github comment, never done it before)

It works but i had to make some changes... the NaN did not let my progrss bar load properly so in

	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60

I changed the

quest.config.streamDurationRequirementMinutes   * 60

to 15*60

image

@Koribraide
Copy link

@ZeLemun For me I pasted this one because I got both the TypeError, and your issue on the code Cykorr used

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports.HTTP;
let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let VoiceStateStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getCurrentClientVoiceChannelId).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let encodeStreamKey = Object.values(wpRequire.c).find(x => x?.exports?.encodeStreamKey).exports.encodeStreamKey;
let sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let streamData = ApplicationStreamingStore.getCurrentUserActiveStream()
let isApp = navigator.userAgent.includes("Electron/")
let isAloneInVC = streamData && Object.keys(VoiceStateStore.getVoiceStatesForChannel(streamData.channelId)).length === 1
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else if(!streamData) {
	console.log("You haven't started a stream!")
} else if(isAloneInVC) {
	console.log("You need to join the vc on 1 other account!")
} else {
	let streamId = encodeStreamKey(streamData)
	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
	let heartbeat = async function() {
		console.log("Completing quest", quest.config.messages.gameTitle, "-", quest.config.messages.questName)
		while(true) {
			let res = await api.post({url: `/quests/${quest.id}/heartbeat`, body: {stream_key: streamId}, headers: {"X-Discord-Resource-Optimization-Level": "1"}})
			let progress = res.body.stream_progress_seconds
			
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) break;
			await sleep(30 * 1000)
		}
		
		console.log("Quest completed!")
	}
	heartbeat()
}

Seems to be working! Paste Progress
(Sorry for the edits, was having trouble figuring out how to format a github comment, never done it before)

It works but i had to make some changes... the NaN did not let my progrss bar load properly so in

	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60

I changed the

quest.config.streamDurationRequirementMinutes   * 60

to 15*60

image

mine is not working its showing

VM390:2 Uncaught TypeError: Cannot read properties of undefined (reading 'push')
at :2:32

@StrawberryClover
Copy link

Have a CoD code: 31GY-1HLBV-TVB3

@UNIVERSA7VLAD
Copy link

Have a CoD code: 31GY-1HLBV-TVB3

THX I redeemed it

@eskeyv
Copy link

eskeyv commented Jun 5, 2024

Free Code :
COD = 32GE-VYC00-ZRFD
PUBG = U01743-620T-A73A-U4GEE
HSR = 6BJAR8DBRLSX

@Conkley
Copy link

Conkley commented Jun 5, 2024

COD 38PD-Y4CHF-2G0M

@Shoitakunn
Copy link

ah
what do i do

@aamiaa
Copy link
Author

aamiaa commented Jun 5, 2024

ah
what do i do

Use the desktop app

Also use the snippet at the top of the page, not the ones in the replies

@nixielectra
Copy link

not sure whats going on in the replies but @aamiaa's code works just fine with desktop app.
image
thank you as always :)

COD: 3H2S-K98YL-JKN5

@clearnet
Copy link

clearnet commented Jun 5, 2024

I've updated the gist with a fixed version.
thank you @aamiaa <3
aamia
COD: 3KNE-P4HVX-XLT0

@ShockerPlayzz
Copy link

hello sir the command is running after the quest is completeing pls someone help me stop this command it keeps on running

@ShockerPlayzz
Copy link

it never says quest completed , it just says 900/Na pls help to stop the comand

@ShockerPlayzz
Copy link

3P5G-52MK1-6R05 heres the code btw pls help stop the command plssssssss!!!!!!!

@Koribraide
Copy link

Koribraide commented Jun 5, 2024

HOW DO I GET A COD CODE

@rorixpatrick
Copy link

4F7V-WY27W-K068 Call off Duty blueprint

@UnknownKriodluk
Copy link

4F7V-WY27W-K068 Call off Duty blueprint

how to activate it?

@oBucket
Copy link

oBucket commented Jun 5, 2024

"This no longer works in browser!" Then how do I open the console in the desktop app?

@EddieTristes
Copy link

EddieTristes commented Jun 5, 2024 via email

@Koribraide
Copy link

Control Shift I, then go to console tab, and enable allow pasting

On Wed, Jun 5, 2024 at 4:35 PM blur @.> wrote: @.* commented on this gist. ------------------------------ "This no longer works in browser!" Then how do I open the console in the desktop app? — Reply to this email directly, view it on GitHub https://gist.github.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb#gistcomment-5079940 or unsubscribe https://github.com/notifications/unsubscribe-auth/AYC3GCOQKGWDFF7OSB4Z2YLZF6AD5BFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVEYTEOJXGM3DANBVU52HE2LHM5SXFJTDOJSWC5DF . You are receiving this email because you commented on the thread. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

FOR COD ? DO I HAVE TO PLAY THE GAME BEFORE I GET THE BADGE ?GUYS I NEED HELP

@Djeeemy
Copy link

Djeeemy commented Jun 5, 2024

it doesn't wrok dont waste ur time until they share a new trick for COD

@Koribraide
Copy link

it doesn't wrok dont waste ur time until they share a new trick for COD

where?

@Yuzis
Copy link

Yuzis commented Jun 5, 2024

It's working, Thanks mate
BTW it was COD quest

@aamiaa
Copy link
Author

aamiaa commented Jun 5, 2024

it doesn't wrok dont waste ur time until they share a new trick for COD

It works just fine

@Koribraide
Copy link

it doesn't wrok dont waste ur time until they share a new trick for COD

It works just fine

HOW

@xDizastaMusic
Copy link

Does anyone have spare gun blueprint code? For the discord cod quest

@vehf
Copy link

vehf commented Jun 6, 2024

this worked, thanks

@RevGemmy
Copy link

RevGemmy commented Jun 6, 2024

works!!! thank u sm @aamiaa
btw, i used a music bot named fredboat (esmbot probably works too)

@Koribraide
Copy link

works!!! thank u sm @aamiaa btw, i used a music bot named fredboat (esmbot probably works too)

how

@PRoGaMeR9012
Copy link

PRoGaMeR9012 commented Jun 6, 2024

how to activate discord console in mac os i cannot open the dev tool in my client pls help

@ISGzipps
Copy link

ISGzipps commented Jun 6, 2024

it dont work plus im to dumb to know what im doing :(

@ISGzipps
Copy link

ISGzipps commented Jun 6, 2024

somebody help or give me a code please :(

@ISGzipps
Copy link

ISGzipps commented Jun 6, 2024

@ZeLemun For me I pasted this one because I got both the TypeError, and your issue on the code Cykorr used

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports.HTTP;
let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let VoiceStateStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getCurrentClientVoiceChannelId).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let encodeStreamKey = Object.values(wpRequire.c).find(x => x?.exports?.encodeStreamKey).exports.encodeStreamKey;
let sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let streamData = ApplicationStreamingStore.getCurrentUserActiveStream()
let isApp = navigator.userAgent.includes("Electron/")
let isAloneInVC = streamData && Object.keys(VoiceStateStore.getVoiceStatesForChannel(streamData.channelId)).length === 1
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else if(!streamData) {
	console.log("You haven't started a stream!")
} else if(isAloneInVC) {
	console.log("You need to join the vc on 1 other account!")
} else {
	let streamId = encodeStreamKey(streamData)
	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
	let heartbeat = async function() {
		console.log("Completing quest", quest.config.messages.gameTitle, "-", quest.config.messages.questName)
		while(true) {
			let res = await api.post({url: `/quests/${quest.id}/heartbeat`, body: {stream_key: streamId}, headers: {"X-Discord-Resource-Optimization-Level": "1"}})
			let progress = res.body.stream_progress_seconds
			
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) break;
			await sleep(30 * 1000)
		}
		
		console.log("Quest completed!")
	}
	heartbeat()
}

Seems to be working! Paste Progress

(Sorry for the edits, was having trouble figuring out how to format a github comment, never done it before)

where do i paste the code im dumb lol

@sezvy
Copy link

sezvy commented Jun 6, 2024

Just created account to say thanks and here is a code for COD - 6H6N-DBNRX-C6EB

@Aiden390
Copy link

Aiden390 commented Jun 6, 2024

Just created account to say thanks and here is a code for COD - 6H6N-DBNRX-C6EB

already redeemed

@Koribraide
Copy link

Just created account to say thanks and here is a code for COD - 6H6N-DBNRX-C6EB

already redeemed

how

@Aiden390
Copy link

Aiden390 commented Jun 6, 2024

@ZeLemun For me I pasted this one because I got both the TypeError, and your issue on the code Cykorr used

let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let api = Object.values(wpRequire.c).find(x => x?.exports?.getAPIBaseURL).exports.HTTP;
let ApplicationStreamingStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getStreamerActiveStreamMetadata).exports.default;
let VoiceStateStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getCurrentClientVoiceChannelId).exports.default;
let QuestsStore = Object.values(wpRequire.c).find(x => x?.exports?.default?.getQuest).exports.default;
let encodeStreamKey = Object.values(wpRequire.c).find(x => x?.exports?.encodeStreamKey).exports.encodeStreamKey;
let sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

let quest = [...QuestsStore.quests.values()].find(x => x.userStatus?.enrolledAt && !x.userStatus?.completedAt && new Date(x.config.expiresAt).getTime() > Date.now())
let streamData = ApplicationStreamingStore.getCurrentUserActiveStream()
let isApp = navigator.userAgent.includes("Electron/")
let isAloneInVC = streamData && Object.keys(VoiceStateStore.getVoiceStatesForChannel(streamData.channelId)).length === 1
if(!isApp) {
	console.log("This no longer works in browser. Use the desktop app!")
} else if(!quest) {
	console.log("You don't have any uncompleted quests!")
} else if(!streamData) {
	console.log("You haven't started a stream!")
} else if(isAloneInVC) {
	console.log("You need to join the vc on 1 other account!")
} else {
	let streamId = encodeStreamKey(streamData)
	let secondsNeeded = quest.config.streamDurationRequirementMinutes * 60
	let heartbeat = async function() {
		console.log("Completing quest", quest.config.messages.gameTitle, "-", quest.config.messages.questName)
		while(true) {
			let res = await api.post({url: `/quests/${quest.id}/heartbeat`, body: {stream_key: streamId}, headers: {"X-Discord-Resource-Optimization-Level": "1"}})
			let progress = res.body.stream_progress_seconds
			
			console.log(`Quest progress: ${progress}/${secondsNeeded}`)
			
			if(progress >= secondsNeeded) break;
			await sleep(30 * 1000)
		}
		
		console.log("Quest completed!")
	}
	heartbeat()
}

Seems to be working! Paste Progress

(Sorry for the edits, was having trouble figuring out how to format a github comment, never done it before)

how did it work for you its not working for me

@PCdudeee
Copy link

PCdudeee commented Jun 6, 2024

i dont play any of these games but if anyone wants the codes here ya go:
PUBG OG back pack: U01743-40XG-9E7Z-CP2TM
call of duty mw3: 6M80-ERREW-0GRX

@PRoGaMeR9012
Copy link

how to activate discord console in mac os i cannot open the dev tool in my client pls help

@patriksaz
Copy link

call of duty : 6QEX-DJZM4-1R5Y

@Jojo24908
Copy link

Jojo24908 commented Jun 6, 2024

6VG1-DGNJZ-LP7R
Call of duty Modern warfare III code

@Sin-Shadow-Fox
Copy link

I'm using the last code posted and i get this

You need to join the vc on 1 other account!

@tedzify
Copy link

tedzify commented Jun 6, 2024

Call of Duty MW3 Item: Game Is Love - MCW 6.8 Marksman Rifle Weapon Blueprint

Code: 70Y4-SRZ3S-4WYC

@turkwr
Copy link

turkwr commented Jun 6, 2024

Call of Duty MW3
78L0-NYQN9-FYKH
390W-B5SFX-5VSJ
392X-4JVX3-SD3X
39Y2-GD0C7-ZK9F

@ISGzipps
Copy link

ISGzipps commented Jun 6, 2024

Call of Duty MW3 78L0-NYQN9-FYKH 390W-B5SFX-5VSJ 392X-4JVX3-SD3X 39Y2-GD0C7-ZK9F

omg thank you so much you are a real one<3

@bigmac2010
Copy link

just wanted to ask if this still works on browser?, bcz in desktop app it is kinda hard to get ctrl+shift+i as discord banned right click also

@bigmac2010
Copy link

btw can anyone give me free COD code if it is not used.

@AdityaLF
Copy link

AdityaLF commented Jun 7, 2024

btw can anyone give me free COD code if it is not used.

dm discord i give for free 05.07am

@Mahdi7X1
Copy link

Mahdi7X1 commented Jun 7, 2024

78L0-NYQN9-FYKH

How i can use this code?

@aix05
Copy link

aix05 commented Jun 7, 2024

call of duty:82M4-RMLD8-Y2K0

@bigmac2010
Copy link

btw can anyone give me free COD code if it is not used.

dm discord i give for free 05.07am
Discord id pls @AdityaLF

@UnknownUser010
Copy link

The original one worked for me on new COD MW3 Quest but i had i error in console and quest progress was not updating well but it worked

@waow11
Copy link

waow11 commented Jun 7, 2024

i cant open the console in app and if i do it in browser it says to use that app

@aaaasszz
Copy link

aaaasszz commented Jun 7, 2024

ITS SCAM! DONT

@oakleyplays
Copy link

ITS SCAM! DONT

no it isnt, ive used it

@x00Nightmerez
Copy link

Call of Duty MW3 78L0-NYQN9-FYKH 390W-B5SFX-5VSJ 392X-4JVX3-SD3X 39Y2-GD0C7-ZK9F

Doesn't work

@txmu1
Copy link

txmu1 commented Jun 7, 2024

thanks CoD
8K8L-BN9SL-K5YX

@Fabio3323-cmd
Copy link

The Quest Progress doesnt update anymore but it works :D

@alperenalppp
Copy link

i cant paste it i got error

@alperenalppp
Copy link

someboody give me not used code?

@Fabio3323-cmd
Copy link

someboody give me not used code?

@alperenalppp Which error

@ProjectpopCat
Copy link

8RLW-6X7YY-9KY8

@bigmac2010
Copy link

can i get a free code of COD if not used till now

@Whitebutters
Copy link

81N2-BFZBV-WZ04

Erm what the sigma

@bigmac2010
Copy link

81N2-BFZBV-WZ04

Erm what the sigma

it says invalid code entered

@bakaxiaofang
Copy link

Call of Duty MW3:9013-R5598-7SL98YJ0-CBYTS-W09L.

@bigmac2010
Copy link

has anyone completed this quest from browser or desktop app , and if u used desktop app pls give me a solution to open console tab in it i request everybody.

@DogeyTheArtistWolf
Copy link

COD MW3: 95G3-JV5WQ-DYNB

@ItzHollowzz
Copy link

i followed the steps perfectly and it keeps saying it doesnt work in browser do it in the desktop app... BUT I AM DOING IT IN THE DESKTOP APP???

@ItzHollowzz
Copy link

ItzHollowzz commented Jun 8, 2024

and yes i have another person in the voice call watching the stream and im pc idk what im doing wrong i see its working for everyone else.

@Fabio3323-cmd
Copy link

has anyone completed this quest from browser or desktop app , and if u used desktop app pls give me a solution to open console tab in it i request everybody.

@bigmac2010 Use Discord PTB

@egehn1414
Copy link

You don't have any uncompleted quests! ?

@egehn1414
Copy link

egehn1414 commented Jun 8, 2024

97MW-KQ3JN-1FP1 cod Game Is Love - MCW 6.8 Marksman Rifle Weapon Blueprint

@vernekotthonxdddd
Copy link

Thank you Amia!<3

@alperenalppp
Copy link

someboody give me not used code?

@alperenalppp Which error

paste error i cant paste

@Nights0n
Copy link

Nights0n commented Jun 8, 2024

I pasted the code into the console, opened a broadcast in an empty room and waited 15 minutes but the mission progress is still 0% can anyone explain how I can do this

@Alcheur
Copy link

Alcheur commented Jun 8, 2024

I pasted the code into the console, opened a broadcast in an empty room and waited 15 minutes but the mission progress is still 0% can anyone explain how I can do this

Got the same problem, they probably patched it minutes/an hour+ ago
EDIT: (tried changing one value in the code and worked, if you need help my dm's are open(same username))

@txmu1
Copy link

txmu1 commented Jun 8, 2024

I pasted the code into the console, opened a broadcast in an empty room and waited 15 minutes but the mission progress is still 0% can anyone explain how I can do this

I pasted the code into the console, opened a broadcast in an empty room and waited 15 minutes but the mission progress is still 0% can anyone explain how I can do this

Got the same problem, they probably patched it minutes/an hour+ ago

you need someone in vc, maybe bot or real person and progress will go

@Alcheur
Copy link

Alcheur commented Jun 8, 2024

I pasted the code into the console, opened a broadcast in an empty room and waited 15 minutes but the mission progress is still 0% can anyone explain how I can do this

I pasted the code into the console, opened a broadcast in an empty room and waited 15 minutes but the mission progress is still 0% can anyone explain how I can do this

Got the same problem, they probably patched it minutes/an hour+ ago

you need someone in vc, maybe bot or real person and progress will go

Oh I had an alt in it don't worry about that, I completely see what he meant by that cuz I litterally was issued the same probles (0/900 NAN)

@Nights0n
Copy link

Nights0n commented Jun 8, 2024

Kodu konsola yapıştırdım, boş bir odada yayın açtım ve 15 dakika bekledim ama görev ilerlemesi hala %0 bunu nasıl yapabileceğimi bilen var mı

Aynı sorunla karşılaştık, muhtemelen birkaç dakika/bir saat + önce yama yaptılar EDIT: (koddaki bir değeri değiştirmeyi denedim ve işe yaradı, yardıma ihtiyacınız olursa dm'lerim açık(aynı kullanıcı adı))

I tried it on discord ptb and it worked

@txmu1
Copy link

txmu1 commented Jun 8, 2024

Oh I had an alt in it don't worry about that, I completely see what he meant by that cuz I litterally was issued the same probles (0/900 NAN

you check progress in girt inventory? the console does not show progress, I saw this yesterday, but the progress in the gift inventory was growing

@qaisbigxx
Copy link

it doesnt show the commands can someone comment it and can i paste it?

@Alcheur
Copy link

Alcheur commented Jun 8, 2024

Oh I had an alt in it don't worry about that, I completely see what he meant by that cuz I litterally was issued the same probles (0/900 NAN

you check progress in girt inventory? the console does not show progress, I saw this yesterday, but the progress in the gift inventory was growing

Well from my end both didn't grew for more than 30 mins, when I decided to check the code and change one value it finally came

@caed0
Copy link

caed0 commented Jun 8, 2024

PUBG: U01743-DZB6-3R7S-M1B76
COD: 9BFR-G8X62-LESC

@Sin-Shadow-Fox
Copy link

Shout out to aamiaa and Alcheur for being absolute bosses.

Here's my Game Is Love - MCW 6.8 Marksman Rifle Weapon Blueprint code: 9CF5-V7024-TF4Y

P.S. If you cannot redeem the code, it's because someone else got to it before you. This is an open forum full of other people.

@6fq
Copy link

6fq commented Jun 8, 2024

Call of Duty MW3 : 9HG8-5W8F0-571F

@TheBrutalSkull
Copy link

PUBG : U01743-1C3Y-ZDY5-IENRN

@fadiajlil
Copy link

9CF5-V7024-TF4Y

It seem I'm the lucky one ,big Thanks to you.

@BarievArtem
Copy link

Call of Duty MW lll : B1Q8-PME1V-1KKH

@Drrawable
Copy link

Drrawable commented Jun 9, 2024

Call of Duty MW lll : B1Q8-PME1V-1KKH

I just redeemed this code. Thank you so much. You are a very generous person ^_^ @BarievArtem

@MarkLeague
Copy link

B4PJ-1S6T1-8106
i dont know that is this works but I dont need it

@MarkLeague
Copy link

gg! the method worked! big love man ❤️

@NikosLightbulb
Copy link

heres a code i got: B5VJ-LW63Q-M81W

@DarkBoy875
Copy link

code for MW3: B6L6-1NGR1-0GGN

@qaisbigxx
Copy link

can someone give me a cull of duty code

@qaisbigxx
Copy link

BarievArtem

can i have a cull of duty code please

@qaisbigxx
Copy link

please anyone

@qaisbigxx
Copy link

i want a code of cull of duty modern warfare III

@xannylover
Copy link

i want a code of cull of duty modern warfare III

B7MQ-QSQY2-ZVC1

for marksman rifle, you're welcome

@qaisbigxx
Copy link

it didnt worked

@xannylover
Copy link

it didnt worked

where did you claim it?

@qaisbigxx
Copy link

in the gift inventory

@xannylover
Copy link

in the gift inventory

you have to claim it at callofduty.com/redeem :)

@qaisbigxx
Copy link

in the gift inventory

you have to claim it at callofduty.com/redeem :)

it worked but what the code do

@qaisbigxx
Copy link

in the gift inventory

you have to claim it at callofduty.com/redeem :)

what does it do like am i gonna get the quest completed in discord or what?

@xannylover
Copy link

in the gift inventory

you have to claim it at callofduty.com/redeem :)

what does it do like am i gonna get the quest completed in discord or what?

you'll get the prize in the game...

@TheAustrianHausi
Copy link

When I press "Enter", it says "TypeError: Cannot read properties of undefined (reading 'push')"

@TheAustrianHausi
Copy link

It would be nice, if you could help me!

@CIuttch
Copy link

CIuttch commented Jun 9, 2024

BG8E-JSHS2-2Z6C MODERN WARFARE CODES!!!
BGBD-26S1M-8PR5

@playgamesgo
Copy link

MW3: BJSL-711ZP-Z297

@sneakyzakki
Copy link

It works although the progress thing shows as 0/900 although in gift inventory it shows 27% so it works

@ThatRoboticFish
Copy link

BTSW-Z59RF-X055

@JonarTonogbanua
Copy link

C2CN-FYJ6X-E027

@rafsanarnob
Copy link

Call of Duty MW lll - C34G-30FGE-R0DL

@rafsanarnob
Copy link

PUBG - U01743-AR7W-UIWS-2HPPV

@AKAKAN3
Copy link

AKAKAN3 commented Jun 10, 2024

Call of Duty MW lll : C3DR-MCMQY-4GCC

@soliken1
Copy link

C3L8-33ZTD-T6TG

@Omrikoo
Copy link

Omrikoo commented Jun 10, 2024

C6TZ-K8WHZ-QX3W
enjoy yall and thanks for this code <3

@Alcheur
Copy link

Alcheur commented Jun 10, 2024

C6TZ-K8WHZ-QX3W enjoy yall and thanks for this code <3

i mean how to get the quest badge. aamiaa removed the code. do u have it?

Hi ! it is here, look around the page for a "click to expand"

@aamiaa
Copy link
Author

aamiaa commented Jun 10, 2024

i mean how to get the quest badge. aamiaa removed the code. do u have it?

Reading comprehension challenge (impossible)

@iFz6s
Copy link

iFz6s commented Jun 11, 2024

here's the mw3 MCW 6.8 blueprint code if anyone wants:
CM5B-753FF-SW42
i dont play mw3 so i dont need that

@taet-official
Copy link

can anyone send me a code in my discord welopox3

@sametaor
Copy link

sametaor commented Jun 11, 2024

can anyone send me a code in my discord welopox3

You can have it here itself: CQ4V-2TFZP-7E73
also Aamiaa, I wanted to report that the code does not work on the aur (Arch Linux) version of discord-ptb when I tried to do it there, it was stuck at around 2%,, so please do take a look at it, just in case one wants to use it on a Linux version of the discord client.

@taet-official
Copy link

i mean how to get the quest badge. aamiaa removed the code. do u have it?

Reading comprehension challenge (impossible)

lmao

@barraIhsan
Copy link

CQEK-J4WBX-4G4H
mw3 code, if anyone need

@barraIhsan
Copy link

also Aamiaa, I wanted to report that the code does not work on the aur (Arch Linux) version

@sametaor According to the FAQ, it currently doesn't support linux.
I tried using vesktop, and it seems that it doesn't work for me?

@sametaor
Copy link

also Aamiaa, I wanted to report that the code does not work on the aur (Arch Linux) version

@sametaor According to the FAQ, it currently doesn't support linux. I tried using vesktop, and it seems that it doesn't work for me?

Ah, that explains, so dual boots or vms are the way for now if one mains Linux as a daily driver. Since I just got into Arch Linux, thought I might as well try doing it.

@Elilynz
Copy link

Elilynz commented Jun 11, 2024

MW3 : CQWQ-QRBCT-9CQ9

@RuriYoshinova
Copy link

MW3: CS6L-RJ07F-242Y

@Alcheur
Copy link

Alcheur commented Jun 11, 2024

i mean how to get the quest badge. aamiaa removed the code. do u have it?

Reading comprehension challenge (impossible)

Me: Never laughs
Still me: reads your answer and cries while laughing 💀

@aaa-jad
Copy link

aaa-jad commented Jun 11, 2024

MW3: CT4D-SV31L-JE1D

Game Is Love - MCW 6.8 Marksman Rifle Weapon Blueprint

COD

Thank you and God Bless

@scopy11
Copy link

scopy11 commented Jun 11, 2024

YALL GIVING EACHOTHER COD CODES

@Jetsooonie
Copy link

Here's my COD code: CXCM-RGXDQ-RYP8

Enjoy!

@macosfangamer
Copy link

WHO WANTS THIS BLUEPRINT ( I dont have COD nor I want to) NOTE: This is compatible with Call of Duty: Warzone III
Code: CXVY-1724D-B71E

@chickennuggetman69
Copy link

D2NM-LNNP2-RG7L

@moseybat
Copy link

MW III code: D7E5-X7KFV-DT8Q

@0strike
Copy link

0strike commented Jun 12, 2024

It Actually Work!!! Love You, Aamiaa

@Mayebear
Copy link

I don't need it:

D969-W3FT2-RJY9

and thanks to Aamiaa 🤘

@KIS0RI
Copy link

KIS0RI commented Jun 12, 2024

MW III code: DBM1-JTE8M-QCCD
thanks for free badge Aamiaa

@tyabus
Copy link

tyabus commented Jun 12, 2024

MW 3 Remastered Code: DCZ3-2MS52-GPLR

@MeowSummon
Copy link

MW3 code : DDCY-ESHPL-NVLK

Thank you Aamiaa

@a-turtle9302
Copy link

mw3 DE4L-FE2RW-HP4X

@atouu
Copy link

atouu commented Jun 12, 2024

MW3: DHP7-B4DE0-8XTT

@TrixiePon
Copy link

Your COD code: DKMN-9XDXW-QPYR

@mycoolkim
Copy link

COD Code! DNB4-FKYL3-8R90

@hex2d3
Copy link

hex2d3 commented Jun 13, 2024

hi can someone please lemme know where is the script?

@mycoolkim
Copy link

hi can someone please lemme know where is the script?

Click the little triangle with the words "Click to expand" in the description and it should expand!

@m4yc3x
Copy link

m4yc3x commented Jun 13, 2024

This plugin works exceptionally well. Thank you for sharing!

EDIT: Btw guys, those codes you are submitting are sniped by bots within seconds. Thanks for sharing tho

@hex2d3
Copy link

hex2d3 commented Jun 13, 2024

hi can someone please lemme know where is the script?

Click the little triangle with the words "Click to expand" in the description and it should expand!

oh tysm !

@Gerg0Vagyok
Copy link

If anyone wants my MW3 blueprint code: D T B D - M B S X G - E S G N (without spaces)

@7n9
Copy link

7n9 commented Jun 13, 2024

DTVL-KB4GP-HN8Y

@Trolleye-ux
Copy link

Anyone Mw3 blueprint code please?

@searinminecraft
Copy link

here since i dont need it

E4G0-8MWGJ-FQXQ

@Shroomisle
Copy link

If anybody needs the mw3 code: E4KB-WN276-7DP9

👍

@Leialoha
Copy link

Leialoha commented Jun 14, 2024

This was well made, I decided to create a version that auto redeems the quests.

[redacted] (sorry @aamiaa, didn't mean to cause confusion...)

@searinminecraft
Copy link

This was well made, I decided to create a version that auto redeems the quests.

You should post this as a separate gist for convenience :3

@NoTLcLc23
Copy link

where the script i no find ?

@iamclowdee
Copy link

The OP says it doesn't work on browsers anymore. Can someone confirm? Thanks.

@Alcheur
Copy link

Alcheur commented Jun 14, 2024

The OP says it doesn't work on browsers anymore. Can someone confirm? Thanks.

It does indeed not work on browser, you have to do it on the discord app, however for the alt account HE can be in browser discord

@Lminate
Copy link

Lminate commented Jun 14, 2024 via email

@NoTLcLc23
Copy link

The OP says it doesn't work on browsers anymore. Can someone confirm? Thanks.

i,no find it the link script what can help me find it?

@iamclowdee
Copy link

As of this moment (14 June, 2024), I know how to do it successfully.

You CANNOT do it: in a browser, without a friend on the VC (or more).

What you need to do is download DiscordPTB if you don't have it already (helps you with the whole Console opening thing), join a vc and simply share your screen AFTER you have copy pasted the code to the Console of your DisordPTB.

My MW3 code I received (unused): E7JV-EJ2QK-WXW2

Enjoy!

@iamclowdee
Copy link

I dont give a shit about these replies. Stpo spamming my inbox

On Mon, 10 Jun 2024, 19:10 Alcheur, @.> wrote: @.* commented on this gist. ------------------------------ C6TZ-K8WHZ-QX3W enjoy yall and thanks for this code <3 i mean how to get the quest badge. aamiaa removed the code. do u have it? Hi ! it is here, look around the page for a "click to expand" — Reply to this email directly, view it on GitHub https://gist.github.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb#gistcomment-5084441 or unsubscribe https://github.com/notifications/unsubscribe-auth/BGFEIXIVQ2MFFUUHGY3I3ILZGXMXHBFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVEYTEOJXGM3DANBVU52HE2LHM5SXFJTDOJSWC5DF . You are receiving this email because you commented on the thread. Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub .

Bitch, here's another spam for you

@aamiaa
Copy link
Author

aamiaa commented Jun 14, 2024

This was well made, I decided to create a version that auto redeems the quests.

@Leialoha That's not the best idea. The enroll endpoint may return a captcha. You're constructing the request manually, not handling the potential captcha in any way, not sending all headers, not updating X-Super-Properties, etc. which, aside of breaking the script, might also get people flagged by the anti spam.

For this reason, I've redacted the code from your reply to prevent people from running it, sorry.

@Valera887
Copy link

Unused code E7P1-V302M-SE64

@marky291
Copy link

E9V3-W4DFG-X915

@MetricsLite
Copy link

MetricsLite commented Jun 14, 2024

EB5V-TWPBH-LMFE
EBF9-NPSR1-SZ1Q

@d3v7
Copy link

d3v7 commented Jun 14, 2024

@aamiaa
Quest progress: 0/900 is not updating
this works

let progress = data.userStatus.progress.STREAM_ON_DESKTOP.value
let percent_completed = (progress / secondsNeeded) * 100
console.log(`Quest progress: ${progress}/${secondsNeeded}`)
console.log(`Quest progress: ${percent_completed.toFixed(2)}%`)

My unused code: ECP6-702H2-B157

@dharsoumyadip
Copy link

Much thanks for the badge aamiaa.

EFP8-TJ7G8-KWQX

@hussein33r
Copy link

hi is that work in mw3?

@gres-roman
Copy link

Не працює

@brunenberg
Copy link

I don't need this: ERRS-WBC9C-10J5

@Mertyyyyy
Copy link

Uncaught SyntaxError: Unexpected identifier 'olsun'

bu hatayı veriyor nasıl düzelebilirim

@m-faizananwar
Copy link

where is the script?

@d3v7
Copy link

d3v7 commented Jun 15, 2024

where is the script?

here
gist

@m-faizananwar
Copy link

As of this moment (14 June, 2024), I know how to do it successfully.

You CANNOT do it: in a browser, without a friend on the VC (or more).

What you need to do is download DiscordPTB if you don't have it already (helps you with the whole Console opening thing), join a vc and simply share your screen AFTER you have copy pasted the code to the Console of your DisordPTB.

My MW3 code I received (unused): E7JV-EJ2QK-WXW2

Enjoy!

can you tell me your discord username for dm?

@synnno
Copy link

synnno commented Jun 16, 2024

@aamiaa https://cdn.discordapp.com/attachments/1195061611711438848/1251815299658022912/message.txt?ex=666ff359&is=666ea1d9&hm=ef27b020597902e8ffa56c4157c5d8f05c3d78e5633eed0eb9839e966f9b5481&
an easier way to inject code into discord app is trough better discord plugins i made this one and it works perfectly just create quest.plugin.js in plugins folder

@NinjaRito
Copy link

code for MWIII: EYZ0-KLM3B-9FVT

@scopy11
Copy link

scopy11 commented Jun 16, 2024

Here's my COD code: CXCM-RGXDQ-RYP8

Enjoy!

THANK YOU SO MUCH OMG

@lvl-d
Copy link

lvl-d commented Jun 16, 2024

F9WR-3P9FQ-9N6M

@TheAustrianHausi
Copy link

And for what is the COD Code?

@mi0lt
Copy link

mi0lt commented Jun 16, 2024

it's not working 🥹

@miiplaza
Copy link

heres my unused code: FJJG-H5K45-7X1V

@TheAustrianHausi
Copy link

Code?

@luc122c
Copy link

luc122c commented Jun 17, 2024

FJJG-H5K45-7X1V

Redeemed this. Thank you @miiplaza <3

@mayu-z
Copy link

mayu-z commented Jun 17, 2024

i need a code as well

@sneazy-ibo
Copy link

Is there someone else getting this error?

image

@ZFHailey
Copy link

Is there someone else getting this error?

image

I have this issue too.

@BlackCatOnline
Copy link

some cod blueprint: FSPP-17CXG-228J

Script works perfectly, thanks!

@AxosFalox
Copy link

some cod blueprint: FSPP-17CXG-228J

Script works perfectly, thanks!

can you help me set it up?? its not working for me and i really need your help.

@ZFHailey
Copy link

It still gives me the error typeerror as above.. Is it just me?

@mayu-z
Copy link

mayu-z commented Jun 17, 2024

gimme a code

@AxosFalox
Copy link

gimme a code

how to even use a code?

@AxosFalox
Copy link

It still gives me the error typeerror as above.. Is it just me?

its me as well.

@AxosFalox
Copy link

Is there someone else getting this error?

image

can you let me know if you got it working please?? i got the same issue.

@aamiaa
Copy link
Author

aamiaa commented Jun 17, 2024

can you let me know if you got it working please?? i got the same issue.

You're on canary/ptb. Use stable.

@aamiaa
Copy link
Author

aamiaa commented Jun 17, 2024

Okay I just realized how dumb that sounds after I tell people to use ptb in the gist.
If you can't use stable then wait a bit. Discord pushed major code changes today and I don't want to update the gist until they reach stable.

@mayu-z
Copy link

mayu-z commented Jun 17, 2024

gimme a code

how to even use a code?

do you play mw3? if yes then go to callofduty.com/redeem and then paste that code with your uid and that's it you'll get the skin

@AxosFalox
Copy link

can you let me know if you got it working please?? i got the same issue.

You're on canary/ptb. Use stable.

can you let me know if you got it working please?? i got the same issue.

You're on canary/ptb. Use stable.

yea im on ptb, wait whats stable? Sorry im a bit slow but could you explain it to me, please??

@aamiaa
Copy link
Author

aamiaa commented Jun 17, 2024

yea im on ptb, wait whats stable? Sorry im a bit slow but could you explain it to me, please??

The normal version of discord. Not ptb, not canary.

@AxosFalox
Copy link

AxosFalox commented Jun 17, 2024

yea im on ptb, wait whats stable? Sorry im a bit slow but could you explain it to me, please??

The normal version of discord. Not ptb, not canary.

ah i see but the ctrl + shift + I doesnt work for me, so i just have to wait till you update the gist till they reach stable am i correct? Because the COD WIII event will end June 19 2024

@aamiaa
Copy link
Author

aamiaa commented Jun 17, 2024

Use this one for now, I think it should work:

[removed to avoid confusing people]

@AxosFalox
Copy link

AxosFalox commented Jun 17, 2024

Use this one for now, I think it should work:

[removed to avoid confusing people]

on stable or the other ones?

@ZFHailey
Copy link

ZFHailey commented Jun 17, 2024

Use this one for now, I think it should work:

Click to expand

This works on ptb just to confirm it

@AxosFalox
Copy link

Use this one for now, I think it should work:
Click to expand

This works on ptb just to confirm it

huh, it didnt work for me idk why, let me try re installing it

@AxosFalox
Copy link

image
no it still didnt work.

@AxosFalox
Copy link

Use this one for now, I think it should work:
Click to expand

This works on ptb just to confirm it

can you please help me with it?

@aamiaa
Copy link
Author

aamiaa commented Jun 17, 2024

Right i missed a spot
This one should work now:
[removed to avoid confusing people]

@AxosFalox
Copy link

AxosFalox commented Jun 17, 2024

Right i missed a spot This one should work now:

[removed to avoid confusing people]

OH THANK YOU SO MUCH IT WORKED FINALLY

@ZFHailey
Copy link

Heres a code for anyone : FTW1-H0DNF-1YZY

@aamiaa
Copy link
Author

aamiaa commented Jun 18, 2024

I've updated the main gist with a workaround that handles both stable and canary/ptb, so it should be fine to use that one for now
(more clutter in the code yay!)

@AxosFalox
Copy link

gimme a code

how to even use a code?

do you play mw3? if yes then go to callofduty.com/redeem and then paste that code with your uid and that's it you'll get the skin

here is the code if you want FV1W-EP5EM-0MZ3

@sneazy-ibo
Copy link

I've updated the main gist with a workaround that handles both stable and canary/ptb, so it should be fine to use that one for now (more clutter in the code yay!)

Your code works now but the logs are broken, it just returns an undefined error instead of logging the time. Still thx for the update :)

@terrariapro147
Copy link

FW5Z-QZ25L-18CG, cod code

@TomerGamerTV
Copy link

TomerGamerTV commented Jun 18, 2024

Right i missed a spot This one should work now:

[removed to avoid confusing people]

Got this error
image

@aamiaa
Copy link
Author

aamiaa commented Jun 18, 2024

Run the script in the main gist, not random edits I post for specific people...

@aamiaa
Copy link
Author

aamiaa commented Jun 18, 2024

Your code works now but the logs are broken, it just returns an undefined error instead of logging the time. Still thx for the update :)

Should be fixed now

@Phantom-Noir
Copy link

Screenshot 2024-06-17 202550
Still receiving Type error

@GoopGhostt
Copy link

Screenshot 2024-06-17 202550 Still receiving Type error

I'm getting this as well

@ayaojee
Copy link

ayaojee commented Jun 18, 2024

Screenshot 2024-06-18 084639
how can i fix this please

@sirius-sama
Copy link

Thanks, it worked. Guys follow the instructions properly and it'll work fs.
image

@ayaojee
Copy link

ayaojee commented Jun 18, 2024

@sirius-sama
pls dm me in discord and tell me what i do
my name is : ayaojee

@sirius-sama
Copy link

@sirius-sama pls dm me in discord and tell me what i do my name is : ayaojee

check

@txmu1
Copy link

txmu1 commented Jun 18, 2024

Your code works now but the logs are broken, it just returns an undefined error instead of logging the time. Still thx for the update :)

Should be fixed now

image how can i fix this ?

discord ptb

@Jxnasus
Copy link

Jxnasus commented Jun 18, 2024

Another CoD Code: G1S8-J9633-BPBC
for someone to use, I am not playing that game

@MisterGambler
Copy link

Guys it doesnt work can someone send me the full code maybe i copied it wrong

@Trolleye-ux
Copy link

Guys,i didnt wanted to lie,but none of the codes work....But i think its not suprising after all wtf

@devii123i
Copy link

Im putting the script in and it is doing nothing?? someone help please
image

@devii123i
Copy link

nevermind it is working

@Trolleye-ux
Copy link

where did the script go?

@d3v7
Copy link

d3v7 commented Jun 18, 2024

where did the script go?
Click to expand
IMG_2034

@Suspectxyzz
Copy link

G5E1-N2N40-ZVQD

@epiwww
Copy link

epiwww commented Jun 18, 2024

hi ! dont work for me :(
image_2024-06-18_203013642

@Smilqo
Copy link

Smilqo commented Jun 20, 2024

image
how to fix

@aamiaa
Copy link
Author

aamiaa commented Jun 20, 2024

image
how to fix

Use the desktop app

@quincynyan
Copy link

image

@AnonymousUserInthisGithub

call of duty: 10B9-QZ5BG-1XJK

@Radiant-F
Copy link

can you guys shut the fuck up

@GuidingLight20
Copy link

the new code doesnt work :(

@sambecause
Copy link

I've updated the main gist with a workaround that handles both stable and canary/ptb, so it should be fine to use that one for now (more clutter in the code yay!)

I don't see ny quest in my gift inventory

@mi0lt
Copy link

mi0lt commented Jun 21, 2024

can someone send me a code i try this for like 13 times and it didn't work for me 🥲 if anyone have a code can you please give it to me my discord is xi0lt

@Sub-Archeo
Copy link

how about for minecraft?

@Xoncia
Copy link

Xoncia commented Jun 21, 2024

The script works perfectly fine, I'm not sure what everyone here is complaining about.
PS; on a side note @aamiaa (your bio is 120% relatable)

@Trolleye-ux
Copy link

Trolleye-ux commented Jun 21, 2024

or can someone send me a code?

name : wareye_yt

@rorixpatrick
Copy link

Minecraft Trial Mask : 2MY3J-3XHG7-YK4X9-2MKDM-3V3JZ

@Trolleye-ux
Copy link

not vaild xddddddd

@Trolleye-ux
Copy link

Trolleye-ux commented Jun 21, 2024

if anyone has a vaild code,text me on dc

@Konaimav2
Copy link

LETSGOOO MINECRAFT TIME

@truelockmc
Copy link

Screenshot 2024-06-18 084639 how can i fix this please

Use the desktop app, or just watch this tutorial by ntts https://www.youtube.com/watch?v=MV33-XB0gss

@clearnet
Copy link

MINECRAFT CODE: 23Y96-FVFPP-WY76V-PW62R-X7DPZ

@truelockmc
Copy link

Call of Duty Blueprint Code:
ER9R-DSLGC-JREC
I dont play it so you can have it :)

@NakkOfLegend
Copy link

MC:
2YPG6-MQCYQ-39D43-3MM3P-FX7DZ

@NakkOfLegend
Copy link

CALL OF DUTY
FWWV-8M7QN-481E

@bigmac2010
Copy link

bigmac2010 commented Jun 21, 2024

ngl this actually works ! maybe some can't figure it out so i'm here to help u , so the 1st thing is this doesnt work on browser so go through the discord desktop application and install the ptb client version to use the console tab using ctrl+shift+i and make sure someone is with u in vc there is no special thing u need a friend it could be a bot also like i did with lofi-radio and if u cant paste the command by aamia then type allow pasting to enter the command and wait for atleast 15 - 20 mins and u r done. And lastly don't be a badge goblin just to show off ur badges to ur friends cuz u r risking ur whole computer just for a simple reward and a fricking badge.

@InfoBlock
Copy link

if anyone has a vaild code,text me on dc

Bro... just do this trick yourself and you get a code!

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