0% found this document useful (0 votes)
41 views10 pages

Message

Uploaded by

wildgaming873
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views10 pages

Message

Uploaded by

wildgaming873
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 10

Giveaway Bot Created By: @Zan Michelle Lipovsek 🎄

https://cdn.discordapp.com/attachments/798230494898290709/798570297158271066/
giveaway-zip_1.zip

Ez Backup Bot [Backups Up Messages Too !]


https://cdn.discordapp.com/attachments/798230494898290709/798570577215619092/Ez-
backup.rar

Nuke Commmand - Like Better Anti Spam


https://cdn.discordapp.com/attachments/798230494898290709/798570928610213918/
Nuke_Command.txt

Snipe Command - Like Pepe Bot


https://cdn.discordapp.com/attachments/798230494898290709/798571247876571146/
Snipe_Command.txt

Put This In Main File To Use Snipe Command.


https://cdn.discordapp.com/attachments/798230494898290709/798571430668664832/
Snipe_-_Main_File.txt

XP Bot - Level System :heart:


https://cdn.discordapp.com/attachments/798230494898290709/798571668683358249/
xp_core.rar

Createcode Command - Premium System


https://cdn.discordapp.com/attachments/798230494898290709/798572044605587486/
Create_Premium_Code.txt

Redeem Command - Premium System


https://cdn.discordapp.com/attachments/798230494898290709/798572461666992178/
Redeem_Command.txt

Search Game On Playstore !


https://cdn.discordapp.com/attachments/798230494898290709/798574623880380477/
Playstore_-_Command.txt

Old Discord Bot Credits @ChillRage


https://github.com/ChillPlayz/earthflash
Credits to legendary emoji for some commands and ctk

Comment Bot Credits: @Legendary Emoji


https://cdn.discordapp.com/attachments/798230494898290709/798575416746442782/
Comment_Bot_-_Place_This_In_Main_File.txt
(Not Working Anymore, Because Of New Update.
I Will Post Updated One)

Ticket-Tool Bot - Credits: @! Darkboy🍭


https://cdn.discordapp.com/attachments/798230494898290709/798575546816397322/
ticket-tool.rar

Message Counter Credits: @! Darkboy🍭


https://cdn.discordapp.com/attachments/798230494898290709/798575910994313216/
Message_Counter.txt

When Bot Is Added It Says Message - Add In Main File


https://cdn.discordapp.com/attachments/798230494898290709/798576195985604619/
Thanks_For_Adding_Me_-_Bot_Message.txt

Thanks Command Credits: @! Darkboy🍭


https://cdn.discordapp.com/attachments/798230494898290709/798576337287249981/
message_2.txt

My Thanks With Level System Credits: @! Darkboy🍭


https://cdn.discordapp.com/attachments/798230494898290709/798577576296579102/
My_Thanks_With_Levels.txt

Counter Bot Credits: @! Darkboy🍭


https://glitch.com/~dark-codes-counter-bot

Advanced Bot Status - Credits: @! Darkboy🍭


https://cdn.discordapp.com/attachments/798230494898290709/798578113168146492/
message_4.txt

#command
#command list [shows disabled channels]
#command disable [channel] [ to block bots from sending any message on that
channel]
#command undisable [channel] [to undisable blocked bots channel]
Code: https://pastebin.com/TxcpnhrX
Password; DarkCodes
Credits: @! Darkboy🍭

Level System - Credits: Koolizawa


https://github.com/Koolwiza/Leveling-System

He was a dark codes developer sadly i dont know his username so i cant contact him.
Hello Guys,
I Am Lord And Today I Will Be Showing You How To Setup A Discord Bot Dashboard.

- Notes :-
You Will Need NodeJS Installed - https://nodejs.org/en/
You Will Need A Code Editor | Proffered(Visual Studio, Sublime Text 3)
VS Code : https://code.visualstudio.com/
Sublime : https://www.sublimetext.com/

- I Will Use VS Code

===================================================================================
=============================

- First Step
Create A File server.js (You Can Name The File Whatever | Must End In .js )

- Second Step
Now Let's Import Our Packages :

