using System;
using GTA;
using System.Windows.Forms;
public class Homelander : Script
{
public Homelander()
{
Tick += OnTick;
Interval = 10;
}
void OnTick(object sender, EventArgs e)
{
if (Game.IsKeyPressed(Keys.F7))
{
UI.Notify("Лазер Хоумлендера включен!");
}
}
}