Merge pull request #346 from aleff-github/patch-63
Send Messages In Discord Channel-Serverpull/393/merge
commit
6cf55d1bd6
|
@ -0,0 +1,53 @@
|
|||
# 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`
|
||||
|
||||
## Credits
|
||||
|
||||
<h2 align="center"> Aleff :octocat: </h2>
|
||||
<div align=center>
|
||||
<table>
|
||||
<tr>
|
||||
<td align="center" width="96">
|
||||
<a href="https://github.com/aleff-github">
|
||||
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/github.png?raw=true width="48" height="48" />
|
||||
</a>
|
||||
<br>Github
|
||||
</td>
|
||||
<td align="center" width="96">
|
||||
<a href="https://www.linkedin.com/in/alessandro-greco-aka-aleff/">
|
||||
<img src=https://github.com/aleff-github/aleff-github/blob/main/img/linkedin.png?raw=true width="48" height="48" />
|
||||
</a>
|
||||
<br>Linkedin
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
Binary file not shown.
After Width: | Height: | Size: 49 KiB |
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
|
@ -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 usb-rubber-ducky then you should write just usb-rubber-ducky
|
||||
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
|
Loading…
Reference in New Issue