![]() |
|
Insult to injury after an attack - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Coding (https://sinister.ly/Forum-Coding--71) +--- Thread: Insult to injury after an attack (/Thread-Insult-to-injury-after-an-attack) Pages:
1
2
|
Insult to injury after an attack - Inori - 05-01-2014 made this in 2 minutes. Could be used after an attack to make the victim feel even stupider. (it's basically a batch gif) Code: @echo off
title Teabag
color 06
:a
cls
echo -----------
echo + +
echo + +
echo + +
echo + +
echo -----------
echo +
echo ----+----
echo +
echo +
echo ---------
echo + +
echo + +
echo + +
pause <nul
goto b
:b
cls
echo .
echo .
echo -----------
echo + +
echo + +
echo + +
echo + +
echo -----------
echo +
echo ----+----
echo _ + _
echo + \_ + _/ +
echo + \+/ +
echo + +
pause <nul
goto aRE: Insult to injury after an attack - AlCapone - 05-22-2014 That would piss them off lmao!, but they'd have to see the funny side of it too. RE: Insult to injury after an attack - ericsia97 - 06-01-2014 (05-01-2014, 11:34 PM)Jinxed Wrote: made this in 2 minutes. Could be used after an attack to make the victim feel even stupider. (it's basically a batch gif)I love it. But in windows 8 it jump too fast caused it form a baby with pant image RE: Insult to injury after an attack - Rye123_mybb_import20042 - 07-05-2014 Nice, may seem a bit sadistic though
RE: Insult to injury after an attack - The Real Slim Shady - 07-05-2014 If I saw this I would be more embarrassed than anything else. Hacked by a skid? I couldnt live with myself. RE: Insult to injury after an attack - h3r0 - 07-16-2014 Personally if ever had gotten into someone's computer and had full control of it because they left one too many things open I would change their background to a tiled image of this. But of course that was many years ago. I've learned that silence is better.
RE: Insult to injury after an attack - Soap109 - 08-08-2014 (06-01-2014, 05:04 AM)ericsia97 Wrote:(05-01-2014, 11:34 PM)Jinxed Wrote: made this in 2 minutes. Could be used after an attack to make the victim feel even stupider. (it's basically a batch gif)I love it. But in windows 8 it jump too fast caused it form a baby with pant image First off all Thanks to blank! Its so amazing ![]() @ ericsia97: I fixed it a little bit so its just jumping after 2 Seconds back and for. Hope u enjoy and I hope that I was allowed to take [blank]'s code for this. Code: @echo off
title Teabag
color 02
:a
cls
echo -----------
echo + +
echo + +
echo + +
echo + +
echo -----------
echo +
echo ----+----
echo +
echo +
echo ---------
echo + +
echo + +
echo + +
ping localhost -n 2 >nul
goto b
:b
cls
echo.
echo.
echo -----------
echo + +
echo + +
echo + +
echo + +
echo -----------
echo +
echo ----+----
echo _ + _
echo + \_ + _/ +
echo + \+/ +
echo + +
ping localhost -n 2 >nul
goto aSee ya RE: Insult to injury after an attack - h3r0 - 08-08-2014 I added a bash version for unix and linux. Code: #!/bin/bash
function a {
clear
echo " -----------"
echo " + +"
echo " + +"
echo " + +"
echo " + +"
echo " -----------"
echo " +"
echo " ----+----"
echo " +"
echo " +"
echo " ---------"
echo " + +"
echo " + +"
echo " + +"
echo " " `whoami`
sleep .2
b
}
function b {
clear
echo
echo
echo " -----------"
echo " + +"
echo " + +"
echo " + +"
echo " + +"
echo " -----------"
echo " + "
echo " ----+----"
echo " _ + _"
echo " + \\_ + _/ +"
echo " + \\+/ +"
echo " + +"
echo " " `whoami`
sleep .2
a
}
aRE: Insult to injury after an attack - DrPanda - 08-20-2014 LOL a system I was working on was attacked the other day would have loved to convert this to an EXE and name it some fancy security program :p to funny lol RE: Insult to injury after an attack - DrPanda - 08-20-2014 LOL a system I was working on was attacked the other day would have loved to convert this to an EXE and name it some fancy security program :p to funny lol |