```fix
const {
Discord,
Client,
MessageEmbed
} = require('discord.js'); //Importing discord.js (You Can Use Any Other Discord
API Handler)
const express = require('express'); //Importing express (Web Application Framework)
const passport = require('passport'); //Importing passport (Our Login Handler)
const session = require('express-session'); //Importing express-session (This
Package Will Handle Our Web Session)
const Strategy = require('passport-discord').Strategy; //Importing passport-discord
(This Will Help Us Handle The Discord Login)
const bodyParser = require('body-parser');
const url = require('url');
```

- Second Step
Now Let's Install Our Package's : https://prnt.sc/vkttjo
npm install discord.js express express-session passport-discord body-parser url --
save

- Third Step
Let's Now Write Code RZ91

First Insert This In Your server.js : https://hasteb.in/iyiludap.js


- Fourth Step
Now We Insert Login And Logout Code

Insert This In server.js : https://hasteb.in/kuqafofa.js (edited)


- Sixth Step
Let's Make A JS Code That Will Render The Page
app.get('/', (req,res) => {
const user = req.isAuthenticated() ? req.user : null;
res.render("index", {
user:user,
client: client,
})

})

This Will Attach The User Variable In HTML

- Sixth Step
Lets Insert Pages RZ97

First Create A Folder Called views


Then Make A File Named index.ejs Inside views

So EJS Is Our HTML Engine So You Can Style Your Website And Everything

- Notes

```
<%= variable%>
<% to use js in ejs %>
```

For Each Line You Use JS You Have To End It With %>

So Lets Make A Simple EJS Code


```fix
<html>
<body>
<% if(user) {%>
<center><h2>Hello <%=user.username%></h2></center>
<% } else { %>
<center><a href="/auth">Press Here To Login</a></center>
<% } %>
</body>
</html>
```

This Means If User Is Logged in It Display A Welcome Message


Credits: Mentux Lucifer | Old Dark Codes Developer

Bot Server Information Credits: @Legendary Emoji


https://cdn.discordapp.com/attachments/798230494898290709/798583130851770408/
Bot_Server_Info_-_Command.txt

Auto Partner Bot Credits: @! Darkboy🍭


https://cdn.discordapp.com/attachments/798230494898290709/798583253714862080/test-
work.rar

Emojis Command - Credits: @Legendary Emoji

https://cdn.discordapp.com/attachments/798230494898290709/798583476190183453/
Emojis_-_Command.txt

Basic Invite Manager


https://cdn.discordapp.com/attachments/798230494898290709/798583641156485141/
Basic_Client.on_Invite_Manager.txt

Verification System Credits: @Legendary Emoji


https://cdn.discordapp.com/attachments/798230494898290709/798583963857453116/
Verification_System.txt

Premium With Timer Credits: @! Darkboy🍭


https://cdn.discordapp.com/attachments/798230494898290709/798584154971045968/
message_5.txt

Must add this to main file or command above wont work


https://cdn.discordapp.com/attachments/798230494898290709/798584274050744330/
Premium_main_file.txt

How to make rank card command like mee6 ? By: @Lebyy_Dev


https://github.com/Lebyy/Codes/tree/master/rankcardtutorial

TUT HOT TO USE CANVACORD METHODS

BASIC CODE RIP :


const canvacord = require("canvacord"); // npm i canvacord
const { MessageAttachment } = require("discord.js");

```fix
module.exports = {
let CanvasType = "rip" //
https://canvacord.js.org/#/docs/main/v5/class/Canvacord
let filename = "img.png" // You Can Use GIF :smile:
let user = message.mentions.users.first() || client.users.cache.get(args[0]) ||
message.author;
let CavnasImg = await canvacord.Canvas[CanvasType]
(user.displayAvatarURL({ format: "png", dynamic: false }));
let attachment = new MessageAttachment(CavnasImg, filename);
return message.channel.send(attachment);
};
```

How To Change Rip Command To Another Canvacord Methood

1- Go To CanvaCord Docs :
https://canvacord.js.org/#/docs/main/v5/class/Canvacord
2- Choose Method
3- Change CanvasType To The Method In The Basic Code
EX:
let CanvasType = "trigger"

How To Change Attachment Format

Just Change File Name Like This [image-name].[image-format]


EX:
let filename = "darkcodes.gif"

CanvaCord: https://canvacord.js.org/
NPM: https://www.npmjs.com/package/canvacord

