Skip to content
This repository has been archived by the owner on Nov 20, 2023. It is now read-only.

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
Some code changes and cleanup
  • Loading branch information
Linewalker committed Jul 7, 2022
1 parent 7186db9 commit 6201cc7
Show file tree
Hide file tree
Showing 14 changed files with 786 additions and 5,134 deletions.
57 changes: 57 additions & 0 deletions Config/Settings.cs
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;

}
}
13 changes: 2 additions & 11 deletions GTAVCSMM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,10 @@
<Compile Include="Helpers\Key.cs" />
<Compile Include="Helpers\KeysMgr.cs" />
<Compile Include="Helpers\Manager.cs" />
<Compile Include="Math\Library.cs" />
<Compile Include="Math\Math2.cs" />
<Compile Include="Math\Math3.cs" />
<Compile Include="Math\MathF.cs" />
<Compile Include="Math\Matrix3x4.cs" />
<Compile Include="Math\Matrix4x4.cs" />
<Compile Include="Math\Vector2.cs" />
<Compile Include="Math\Vector3.cs" />
<Compile Include="Memory\Mem.cs" />
<Compile Include="Helpers\Mem.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Settings\Addresses.cs" />
<Compile Include="Settings\TSettings.cs" />
<Compile Include="Config\Settings.cs" />
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
Expand Down
Loading

0 comments on commit 6201cc7

Please sign in to comment.