profileshame

Untitled

Apr 28th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. using System;
  2. using System.Windows.Forms;
  3. using GTA;
  4.  
  5. namespace LockDoors
  6. {
  7.     public class LockDoors:Script
  8.     {
  9.         public LockDoors()
  10.         {
  11.             KeyDown += new GTA.KeyEventHandler(LockDoors_KeyDown);
  12.         }
  13.  
  14.         void LockDoors_KeyDown(object sender, GTA.KeyEventArgs e)
  15.         {
  16.              if (e.Key == Keys.Delete)
  17.              }
  18.     {
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment