.model small
.stack 100h
.data
menu db ' U've just been hacked by g_RaX@illusion_team99 on xx/12/99',10,13
         db 'greetz to wh0le illusions team',10,13
         db 'no fuckz for this time off the year, only to redattack',10,13
         db 'Happy NewYear Admin :)',10,13
         db ' 0- mail him and give him a job.',10,13
         db ' 1- make your server secure.',10,13
         db ' 2- respect illusions team.',10,13
         db ' Enter your choice:',10,13,'$'

mail  db'grax@most-wanted.com',10,13

cya  db ' game over, try again l8r. ;p ',10,13
         db ' Merry X-Mas & Happy New Year ',10,13,'$'

 .code
  MAIN proc
   mov ax,@data
   mov ds,ax
begenning: mov ah,00h; mode video 3
   mov al,03h
   int 10h
   mov ax,0b800h
   mov es,ax

   mov al,00h  ; clear screen
   mov ah,06h
   mov bh,7
   mov cx,0
   mov dh,24
   mov dl,79
   int 10h

   mov dx,offset menu  ; print on screen the menu
   mov ah,9
   int 21h

   mov ah,1
   int 21h

   cmp al,'0'
   je zero
   cmp al,'1'
   je one
   cmp al,'2'
   je two
   jmp begenning

zero: jmp end1

one:
   mov dx,offset mail ; g_RaX mail
   mov ah,9
   int 21h

two:   mov dx,offset mail ; g_RaX mail
   mov ah,9
   int 21h

end1:
   mov al,00h    ; clear screen
   mov ah,06h
   mov bh,7
   mov cx,0
   mov dh,24
   mov dl,79
   int 10h

   mov dx,offset cya
   mov ah,9
   int 21h

   mov ax,04c00h
   int 21h
   main endp

   end main


[copyrighted illusions team 99 ©]