Tutorial By: @AzizJaber.


(edited)
Canvacord
Powerful image manipulation tool to manipulate images easily.

[All Codes From Our Old Server | We Will Be Posting New Ones ! From Now On]
[The OP Invite Manager Will Be Posted When Darks Online !] BRAND NEW !

```fix
const { MessageEmbed } = require("discord.js");
module.exports = {
name: "review",
category: "bot",
description: "Give us your opinion on the bot!",
aliases: [],
usage: "",
run: (client, message, args) => {
const review = args.join(" ");

if (!review) return message.channel.send("Please provide a review");

const embed = new MessageEmbed()


.setColor("BLUE")
.setTitle(`${message.author.username} Has given a review`)
.setDescription(review)
.setFooter(message.author.username)
.setTimestamp();

client.channels.cache.get('REVIEW CHANNEL ID').send(embed);


message.channel.send("Thanks for your review <3");
},
};
```

https://pastebin.com/4auYgxnQ
emoji info boy
mobile people:
https://pastebin.com/4auYgxnQ

@✪ Premium Codes enjoy, custom made includes op features


UR NOT ALLOWED TO SELL IT!
https://cdn.discordapp.com/attachments/798230494898290709/798602327124738098/
trashmanage_-_Copy.rar

```fix
const { MessageEmbed } = require('discord.js');
module.exports = {
name: "hack",
category: "extra",
description: "Hack a person",
run: async (client, message, args) => {
let target = message.mentions.members.first();

if(!target) {
return message.channel.send(`**${message.author.username}**, Please mention
the person who you want to hack -.-`)
}

if(target.id === message.author.id) {


return message.channel.send(`**${message.author.username}**, You can not hack
yourself >;c`)
}
const msg = await message.channel.send(`Hacking is almost done.`);
const age = Math.floor(Math.random() * 100) + 1;
const Embed = new MessageEmbed()
.setTitle("User hacked")
.setDescription(
`${target} has been hacked by @${message.author.tag}\n **Information**\n
Age: ${age}\n bot: **Yes** `
)
.setFooter(`Id: ${target.id}`)
.setColor('#fb644c');
msg.edit(Embed);
msg.edit("\u200b");
}
};
```

my crappy hack command :Bruh:

If you use repl.it (24/7 uptime)


create a server.js
paste this in:

```fix
const express = require('express')
const app = express()

app.get('/', (req, res) => res.send('Bot is on'));

module.exports = () => {
app.listen(3000);
}
```
Go back to your main file ex: index.js
and paste this in

```fix
const app = require ('express')
require('./server')();
```
Then go to https://uptimerobot.com/ and make a account
then create a monitor (make sure its http)
paste your website url
and then create monitor

```fix
const express = require('express')
const app = express()

app.get('/', (req, res) => res.send('Bot is on'));

module.exports = () => {
app.listen(3000);
}
```
BDFD Bot, with 42 commands, early for boosters, :wink:
https://cdn.discordapp.com/attachments/798230494898290709/798609592036622386/
BDFDBot.zip
Pass:- darkstudiov2op

Welcome To Channel

```fix
const moment = require("moment");
client.on("guildMemberAdd", member => {
let channel = member.guild.channels.cache.find("name", "WELCOME CHANNEL NAME");
if (!channel) return;
moment.locale("en-UK");
var m = member.user;
let embed = new Discord.MessageEmbed()
.setColor("RANDOM")
.setThumbnail("https://i.imgur.com/p2ip6l4.gif")
.addField("🏅 | Dark Studio", `**Welcome to the server** **__${member}__**
**Please follow the discord tos**`
)
.addField(
"👥 | Number:",
`** You are number** **__${member.guild.memberCount}__**`,
true
)
.addField(
"⏰ | Created Date:",
`**${moment(member.user.createdAt).format("D/M/YYYY h:mm a")}**`,
true
)
.addField(
"👛 | Account Info:",
`**${moment(member.user.createdAt).fromNow()}**`,
true
)
.setFooter(`${member.guild.name}`)
.setTimestamp();
channel.send(embed);
});
```

https://cdn.discordapp.com/attachments/798230494898290709/798690154743070741/
unknown.png
Can't Post Modlog Dude PP Reveal So Here Some Advanced Commands
Channel

