Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
8 views

Skeleton Toolcode

The document describes a batch script tool that provides various networking functions through a menu interface. It allows checking ping status, shortening URLs, joining a Discord server, and looking up IP addresses. Basic commands are described to navigate the menu and select options.

Uploaded by

epikika123
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views

Skeleton Toolcode

The document describes a batch script tool that provides various networking functions through a menu interface. It allows checking ping status, shortening URLs, joining a Discord server, and looking up IP addresses. Basic commands are described to navigate the menu and select options.

Uploaded by

epikika123
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

@echo off

chcp 65001
color 2
Title Vox's Tool

cls

echo.
echo ███████╗██╗ ██╗███████╗██╗ ███████╗████████╗ ██████╗ ███╗ ██╗████████╗
██████╗ ██████╗ ██╗
echo ██╔════╝██║ ██╔╝██╔════╝██║ ██╔════╝╚══██╔══╝██╔═══██╗████╗
██║╚══██╔══╝██╔═══██╗██╔═══██╗██║
echo ███████╗█████╔╝ █████╗ ██║ █████╗ ██║ ██║ ██║██╔██╗ ██║ ██║
██║ ██║██║ ██║██║
echo ╚════██║██╔═██╗ ██╔══╝ ██║ ██╔══╝ ██║ ██║ ██║██║╚██╗██║ ██║
██║ ██║██║ ██║██║
echo ███████║██║ ██╗███████╗███████╗███████╗ ██║ ╚██████╔╝██║ ╚████║ ██║
╚██████╔╝╚██████╔╝███████╗
echo ╚══════╝╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═╝
╚═════╝ ╚═════╝ ╚══════╝

echo ╔══════════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║┍━━━━━━━━━━━━━━━━━ ☽【❖Skeleton Tool❖】☾
━━━━━━━┑━━━━━━━━━━━━━━━━━║
echo ║ (1). CREDITS (8). URL TO IP ║
echo ║ (2). PINGER (9). COMING SOON ║
echo ║ (3). URL SHORTENER (10).COMING SOON ║
echo ║ (4). GRABIFY (11).COMING SOON ║
echo ║ (5). Skleton SERVER (12).COMING SOON ║
echo ║ (6). TUTORIAL (13).COMING SOON ║
echo ║ (7). Exit (14).COMING SOON ║
echo ╚══════════════════════════════════════════════════════════════════╝
echo.

set/p number=@USER CHOICE:


if %number% == 1 Goto Credits
if %number% == 2 Goto Pinger
if %number% == 3 Goto url_shortener
if %number% == 4 Goto Grabify
if %number% == 5 Goto Skleton
if %number% == 6 Goto Tutorial
if %number% == 7 exit
if %number% == 8 Goto UTIP

:Pinger

cls

set /p ip= Hand over the ip

Goto pinging

:pinging
PING -n 1 %ip% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=0b & echo His router is down.)
color %in%
ping -t 2 0 10 127.0.0.1 >nul
Goto pinging

:url_shortener

cls

set /p url= Give me the url

Goto result

:result
start "" http://tinyurl.com/api-create.php?url=%url%
exit

:Credits
Cls
Echo Hello Vox here owner of this awesome tool here to say the credits.
Echo Help with scripting: some youtube tutorials.
Echo Thats all.
Pause
exit

:Grabify
cls
start "" https://grabify.link
exit

:skeleton
cls
start "" https://discord.gg/YCvmWqqYqz
exit

:Tutorial
cls
start "" https://www.youtube.com/watch?v=nGcaGRjHBMs
exit

:UTIP
cls
c:\windows\system32\nslookup.exe
exit

You might also like