Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Windows.Forms;
- using GTA;
- using GTA.Native;
- public class ZeroMoney : Script {
- public ZeroMoney() {
- KeyUp += OnKeyUp;
- UI.Notify("Press M to reset your money account!");
- }
- void OnKeyUp(object sender, KeyEventArgs e)
- {
- if (e.KeyCode == Keys.M)
- //Game.Player.Money -= Game.Player.Money;
- Game.Player.Money = 0;
- }
- }
Add Comment
Please, Sign In to add comment