Note: DM Me For Any Problem Or Bug.

Link - https://hatebin.com/rtpplakrqh
Anime

Note: DM Me For Any Problem Or Bug.

Link - https://hatebin.com/mzslqqqfgq
Creator - Me
Anime Screenshots:
https://cdn.discordapp.com/attachments/798230494898290709/798690154743070741/
unknown.png
https://cdn.discordapp.com/attachments/798230494898290709/798690263445798932/
unknown.png
Channel Screenshots:
https://cdn.discordapp.com/attachments/798230494898290709/798690416601333770/
unknown.png
https://cdn.discordapp.com/attachments/798230494898290709/798690516081704980/
unknown.png

```fix
const Discord = require("discord.js")
const { client } = require("../index.js")
module.exports.run = ( member) => {
const logChannel = member.guild.channels.cache.find(c => c.name === "THE
CHANNEL NAME");
let roles = member.roles.cache.map(r => `<@&${r.id}>`).join(', ').replace(new
RegExp(``, 'g'), '');
if (roles.length === 0) roles = 'none';
if(logChannel) {
logChannel.send(new Discord.MessageEmbed()
.setAuthor(`Member Left....`, member.user.displayAvatarURL({ dynamic:
true }))
.setThumbnail(member.user.displayAvatarURL({ dynamic: true }))
.setDescription(`:broken_heart: <@!${member.user.id}> $
{member.user.tag}\n **Roles:** ${roles}\n we are now 1 member less :c`)
.setFooter(`ID: ${member.user.id}`)
.setTimestamp()
)
}
}
```
Also
Make a category in your files called "events"
make a channel called "guildMemberRemove.js"
the bot is very buggy
but it still works
https://cdn.discordapp.com/attachments/798230494898290709/798967232377913354/
Reaction-Role-1_1.zip

Server info command (early access)


https://srcb.in/mwY5saFRSx

Status = role code [EARLY ACCESS]


Note: I coded this in the chat so if u find errors feel free to dm me

```fix
client.on("presenceUpdate", async (oldPresence, newPresence) => {
let config = {
serverID: "Ur Server ID",
roleID: "The ID of the role that they will receive",
text: "The text to put on the status",
log: "The ID of the Channel it will send message if they have status and they got
the role"
}
//The text is case sensitive
if (newPresence.member.guild.id !== config.serverID) {
return
}
if (!newPresence.member.presence.activities[0]) {
return newPresence.member.roles.remove(config.roleID)
}
let newStatus = newPresence.member.presence.activities[0].state
let oldStatus = oldPresence.member.presence.activities[0].state
if (newPresence.user.bot ||
newPresence.member.presence.status === 'offline') {
return
}

if (newPresence.member.presence.activities[0].type !== 'CUSTOM_STATUS') {


return
}

if (newStatus !== config.text) {


return newPresence.member.roles.remove(config.roleID)
}

if (newStatus === config.text) {


newPresence.member.roles.add(config.roleID).then(() => {
const channel = client.channels.cache.get(config.log)
channel.send(`${newPresence.member.user.tag} Has Received The Role!`)
})
.catch(e=> console.log(e))

}
})
```
You need to have the PRESENCE_INTENT for this ^
More refined version.
Source Code for the Status Role Bot : https://dross.cf/status-role-bot-sujal-goel

```fix
const RPC = require('discord-rpc')
const client = new RPC.Client({ transport: 'ipc' })
client.on('ready', () => {
client.request('SET_ACTIVITY', {
pid: process.pid,
activity: {
assets: {
large_image: 'ur_large_image'
},
details: 'ur_detials',
buttons: [
{ label: 'Button 1', url: 'Any link' },
{ label: 'Button 2', url: 'Any link' }
]
}
})
console.log('Started!')
})
client.login({clientId: 'ur client id'}) // The name of the client id, will show as
Playing <the name here>
```
`Make sure to do npm i discord-rpc in terminal!`
https://cdn.discordapp.com/attachments/798230494898290709/799590627624484864/
Project_01-151_HD_720p_MEDIUM_FR30.mp4

so thats the giveaway command, to get the database and these stuffs its on
trashmanager file app.js
https://cdn.discordapp.com/attachments/798230494898290709/799603148905381908/
gcreate.js

You might also like