Merge pull request #180 from aleff-github/patch-46

Send Messages In Discord Channel-Server
pull/196/head
Kalani Helekunihi 2023-06-13 14:23:29 -04:00 committed by GitHub
commit 995a48ac91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,31 @@
# Send Messages In Discord Channel-Server
This script can be used to send messages in a specific channel of a Discord text server.
**Category**: Execution
## Description
This script can be used to send messages in a specific channel of a Discord text server.
Open the GUI interface and trough this one open the Discord app, then use the keyboard shortcut CTRL-k to open the server chat.
**Note** that if you want to send a message within a chat that has a very common name such as #general then be aware that it is very likely that the chat of the server in which you want to send the message will not be selected but some other. If, on the other hand, you want to send it in a chat with a somewhat more specific name such as wifi-pineapple (Hak5's text channel) then almost certainly the channel in which you wish to send the message will be selected.
![](assets/1.png)
![](assets/2.png)
## Dependencies
* Discord Installed
* Internet connection
## Settings
- If, for example, the server is Hak5 and the channel in which you want to send the message is called wifi-pineapple then you should write just wifi-pineapple
`[18] DEFINE #CHAT_NAME example`
- This depends on the power of the computer and whether there are upgrades to be done
`[27] DELAY 6000`

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,41 @@
REM ############################################################
REM # |
REM # Title : Send Messages In Discord Channel-Server |
REM # Author : Aleff |
REM # Version : 1.0 |
REM # Category : Execution |
REM # Target : Windows 10-11 |
REM # |
REM ############################################################
REM Requirements:
REM - Internet connection
REM - Discord Installed
REM If, for example, the server is Hak5 and the channel in which you want to send the message is called wifi-pineapple then you should write just wifi-pineapple
DEFINE CHAT_NAME example
REM Open Discord app
GUI
DELAY 1000
STRINGLN Discord
REM This depends on the power of the computer and whether there are upgrades to be done
DELAY 6000
REM Search by Discord keyboard shortcut and open it
CTRL k
DELAY 500
STRINGLN #CHAT_NAME
DELAY 500
STRINGLN_BLOCK
Write here..
your...
messages...
END_STRINGLN
ALT F4