Freak Your Friends Out With Notepad!

Clown Town

Senior Member
Joined
Jan 4, 2009
Posts
1,447
Bells
1,398
Notepad... simple... yet complex!

You can make simple scripts and annoy your friends!

you make a file and save it as a .vbs and its a script!

Here is a simple one that open notepad when clicked and types something!

<div class='spoiler_toggle'>Spoiler: click to toggle</div><div class="spoiler" style="display:none;">WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "</div>

you can change it to say other things...

Just make that a shortcut.. rename... change icon... And people will click it thinking its somthing else! Have fun!
 
this is more fun for vbs and faster
take this code in the spoiler and copy and paste it a bajillion times. thats how many popups there will be
<div class='spoiler_toggle'>Spoiler: click to toggle</div><div class="spoiler" style="display:none;">
Code:
 lol=msgbox("hi!",16,"lol box")
</div>
then save this as a .vbs
 
Back
Top