Our objective :
Make a program that cannot be closed and it will print text saying "Injecting your computer with a Trojan.Horse" ETC
Lets start off with the basics of it :
- Code: Select all
Print "Injecting Trojan.Horse"
Wait 2000
now , Print will print simple text to the screen but you must include speech marks around the characters you want it to print - "PRINT"
Wait 2000 = Wait 2 seconds so Wait 1000 = 1 second. Wait 100 = 1 millisecond , Wait 10 = 1 nanosecond and Wait 1 = 1 trilisecond.
Now thats going to print
- Code: Select all
Injecting Trojan.Horse
- Code: Select all
Disable EscapeKey
Print "Injecting.Trojan.Horse"
Wait 2000
Wait Key
Disable Escapekey will of course disable the escape key and wait key waits for a key to be pressed (Will not be escape as we just disabled it)
Ok , thats mostly it. Here is a nice one that you can use :
- Code: Select all
Disable Escape Key
Print "Injecting Trojan.Horse"
Wait 2000
Print "Injecting Done"
Wait 1000
Now get out there and scare your freinds !


