Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



 10565

Discord | Infinite Typing Script

by ItsYoda - 22 May, 2020 - 12:23 PM
This post is by a banned member (LenLeno) - Unhide
LenLeno  
Registered
2
Posts
0
Threads
4 Years of service
#9
Still working! Nice find  Pepelove
This post is by a banned member (Buuubbbbhdh) - Unhide
36
Posts
0
Threads
3 Years of service
Warned #10
(22 May, 2020 - 12:23 PM)ItsYoda Wrote: Show More
Today I Bring You My Personal Typing Forever Discord Script
Warning: This is my personal script that I wrote. If I see any reposts of this Ill report you.
#Simplified for the intellectually challenged and non contributing leeches.
[Image: unknown.png]
[Image: unknown.png]


1) Got to https://glitch.com/

2) After you register, click on "New Project" 

3) Then Click on "Hello Express"


[Image: unknown.png]

4) By Default, It will look like this.

[Image: unknown.png]


5) Delete All The Code In "Package.json" 

[Image: unknown.png]


Delete All The Code In "Server.js"

[Image: unknown.png]

6) Click "New File"

[Image: unknown.png]

7) Type in "config.json"

[Image: unknown.png]

8) After you type it in, click "Add This File"

You'll see, now you have three categories.


[Image: unknown.png]

9) Now we add the code

Copy and Paste This Code Under This Line Into "config.json" 

 
Code:
 
{
    "token": "",
    "prefix": "!"
}

10) Put You Token Between The Quotations
 
Code:
 
Example: 
{
    "token": "TOKEN HERE",
    "prefix": "!"
}

11) Copy And Paste This Code Into "package.json"
 
Code:
 
{
  "name": "typing",
  "version": "1.0.1",
  "description": "Types forever",
  "main": "node server.js",
  "scripts": {
    "start": "node server.js"
  },
  "dependencies": {
    "discord.js": "^11.3.2"
  }
}


12) Copy And Paste This Code Into "server.js"
 
Code:
 
const http = require('http');
const Discord = require("discord.js");
const client = new Discord.Client();
const config = require('./config.json');
client.config = config;


client.on("message", async message => {
  if(message.content.indexOf(config.prefix) !== 0) return;
  const args = message.content.slice(config.prefix.length).trim().split(/ +/g);
  
  const command = args.shift().toLowerCase();
  if(command === "?") {
    message.delete().catch(O_o=>{}); 
    message.channel.startTyping(); 
  }
});

client.login(config.token);


13) Now Direct Message A Friend This Command
 
Code:
!? = prefix

Message your friend that prefix command

send !? in a dm on discord.


If it disappears right away it is working
If it doesn't disappear than its not working

[Image: unknown.png] 

You'll be typing forever to the person you send "!?" too. It will piss them off and its funny to see their reactions.  :pepo:

this looks so good lmao ty
This post is by a banned member (WSH8) - Unhide
WSH8  
Registered
270
Posts
23
Threads
2 Years of service
#11
hope this still works
This post is by a banned member (dortik98) - Unhide
dortik98  
Registered
142
Posts
9
Threads
4 Years of service
#12
thanx
[Image: peepoSitSlide.gif]make sure to like all of my posts  Smart

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 1 Guest(s)