From 2ec62d34c38411a6645af9595d12f61947f51e4d Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:51:10 -0400 Subject: [PATCH 01/27] Create Termux.sh --- web/Guias/Utilidades/Termux.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 web/Guias/Utilidades/Termux.sh diff --git a/web/Guias/Utilidades/Termux.sh b/web/Guias/Utilidades/Termux.sh new file mode 100644 index 0000000000..94852e4fd6 --- /dev/null +++ b/web/Guias/Utilidades/Termux.sh @@ -0,0 +1,10 @@ +#!/bin/bash +wget https://raw.githubusercontent.com/weskerty/test/main/Termux/.bashrc -O ~/.bashrc +proot-distro login archlinux -- bash -c "pacman -Syu wget curl nodejs nano npm git ffmpeg python --noconfirm && \ +wget https://raw.githubusercontent.com/weskerty/test/main/Termux/update.sh -O ~/update.sh && \ +chmod 777 ~/update.sh && \ +git clone https://github.com/BrunoSobrino/TheMystic-Bot-MD.git mystic && \ +cd mystic && \ +npm install && \ +npm start ." + From 019a7d05e4b99af80798259be1bc626ef942f33f Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:51:49 -0400 Subject: [PATCH 02/27] Create .bashrc --- web/Guias/Utilidades/.bashrc | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 web/Guias/Utilidades/.bashrc diff --git a/web/Guias/Utilidades/.bashrc b/web/Guias/Utilidades/.bashrc new file mode 100644 index 0000000000..225f72b840 --- /dev/null +++ b/web/Guias/Utilidades/.bashrc @@ -0,0 +1,2 @@ +termux-wake-lock +proot-distro login archlinux -- /bin/bash -c ./update.sh From ce4337b0091cc0d12590e7beb2bbe32643cb64c7 Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:53:15 -0400 Subject: [PATCH 03/27] Create update.sh --- web/Guias/Utilidades/update.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 web/Guias/Utilidades/update.sh diff --git a/web/Guias/Utilidades/update.sh b/web/Guias/Utilidades/update.sh new file mode 100644 index 0000000000..68968fda5a --- /dev/null +++ b/web/Guias/Utilidades/update.sh @@ -0,0 +1,7 @@ +#!/bin/bash +pacman -Syu --noconfirm +cd $HOME/mystic/ || echo Falla. Mystic no Existe. +#git stash && git pull https://github.com/BrunoSobrino/TheMystic-Bot-MD.git && git stash pop || echo "#########Error al actualizar mystic" +#npm install @whiskeysockets/baileys@latest @adiwajshing/baileys@latest --force || echo "#########Error al instalar en mystic" +npm install --force +npm start . From 460d404fb5dba1caced05f566630a880753e5d8c Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:55:02 -0400 Subject: [PATCH 04/27] Create INSTALLWindows.bat --- web/Guias/Utilidades/INSTALLWindows.bat | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 web/Guias/Utilidades/INSTALLWindows.bat diff --git a/web/Guias/Utilidades/INSTALLWindows.bat b/web/Guias/Utilidades/INSTALLWindows.bat new file mode 100644 index 0000000000..3897f8f536 --- /dev/null +++ b/web/Guias/Utilidades/INSTALLWindows.bat @@ -0,0 +1,11 @@ +@echo off +@powershell -NoProfile -ExecutionPolicy Bypass -Command "& { [System.Net.ServicePointManager]::Expect100Continue = $false; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) } -NoNewWindow -Wait" +bitsadmin /transfer IniciadorMystic /download /priority high /DYNAMIC https://raw.githubusercontent.com/weskerty/test/main/Windows/UpdateAndStart.bat C:\IniciarMystic.bat +:: Instalar Dependencias, Se pueden agregar mas que esten en Chocolatey +choco install python nodejs pm2 ffmpeg-full git -y + +::Mystic +git clone https://github.com/BrunoSobrino/TheMystic-Bot-MD.git mystic +cd mystic +npm install +npm start . From 428c72095630c6fc7be6e727e1473e14b0ce0440 Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 12:54:24 -0400 Subject: [PATCH 05/27] Delete web/Guias/Utilidades/INSTALLWindows.bat --- web/Guias/Utilidades/INSTALLWindows.bat | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 web/Guias/Utilidades/INSTALLWindows.bat diff --git a/web/Guias/Utilidades/INSTALLWindows.bat b/web/Guias/Utilidades/INSTALLWindows.bat deleted file mode 100644 index 3897f8f536..0000000000 --- a/web/Guias/Utilidades/INSTALLWindows.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -@powershell -NoProfile -ExecutionPolicy Bypass -Command "& { [System.Net.ServicePointManager]::Expect100Continue = $false; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) } -NoNewWindow -Wait" -bitsadmin /transfer IniciadorMystic /download /priority high /DYNAMIC https://raw.githubusercontent.com/weskerty/test/main/Windows/UpdateAndStart.bat C:\IniciarMystic.bat -:: Instalar Dependencias, Se pueden agregar mas que esten en Chocolatey -choco install python nodejs pm2 ffmpeg-full git -y - -::Mystic -git clone https://github.com/BrunoSobrino/TheMystic-Bot-MD.git mystic -cd mystic -npm install -npm start . From 6740a844cd73125b14a08a8ff5660af5ddfde562 Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 12:58:21 -0400 Subject: [PATCH 06/27] Create NSIS.nsi --- web/Guias/Utilidades/EXEcutable/NSIS.nsi | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 web/Guias/Utilidades/EXEcutable/NSIS.nsi diff --git a/web/Guias/Utilidades/EXEcutable/NSIS.nsi b/web/Guias/Utilidades/EXEcutable/NSIS.nsi new file mode 100644 index 0000000000..37dd37d960 --- /dev/null +++ b/web/Guias/Utilidades/EXEcutable/NSIS.nsi @@ -0,0 +1,23 @@ +!include x64.nsh +!include FileFunc.nsh + +OutFile "TheMystic.exe" +Icon "F:\Documentos\LinuxMint\ICO\Mystic.ico" #Aqui el logo +RequestExecutionLevel highest +Name "Instalador MysticBot" + +Section "MainSection" SEC01 + + SetOutPath $TEMP + File /oname=$TEMP\UpMystic.bat "F:\Escritorio\UpMystic.bat" #El Script de Instalacion + + ${If} ${RunningX64} + ExecWait '"$WINDIR\SysNative\cmd.exe" /c "$TEMP\UpMystic.bat"' #Variables para ejecucion nativa en 64Bits + ${Else} + ExecWait '"$WINDIR\System32\cmd.exe" /c "$TEMP\UpMystic.bat"' + ${EndIf} + + Delete "$TEMP\UpMystic.bat" + + Quit +SectionEnd From eecc90a395155ee993a54ba053189f871c26ee40 Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:00:01 -0400 Subject: [PATCH 07/27] Create UpMystic.bat Instalador Bat. Se abre desde el exe NSIS. Tambien se puede ejecutar directamente. --- web/Guias/Utilidades/EXEcutable/UpMystic.bat | 45 ++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 web/Guias/Utilidades/EXEcutable/UpMystic.bat diff --git a/web/Guias/Utilidades/EXEcutable/UpMystic.bat b/web/Guias/Utilidades/EXEcutable/UpMystic.bat new file mode 100644 index 0000000000..becec858ec --- /dev/null +++ b/web/Guias/Utilidades/EXEcutable/UpMystic.bat @@ -0,0 +1,45 @@ +@echo off +setlocal + +echo ######### Verificando... + +IF NOT EXIST "%USERPROFILE%\mystic" ( + echo ######### Instalando... + + powershell -NoProfile -ExecutionPolicy Bypass -Command "& { [System.Net.ServicePointManager]::Expect100Continue = $false; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) } -NoNewWindow -Wait" + + :: Dependencias en Choco, se puede agregar más. + choco install python nodejs ffmpeg-full git -y + + git clone https://github.com/BrunoSobrino/TheMystic-Bot-MD.git "%USERPROFILE%\mystic" + cd "%USERPROFILE%\mystic" + npm install + npm start + exit /b +) + +echo ######### Verificando Actualizaciones... + +cd "%USERPROFILE%\mystic" || ( + echo ######### Error, No Existe Mystic + exit /b +) + +git pull https://github.com/BrunoSobrino/TheMystic-Bot-MD.git > git_output.txt + +findstr "Already up to date" git_output.txt >nul +if %errorlevel% equ 0 ( + echo Actualizado. +) else ( + echo Actualizando... + npm install --force || ( + echo ######### Error en NPM. Ejecutando Igualmente. + ) +) + +npm start || ( + echo ######### Error al Iniciar. Contacta a los Grupos de Soporte. +) + +del git_output.txt +endlocal From 7c17e2300ed603cb49f3578026434729a23230a8 Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:07:26 -0400 Subject: [PATCH 08/27] Update ingles.html --- web/Guias/Termux/ingles.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/web/Guias/Termux/ingles.html b/web/Guias/Termux/ingles.html index 6ff33826ea..a8cc7ba52e 100644 --- a/web/Guias/Termux/ingles.html +++ b/web/Guias/Termux/ingles.html @@ -4,8 +4,7 @@
Install Termux Click Here to Download Termux ⬇️ Remember to grant all permissions to Termux.
-If this version doesn't work with your phone, you will need to search for the compatible version on Termux Github
-It usually says termux-app_vxxx-+apt-android-7-github-debug_universal.apk
. Android 7 means it works with Android 7 and above. There is another version for Android 7 and below called Android5.
If that version doesn't work with your phone, you should Search for the Compatible Version on Termux Github ↗️ or Download F-Droid ⬇️ and Download Termux from There
THE TERMUX FROM GOOGLE PLAY DOES NOT WORK.
If you get the error "Arch already installed" you can delete Termux data and start over. Do not minimize to avoid crashes.
+You can also simply run this to skip that error
+ apt update -y && yes | apt upgrade && pkg install -y wget proot-distro && wget -O - https://raw.githubusercontent.com/weskerty/test/main/Termux/mystic.sh | bash
+
To reopen the bot if Termux closes, just open Termux again, this will make it start automatically.
To cancel automatic execution when opening Termux, press the CTRL + C key on the keyboard.
From 6f037ff3779fced748f0eb4a93aa3becd311f7b6 Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:07:29 -0400 Subject: [PATCH 09/27] Update es.html --- web/Guias/Termux/es.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/web/Guias/Termux/es.html b/web/Guias/Termux/es.html index 277b128e5b..7bce2bfeae 100644 --- a/web/Guias/Termux/es.html +++ b/web/Guias/Termux/es.html @@ -4,9 +4,8 @@Instala Termux Clic Aqui para Descargar Termux ⬇️ Recuerda darle todos los permisos a Termux
-Si esa version no funciona con tu telefono, deberas Buscar la Version Compatible en Termux Github
-Suele decir termux-app_vxxx-+apt-android-7-github-debug_universal.apk
. Android 7 se refiere a que funciona con Android 7 y superior. Hay otra versión para Android 7 e inferior llamada Android5.
+EL TERMUX DE GOOGLE PLAY NO FUNCIONA.
Si esa version no funciona con tu telefono, deberas Buscar la Version Compatible en Termux Github ↗️ o Descargar F-Droid ⬇️ y Descargar Termux desde Ahi
+EL TERMUX DE GOOGLE PLAY NO FUNCIONA.
En caso de Aparecer Error "Arch ya Instalado" puedes borrar Datos de Termux y Empezar de Nuevo. No Minimices para evitar fallas.
+Tambien puedes ejecutar simplemente esto para saltar ese error
+ apt update -y && yes | apt upgrade && pkg install -y wget proot-distro && wget -O - https://raw.githubusercontent.com/weskerty/test/main/Termux/mystic.sh | bash
+
Para volver a abrir el bot en caso de que se cierre Termux, Solo abre de nuevo Termux, esto hara que se Inicie Automaticamente.
Para cancelar la ejecucion automatica al abrir Termux Presiona la Tecla CTRL + C del Teclado.
From 68358c8f2bda3420d356613a34a6f97a206d33b8 Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:14:40 -0400 Subject: [PATCH 10/27] Update es.html --- web/Guias/Windows/es.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/web/Guias/Windows/es.html b/web/Guias/Windows/es.html index 70c466644b..1dbca2ea3b 100644 --- a/web/Guias/Windows/es.html +++ b/web/Guias/Windows/es.html @@ -1,19 +1,20 @@Es tan facil como Descargar Este Archivo ⬇️ y Ejecutarlo como Adminstrador
-Eso instalara Automaticamente todo lo que Necesites e Iniciara Pidiendote Iniciar con Codigo QR o Numero de Telefono.
+Es tan facil como Descargar⬇️ y Ejecutar
+Eso instalara Automaticamente todo lo que Necesites e Iniciara Pidiendote Iniciar con Codigo QR o Numero de Telefono cuando Termine de Instalar
Para iniciar el bot abre UpdateAndStart.bat que se encuentra en Disco C:\ y Listo.
+Para iniciar el bot abre TheMystic.exe de nuevo y Listo.
+Tambien Puedes Abrir la Ubicacion de la Carpeta donde esta y Abrir CMD Desde Ahi, O Directamente desde CMD con este comando cd %USERPROFILE%\mystic && npm start .
Windows Tiene una Limitacion con la Terminal el cual pausa la Ejecucion si se Minimiza, ademas de mostrar ventanas emergentes de manera aleatoria al usarse ffmpeg
Para Solucionar esto debes agregar una Tarea en Programador de Tareas
Abre el Programador de Tareas y Configuralo con estas Opciones:
Añadir Nueva Tarea Basica o Simple
-Agregar Nombre, Elegir UpdateAndStart.bat y que se inicie al inicar el equipo mas Ajustes Avanzados
+Agregar Nombre, Elegir TheMystic.EXE y que se inicie al inicar el equipo mas Ajustes Avanzados
Ejecutar Tanto como si se inicia sesion como si no
Ajusta para que no se detenga la tarea despues de 3 dias y demas ajustes preferenciales
Asi;
From fb275333647a92172611136d1d82013b00e52032 Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:15:06 -0400 Subject: [PATCH 11/27] Update ingles.html --- web/Guias/Windows/ingles.html | 40 ++++++++++++++++++----------------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/web/Guias/Windows/ingles.html b/web/Guias/Windows/ingles.html index b9186648a7..1a0ff5c33c 100644 --- a/web/Guias/Windows/ingles.html +++ b/web/Guias/Windows/ingles.html @@ -1,24 +1,26 @@ -It is as easy as Downloading This File ⬇️ and Running it as Administrator
-This will automatically install everything you need and start by asking you to log in with a QR Code or Phone Number.
+It's as easy as Download⬇️ and Run
+That will automatically install everything you need and start asking you to start with QR Code or Phone Number when it finishes installing
-To start the bot, open UpdateAndStart.bat located in Drive C:\ and that’s it.
-You can also open the folder location and open CMD from there, or directly from CMD with this command cd %USERPROFILE%\mystic && npm start .
-Windows has a limitation with the terminal where the execution pauses if minimized, and it shows random pop-up windows when using ffmpeg.
-To solve this, you need to add a task in Task Scheduler.
Open Task Scheduler and configure it with these options:
-Add a New Basic or Simple Task
-Add a Name, Choose UpdateAndStart.bat, and set it to start at system boot with additional advanced settings.
-Run whether the user is logged in or not.
-Set it so the task doesn't stop after 3 days and adjust other preferences as needed.
+To start the bot open TheMystic.exe again and you're done.
+You can also open the folder location where it is and open CMD from there, or directly from CMD with this command cd %USERPROFILE%\mystic && npm start .
+
+Windows has a limitation with the Terminal which pauses the execution if it is minimized, in addition to showing pop-ups randomly when using ffmpeg
+To solve this you must add a Task in Task Scheduler
Open the Task Scheduler and configure it with these options:
+Add New Basic or Simple Task
+Add Name, Choose TheMystic.EXE and start when the computer starts plus Advanced Settings
+Run Whether or not you log in
+Adjust so that the task does not stop after 3 days and other preferential settings
Like this;
- + -This will make it start automatically when the PC turns on, without being visible or pausing.
-This will make it start automatically when you turn on the PC without being seen or pausing.
+Download and install Node.js, Git, and Python.
-Install them, clone the repository, run npm install in the folder containing the config settings, and npm start.
+Download and Install Nodejs, Git and python
+Install it, clone the repo, npminstall in the config settings container folder and npm start .
From aa1645e513e271ff60428b6099d24bd76569193c Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:23:33 -0400 Subject: [PATCH 12/27] Update es.html --- web/es.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/es.html b/web/es.html index c9b5f23147..208c7a399c 100644 --- a/web/es.html +++ b/web/es.html @@ -114,7 +114,7 @@An automated chatbot for WhatsApp based on Node.js, offering multiple features and customizations on the platform.
-An automated chatbot for WhatsApp based on Node.js, which allows multiple functions and customizations on the platform.
Help Keep the project active with your donation and help improve the chatbot's features for everyone!
Help keep the project active with your donation and contribute to improving the chatbot’s functionality for everyone!
-Important Notices
+- -Notices Important
-IMPORTANT: This project is not affiliated in any way with WhatsApp, Inc. WhatsApp is a registered trademark of WhatsApp LLC, and this bot is an independent development with no official relationship to the company.
-IMPORTANT: There is no guarantee this project will work 100% due to personal time constraints of @BrunoSobrino, so the project is in the hands of collaborators and users willing to contribute updates.
+IMPORTANT: This project is in no way affiliated with WhatsApp, Inc. WhatsApp is a registered trademark of WhatsApp LLC, and This bot is an independent development that has no official relationship with the company.
+IMPORTANT: It is not guaranteed that this project will continue to function at 100% Due to personal time issues of @BrunoSobrino, the project is in the hands of collaborators and users who wish to provide updates.
Deployment Options
+Deployment options
Deployment in Cafirexos
- - --- -Important Links
- -Deployment in BoxMineWorld
- - - --Important Links
--
+- Website
-- Client Area
-- Control Panel
-- Documentation
-- Discord Community
-< summary>Important LinksDeployment in BoxMineWorld
-Important Links
Deployment in Others
-This section contains deployment buttons that allow you to deploy the project in different environments with just one click.
+Deploy to Others
+In this section you will find deployment buttons that will allow you to deploy the project in different environments with a single click.
- + - - - - + - - - - - - - - - - - - - - - - - -Support and Community
-Help Communities
- - - - - - - - - - -Contributors
- -Acknowledgements
--
- -- adiwajshing (Baileys)
-- Shikimori99
-- Fokusdotid
-- Fernazer
-- DikaArdnt
-- Gimenz
-Main Developer
--
+- BrunoSobrino
-Help Communities
+Join the following communities:
++
+ +RRSS +Type +Language +Link ++ +Channel +Spanish +Join here! ++ Group Spanish Join here! Group English Join here! Group Português Get together here! Contributors
Acknowledgements
Main Developer
From 687c01f7e6fd9bd3c6dd09a2d637fdfc95ba16f3 Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:40:49 -0400 Subject: [PATCH 14/27] Update es.html --- web/Guias/Windows/es.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web/Guias/Windows/es.html b/web/Guias/Windows/es.html index 1dbca2ea3b..aa45510949 100644 --- a/web/Guias/Windows/es.html +++ b/web/Guias/Windows/es.html @@ -1,11 +1,11 @@ -Instalacion en Windows
+🖥️ Instalacion en Windows
Es tan facil como Descargar⬇️ y Ejecutar
Eso instalara Automaticamente todo lo que Necesites e Iniciara Pidiendote Iniciar con Codigo QR o Numero de Telefono cuando Termine de Instalar
-Iniciar Bot Nuevamente
+🔄 Iniciar Bot Nuevamente
Para iniciar el bot abre TheMystic.exe de nuevo y Listo.
Tambien Puedes Abrir la Ubicacion de la Carpeta donde esta y Abrir CMD Desde Ahi, O Directamente desde CMD con este comando
cd %USERPROFILE%\mystic && npm start . @@ -17,12 +17,12 @@
Iniciar Bot Nuevamente
Agregar Nombre, Elegir TheMystic.EXE y que se inicie al inicar el equipo mas Ajustes Avanzados
Ejecutar Tanto como si se inicia sesion como si no
Ajusta para que no se detenga la tarea despues de 3 dias y demas ajustes preferenciales
-Asi;
+Asi;
Esto hara que inicie Automaticamente al encender la PC sin verse y sin Pausarse
Para mas informacion ve a los Grupos de Ayuda en alguna de estas Plataformas o Habla Directamente desde el Widget
-
Instalacion Manual
-Descarga e Instala Nodejs, Git y python
+🖐️ Instalacion Manual
+Descarga e Instala Nodejs, Git, ffmpeg y python
Instalalo, clona la repo, npminstall en la carpeta contenedora ajustes de config y npm start .
From c66df526cd3e64ea5c65da662c78694ace784b5c Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:41:08 -0400 Subject: [PATCH 15/27] Update ingles.html --- web/Guias/Windows/ingles.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/web/Guias/Windows/ingles.html b/web/Guias/Windows/ingles.html index 1a0ff5c33c..836ab8cc5f 100644 --- a/web/Guias/Windows/ingles.html +++ b/web/Guias/Windows/ingles.html @@ -1,10 +1,10 @@ -Installation on Windows
+🖥️ Installation on Windows
-It's as easy as Download⬇️ and Run
-That will automatically install everything you need and start asking you to start with QR Code or Phone Number when it finishes installing
+It's as easy as Downloading⬇️ and Running
+That will automatically install everything you need and start asking you to start with QR Code or Phone Number when it finishes installing
-Start Bot Again
-To start the bot open TheMystic.exe again and you're done.
+🔄 Start Bot Again
+To start the bot open TheMystic.exe again and that's it.
You can also open the folder location where it is and open CMD from there, or directly from CMD with this command
@@ -15,12 +15,12 @@cd %USERPROFILE%\mystic && npm start .
Start Bot Again
Add Name, Choose TheMystic.EXE and start when the computer starts plus Advanced Settings
Run Whether or not you log in
Adjust so that the task does not stop after 3 days and other preferential settings
-Like this;
+Like this;
-This will make it start automatically when you turn on the PC without being seen or pausing.
-For more information go to the Help Groups on any of these Platforms or Talk Directly from the Widget
+
This will make it start automatically when you turn on your PC without being seen or pausing.
+For more information, go to the Help Groups on any of these Platforms or Talk Directly from the Widget
-
Manual Installation
-Download and Install Nodejs, Git and python
-Install it, clone the repo, npminstall in the config settings container folder and npm start .
+🖐️ Manual Installation
+Download and Install Nodejs, Git, ffmpeg and python
+Install it, clone the repo, npminstall in the config settings and npm start container folder.
From 8c98868a65025d653ac1445045b5237d0fa4f97f Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 13:42:46 -0400 Subject: [PATCH 16/27] Update ingles.html --- web/ingles.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/ingles.html b/web/ingles.html index 29afc4a9fc..79fe68d535 100644 --- a/web/ingles.html +++ b/web/ingles.html @@ -1,4 +1,4 @@ -TheMystic-Bot-MD
An automated chatbot for WhatsApp based on Node.js, which allows multiple functions and customizations on the platform.
Demo · Report a Bug +From a17e3c3e3820d937f8956ff32704501293ac35b3 Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:11:14 -0400 Subject: [PATCH 17/27] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 8cb7d34d82..80776630cd 100644 --- a/index.html +++ b/index.html @@ -142,7 +142,7 @@ From 5857b0c0bcf2f691be4855b42ea25c8bd5aa5bca Mon Sep 17 00:00:00 2001 From: laWiskaPY <82781997+weskerty@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:20:33 -0400 Subject: [PATCH 18/27] Update index.html --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 80776630cd..afa1cf59c2 100644 --- a/index.html +++ b/index.html @@ -3,9 +3,9 @@ -TheMystic-Bot-MD
An automated chatbot for WhatsApp based on Node.js, which allows multiple functions and customizations on the platform.
🔮The Mystic Bot🔮 +The Mystic Bot🔮 - +