Advertisement
Guest User

Untitled

a guest
Apr 21st, 2016
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. using System;
  2. using GTA;
  3. using GTA.Native;
  4.  
  5. namespace NoDar2
  6. {
  7. public class NoDar2 : Script
  8. {
  9.  
  10. public NoDar2()
  11. {
  12. Tick += OnTick;
  13. }
  14.  
  15. public void OnTick(object sender, EventArgs e)
  16. {
  17. int WantedLevel = Game.Player.WantedLevel;
  18. if (WantedLevel > 0)
  19. {
  20.  
  21. Function.Call(Hash.SET_POLICE_RADAR_BLIPS);
  22.  
  23. }
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement