Skip to content

discord bot that tries discord nitro gift codes if exists.

License

Notifications You must be signed in to change notification settings

ntrobotdeveloper/discord-nitro-generator-3

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Discord Nitro Generator.

Discord Bot that tries Discord Nitro gift codes if exists.

[!] However it is very very very low (impossible) chance to get a working Nitro gift due to randomized 24 digit code.

  • Discord Nitro = 24 Chars (1.0408797e+43 possibility)

  • Discord Nitro Classic = 16 Chars (4.7672402e+28 possibility)

Mathematically impossible if you consider gifts are claimed by real recipient in hours. :c

People selling Discord Nitro for low price is probably with stolen credit card or stolen Discord Accounts with saved PayPal account.

    giftCode = function () {
		    let code = "";
		    let letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
	for (var i = 0; i < 24; i++) {
		code = code + letters.charAt(Math.floor(Math.random() * letters.length));
    	}
	return code;
    }

Website

how to use

  • install node.js
  • invite bot to your discord server
  • enter your bot's login information, enter a channel's id.
  • put your proxy list to "proxies.txt"
  • run app.js with node

About

discord bot that tries discord nitro gift codes if exists.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%