Advertisement
jedijosh920

Untitled

Nov 17th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. using GTA;
  2. using GTA.Native;
  3. using GTA.Math;
  4. using System;
  5. using System.Windows.Forms;
  6.  
  7. namespace NoSweat
  8. {
  9.     public class Main : Script
  10.     {
  11.         public Main()
  12.         {
  13.             Tick += OnTick;
  14.         }
  15.  
  16.         private void OnTick(object sender, EventArgs e)
  17.         {
  18.             Function.Call(Hash.SET_PED_SWEAT, Game.Player.Character, 0.0);
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement