Rei_anami

Source Code for scripting - GTA V

Sep 25th, 2022
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Imports System
  2. Imports System.Collections.Generic
  3. Imports System.Drawing
  4. Imports System.Windows.Forms
  5. Imports GTA
  6. Imports GTA.Native
  7. Imports System.Linq
  8. Imports System.Text
  9. Imports System.Threading.Tasks
  10.  
  11. Public Class BaseScript
  12.     Inherits Script
  13.  
  14.     Public Sub New()
  15.         Me.Interval = 5
  16.     End Sub
  17.  
  18.     Private Sub keyDown(ByVal sender As Object, ByVal e As KeyEventArgs) Handles MyBase.KeyDown
  19.        
  20.     End Sub
  21.  
  22.     Private Sub keyUp(ByVal sender As Object, ByVal e As KeyEventArgs) Handles MyBase.KeyUp
  23.     End Sub
  24.  
  25.     Private Sub general_tick(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Tick
  26.        
  27.     End Sub
  28. End Class
Add Comment
Please, Sign In to add comment