Last active
October 15, 2024 19:41
-
-
Save PatoFlamejanteTV/90526303b13d554b39d49379da839af2 to your computer and use it in GitHub Desktop.
Simple messagebox system made in batchfile and vbscript | Ported from https://github.com/PatoFlamejanteTV/ImaturidadePlusPlus/blob/main/coisaslegal/message.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: MessageBox System, make for Imaturidade++ | |
:: By: PatoFlamejanteTV, made ONLY by me | |
:: ---------------------------------------------------------------------------------- | |
@echo off | |
IF EXIST temp.vbs ( | |
del temp.vbs | |
) | |
echo x=msgbox("%1" ,%3, "%2") >> temp.vbs | |
start temp.vbs | |
echo DEBUG: Message: %1, Title: %2. | |
:: del temp.vbs | |
:: message.bat Die ? 48 | |
:: ^ .bat Name ^ ^ ^- Icon and Other Stuff (eg. "48 for Warning Message icon") | |
:: | |- Title (eg. "...") | |
:: |- Content/Message/Text (eg. "I-N-F-E-C-T-E-D") | |
:: ---------------------------------------------------------------------------------- | |
:: pause :: skibidi ohio sigma pomni goofy debug line |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment