Advertisement
Guest User

HideSpecialAbilityBar

a guest
Aug 5th, 2021
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.40 KB | None | 0 0
  1. using GTA;
  2. using GTA.Native;
  3. using System;
  4. using System.Windows.Forms;
  5.  
  6. namespace HideSpecialAbilityBar
  7. {
  8.     public class Main : Script
  9.     {
  10.         public Main()
  11.         {
  12.             Tick += OnTick;
  13.         }
  14.  
  15.         void OnTick(object sender, EventArgs e)
  16.         {
  17.             Function.Call((Hash)0x1DFEDD15019315A9, false); // _SET_ABILITY_BAR_VISIBILITY_IN_MULTIPLAYER
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement