Skip to content

Commit b8aaaca

Browse files
committed
Ghosts FoV Changer v3.15.2.0
Updated memory offsets, fixed URLs, switched from .NET Framework 3.5 to 4
1 parent ca5bbad commit b8aaaca

File tree

11 files changed

+45
-59
lines changed

11 files changed

+45
-59
lines changed
34.2 KB
Binary file not shown.
-37.9 KB
Binary file not shown.

src/Ghosts_fov_changer/Ghosts_fov_changer/Constants_MP.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public static class Multiplayer
2525

2626
public const string c_cVar = "cg_fov";
2727
public const dword_ptr c_memSearchRange = 0x90000000;
28-
public const dword_ptr c_baseAddr = 0x0140500000;
29-
public const dword_ptr c_pFoV = 0x014767A320;
28+
public const dword_ptr c_baseAddr = 0x0140800000;
29+
public const dword_ptr c_pFoV = 0x0147912FF0;
3030
public const byte c_checkRange = 0x40;
3131
}
3232
}

src/Ghosts_fov_changer/Ghosts_fov_changer/Constants_SP.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public static class Singleplayer
2525

2626
public const string c_cVar = "cg_fov";
2727
public const dword_ptr c_memSearchRange = 0x90000000;
28-
public const dword_ptr c_baseAddr = 0x0140500000;
29-
public const dword_ptr c_pFoV = 0x0145710740;
28+
public const dword_ptr c_baseAddr = 0x0140700000;
29+
public const dword_ptr c_pFoV = 0x01458EE7E0;
3030
public const byte c_checkRange = 0x30;
3131
}
3232
}

src/Ghosts_fov_changer/Ghosts_fov_changer/Ghosts_FoV_Changer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>Ghosts_FoV_Changer</RootNamespace>
1212
<AssemblyName>Ghosts_FoV_Changer</AssemblyName>
13-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1414
<TargetFrameworkProfile>
1515
</TargetFrameworkProfile>
1616
<FileAlignment>512</FileAlignment>
17+
<IsWebBootstrapper>false</IsWebBootstrapper>
1718
<PublishUrl>publier\</PublishUrl>
1819
<Install>true</Install>
1920
<InstallFrom>Disk</InstallFrom>
@@ -26,7 +27,6 @@
2627
<MapFileExtensions>true</MapFileExtensions>
2728
<ApplicationRevision>0</ApplicationRevision>
2829
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
29-
<IsWebBootstrapper>false</IsWebBootstrapper>
3030
<UseApplicationTrust>false</UseApplicationTrust>
3131
<BootstrapperEnabled>true</BootstrapperEnabled>
3232
</PropertyGroup>

src/Ghosts_fov_changer/Ghosts_fov_changer/MainForm.Designer.cs

Lines changed: 5 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Ghosts_fov_changer/Ghosts_fov_changer/MainForm.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public partial class MainForm : Form
4343
{
4444
#region constants
4545

46-
public const string c_toolVer = "3.3.3.0";
46+
public const string c_toolVer = "3.15.2.0";
4747

4848
public const float c_FoV = 65f;
4949
public const float c_FoV_lowerLimit = 65f;
@@ -1056,8 +1056,8 @@ private void UpdateResponse(IAsyncResult result)
10561056
{
10571057
this.Invoke(new Action(() =>
10581058
{
1059-
DialogResult vacResult = MessageBox.Show(this, "It has been reported that this FoV Changer may cause Valve Anti-Cheat to trigger a ban. " +
1060-
"For any information, please check MapModNews.com\n\n" +
1059+
DialogResult vacResult = MessageBox.Show(this, "It has been reported that this FoV Changer may cause anti-cheat software to trigger a ban. " +
1060+
"For any information, please check github.com/AgentRev/CoD-FoV-Changers\n\n" +
10611061
"Click 'OK' to exit the program, or 'Cancel' to continue using it AT YOUR OWN RISK.",
10621062
"Detection alert", MessageBoxButtons.OKCancel, MessageBoxIcon.Error);
10631063

@@ -1249,7 +1249,7 @@ private void chkUpdate_CheckedChanged(object sender, EventArgs e)
12491249

12501250
private void lblLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
12511251
{
1252-
Process.Start("http://www.mapmodnews.com/");
1252+
Process.Start("https://github.com/AgentRev/CoD-FoV-Changers");
12531253
}
12541254

12551255
private void chkHotkeys_CheckedChanged(object sender, EventArgs e)

src/Ghosts_fov_changer/Ghosts_fov_changer/MainForm.resx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -112,33 +112,33 @@
112112
<value>2.0</value>
113113
</resheader>
114114
<resheader name="reader">
115-
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
115+
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116116
</resheader>
117117
<resheader name="writer">
118-
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
118+
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119119
</resheader>
120-
<metadata name="TimerHoldKey.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
120+
<metadata name="TimerHoldKey.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
121121
<value>17, 17</value>
122122
</metadata>
123-
<metadata name="TimerUpdate.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
123+
<metadata name="TimerUpdate.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
124124
<value>145, 17</value>
125125
</metadata>
126-
<metadata name="TimerCheck.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
126+
<metadata name="TimerCheck.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
127127
<value>267, 17</value>
128128
</metadata>
129-
<metadata name="TimerVerif.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
129+
<metadata name="TimerVerif.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
130130
<value>382, 17</value>
131131
</metadata>
132-
<metadata name="ToolTipReset.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
132+
<metadata name="ToolTipReset.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
133133
<value>710, 17</value>
134134
</metadata>
135-
<metadata name="TimerHTTP.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
135+
<metadata name="TimerHTTP.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
136136
<value>490, 17</value>
137137
</metadata>
138-
<metadata name="TimerBlink.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
138+
<metadata name="TimerBlink.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
139139
<value>601, 17</value>
140140
</metadata>
141-
<assembly alias="System.Drawing" name="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
141+
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
142142
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
143143
<value>
144144
AAABAAIAICAAAAEAIACoEAAAJgAAABAQAAABACAAaAQAAM4QAAAoAAAAIAAAAEAAAAABACAAAAAAAIAQ

src/Ghosts_fov_changer/Ghosts_fov_changer/Properties/Resources.Designer.cs

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Ghosts_fov_changer/Ghosts_fov_changer/Properties/Settings.Designer.cs

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)