This repository has been archived by the owner on Nov 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
786 additions
and
5,134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
namespace GTAVCSMM.Config | ||
{ | ||
public class Settings | ||
{ | ||
#region Globals | ||
public static string gameName = "GTA5"; | ||
public static int gameProcess = 0; | ||
public static long GlobalPTR; | ||
public static long WorldPTR; | ||
public static long BlipPTR; | ||
public static long ReplayInterfacePTR; | ||
public static long LocalScriptsPTR; | ||
public static long PlayerCountPTR; | ||
public static long PickupDataPTR; | ||
public static long WeatherADDR; | ||
public static long SettingsPTR; | ||
public static long AimCPedPTR; | ||
public static long FriendlistPTR; | ||
#endregion | ||
|
||
#region Trainer settings | ||
public static int aConnect = 0; | ||
public static int aFKtoggle = 0; | ||
public static int aGodMode = 0; | ||
public static int aLogPlayers = 0; | ||
public static int aDarkMode = 0; | ||
public static int player_tracking = 0; | ||
public static int pictureGrabOFF = 0; | ||
public static int markMyRid = -1; | ||
public static int myCPed = -1; | ||
|
||
public static bool GlobalPTRFound = false; | ||
public static bool WorldPTRFound = false; | ||
public static bool BlipPTRFound = false; | ||
public static bool ReplayInterfacePTRFound = false; | ||
public static bool LocalScriptsPTRFound = false; | ||
public static bool PlayerCountPTRFound = false; | ||
public static bool PickupDataPTRFound = false; | ||
public static bool WeatherADDRFound = false; | ||
public static bool SettingsPTRFound = false; | ||
public static bool AimCPedPTRFound = false; | ||
public static bool FriendlistPTRFound = false; | ||
#endregion | ||
|
||
public static bool pgodm = false; | ||
public static bool pnwanted = false; | ||
public static bool pnragdoll = false; | ||
public static bool puoffradar = false; | ||
public static bool psbelt = false; | ||
public static bool psjump = false; | ||
public static bool psexammo = false; | ||
public static bool pdiscol = false; | ||
public static bool vgodm = false; | ||
public static bool cKiller = false; | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.