Merge pull request #163 from aleff-github/patch-30

Send Telegram Messages
pull/178/head
Kalani Helekunihi 2023-06-12 14:18:05 -04:00 committed by GitHub
commit ce7f684f5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,27 @@
# Send Telegram Messages - Linux ✅
A script used to prank your friends sending messages by using Telegram app.
**Category**: Prank
## Description
A script used to prank your friends sending messages by using Telegram app.
Opens a shell, runs the telegram-desktop app, search the user by the id, enter into the chat, write the message(s) and send, then close the app and the shell.
## Getting Started
### Dependencies
* Internet Connection
* telegram-desktop installed and activated
### Executing program
* Plug in your device
### Settings
- Telegram username
- Messages

View File

@ -0,0 +1,36 @@
REM #########################################
REM # |
REM # Title : Send Telegram Messages |
REM # Author : Aleff |
REM # Version : 1.0 |
REM # Category : Prank |
REM # Target : Linux |
REM # |
REM #########################################
REM Requirements:
REM - Internet Connection
REM - telegram-desktop installed and activated
DEFINE #USERNAME @example
DEFINE #MESSAGE example
DEFAULT_DELAY 500
CTRL ALT t
DELAY 2000
STRINGLN telegram-desktop
REM It depends by the computer...
DELAY 3000
REM Define the message receiver username
STRINGLN #USERNAME
REM Define the message(s)
STRINGLN #MESSAGE
REM other messages here...
REM Closing Telegram App and the Shell
ALT F4
CTRL c
ALT F4