Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Windows.Forms;
- using GTA;
- namespace LockDoors
- {
- public class LockDoors:Script
- {
- public LockDoors()
- {
- KeyDown += new GTA.KeyEventHandler(LockDoors_KeyDown);
- }
- void LockDoors_KeyDown(object sender, GTA.KeyEventArgs e)
- {
- if (e.Key == Keys.Delete)
- }
- {
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment