<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Ghostwire: Tokyo Trainer	</title>
	<atom:link href="https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/feed/" rel="self" type="application/rss+xml" />
	<link>https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ghostwire-tokyo-trainer</link>
	<description>PC Game Cheats and Mods</description>
	<lastBuildDate>Thu, 28 Dec 2023 16:33:21 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>
		By: Alex Wan		</title>
		<link>https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/comment-page-1/#comment-52181</link>

		<dc:creator><![CDATA[Alex Wan]]></dc:creator>
		<pubDate>Thu, 28 Dec 2023 16:33:21 +0000</pubDate>
		<guid isPermaLink="false">https://flingtrainer.com/?p=25940#comment-52181</guid>

					<description><![CDATA[Hello everyone. Hi Fling. I am a newbie and I have a question on changing the memory of any game. Kind coders, please help me as a beginner. In C#, I want to write a function &quot;One Shot Kill&quot;. In the nuget for memory editing I use&#160;&quot;Memory.dll.x64&quot;

Here&#039;s a script from the Cheat Engine:
 [spoiler title=&quot;Cheat Engine script&quot;] 
&lt;blockquote&gt;&lt;em&gt;[ENABLE]&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;alloc(newmem,2048,&quot;GameAssembly.dll&quot;+13AC7CF)&#160;&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;label(returnhere)&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;label(originalcode)&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;label(exit)&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;newmem:&#160;&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;cmp [rbx+40],0&#160;&#160;&#160;&#060;-- enemy&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;jne originalcode&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;mov [rbx+18],0&#160;&#160;&#160;&#060;-- me&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;jmp exit&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;originalcode:&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;movss [rbx+18],xmm0&#160;&#160;&#060;-- me&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;exit:&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;jmp returnhere&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;&quot;GameAssembly.dll&quot;+13AC7CF:&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;jmp newmem&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;returnhere:&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;[DISABLE]&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;dealloc(newmem)&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;&quot;GameAssembly.dll&quot;+13AC7CF:&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;movss [rbx+18],xmm0&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;//Alt: db F3 0F 11 43 18&lt;/em&gt;&lt;/blockquote&gt; [/spoiler] 

When I use the script in the Cheat Engine the bytes: &lt;em&gt;F3 0F 11 43 18&lt;/em&gt; change to this value: &lt;em&gt;E9 2C 38 C4 FE&lt;/em&gt; and it works fine.

In C#, I write the code:
 [spoiler title=&quot;C# code&quot;] 
&lt;blockquote&gt;&lt;em&gt;// Infinite HP + One Shot Kill&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;if (Button1.Checked)&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;{&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;n.WriteMemory(&quot;GameAssembly.dll+13AC7CF&quot;, &quot;bytes&quot;, &quot;E9 2C 38 C4 FE&quot;);&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;}&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;else&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;{&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;n.WriteMemory(&quot;GameAssembly.dll+13AC7CF&quot;, &quot;bytes&quot;, &quot;F3 0F 11 43 18&quot;);&lt;/em&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;em&gt;}&lt;/em&gt;&lt;/blockquote&gt; [/spoiler] 

But after I turn on the cheat, created in C#, the game crashes. And it happens in any game in which I do the same thing. But if I change these bytes &lt;em&gt;F3 0F 11 43 18&lt;/em&gt; to &lt;em&gt;90 90 90 90 90&lt;/em&gt; then the game will not crash. But the function won&#039;t work well, not like in the cheat engine. I&#039;ve tried to change different values from &quot;float&quot; to &quot;int&quot; but it didn&#039;t work. The game keeps crashing. What am I doing wrong? Help me, please.]]></description>
			<content:encoded><![CDATA[<p>Hello everyone. Hi Fling. I am a newbie and I have a question on changing the memory of any game. Kind coders, please help me as a beginner. In C#, I want to write a function &#8220;One Shot Kill&#8221;. In the nuget for memory editing I use&nbsp;&#8220;Memory.dll.x64&#8243;</p>
<p>Here&#8217;s a script from the Cheat Engine:<br />
 [spoiler title=&#8221;Cheat Engine script&#8221;] </p>
<blockquote><p><em>[ENABLE]</em></p></p><p><p><em>alloc(newmem,2048,&#8221;GameAssembly.dll&#8221;+13AC7CF)&nbsp;</em></p></p><p><p><em>label(returnhere)</em></p></p><p><p><em>label(originalcode)</em></p></p><p><p><em>label(exit)</em></p></p><p><p></p></p><p><p><em>newmem:&nbsp;</em></p></p><p><p><em>cmp [rbx+40],0&nbsp;&nbsp;&nbsp;&lt;&#8211; enemy</em></p></p><p><p><em>jne originalcode</em></p></p><p><p><em>mov [rbx+18],0&nbsp;&nbsp;&nbsp;&lt;&#8211; me</em></p></p><p><p><em>jmp exit</em></p></p><p><p></p></p><p><p><em>originalcode:</em></p></p><p><p><em>movss [rbx+18],xmm0&nbsp;&nbsp;&lt;&#8211; me</em></p></p><p><p></p></p><p><p><em>exit:</em></p></p><p><p><em>jmp returnhere</em></p></p><p><p></p></p><p><p></p></p><p><p><em>&#8220;GameAssembly.dll&#8221;+13AC7CF:</em></p></p><p><p><em>jmp newmem</em></p></p><p><p><em>returnhere:</em></p></p><p><p></p></p><p><p><em>[DISABLE]</em></p></p><p><p></p></p><p><p><em>dealloc(newmem)</em></p></p><p><p><em>&#8220;GameAssembly.dll&#8221;+13AC7CF:</em></p></p><p><p><em>movss [rbx+18],xmm0</em></p></p><p><p><em>//Alt: db F3 0F 11 43 18</em></p></blockquote>
<p> [/spoiler] </p>
<p>When I use the script in the Cheat Engine the bytes: <em>F3 0F 11 43 18</em> change to this value: <em>E9 2C 38 C4 FE</em> and it works fine.</p>
<p>In C#, I write the code:<br />
 [spoiler title=&#8221;C# code&#8221;] </p>
<blockquote><p><em>// Infinite HP + One Shot Kill</em></p></p><p><p></p></p><p><p><em>if (Button1.Checked)</em></p></p><p><p><em>{</em></p></p><p><p><em>n.WriteMemory(&#8220;GameAssembly.dll+13AC7CF&#8221;, &#8220;bytes&#8221;, &#8220;E9 2C 38 C4 FE&#8221;);</em></p></p><p><p><em>}</em></p></p><p><p><em>else</em></p></p><p><p><em>{</em></p></p><p><p><em>n.WriteMemory(&#8220;GameAssembly.dll+13AC7CF&#8221;, &#8220;bytes&#8221;, &#8220;F3 0F 11 43 18&#8221;);</em></p></p><p><p><em>}</em></p></blockquote>
<p> [/spoiler] </p>
<p>But after I turn on the cheat, created in C#, the game crashes. And it happens in any game in which I do the same thing. But if I change these bytes <em>F3 0F 11 43 18</em> to <em>90 90 90 90 90</em> then the game will not crash. But the function won&#8217;t work well, not like in the cheat engine. I&#8217;ve tried to change different values from &#8220;float&#8221; to &#8220;int&#8221; but it didn&#8217;t work. The game keeps crashing. What am I doing wrong? Help me, please.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: RaxeIe		</title>
		<link>https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/comment-page-1/#comment-52152</link>

		<dc:creator><![CDATA[RaxeIe]]></dc:creator>
		<pubDate>Mon, 25 Dec 2023 18:17:57 +0000</pubDate>
		<guid isPermaLink="false">https://flingtrainer.com/?p=25940#comment-52152</guid>

					<description><![CDATA[Epic Games Outer Worlds update please.]]></description>
			<content:encoded><![CDATA[<p>Epic Games Outer Worlds update please.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dedulos		</title>
		<link>https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/comment-page-1/#comment-48848</link>

		<dc:creator><![CDATA[Dedulos]]></dc:creator>
		<pubDate>Fri, 14 Apr 2023 13:14:34 +0000</pubDate>
		<guid isPermaLink="false">https://flingtrainer.com/?p=25940#comment-48848</guid>

					<description><![CDATA[Exp Multiplier 
&lt;span&gt;it didn&#039;t work for me. Is there a correct way to use it or is there a problem?&lt;/span&gt;]]></description>
			<content:encoded><![CDATA[<p>Exp Multiplier<br />
<span>it didn&#8217;t work for me. Is there a correct way to use it or is there a problem?</span></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: BigFCat		</title>
		<link>https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/comment-page-1/#comment-48818</link>

		<dc:creator><![CDATA[BigFCat]]></dc:creator>
		<pubDate>Wed, 12 Apr 2023 12:26:24 +0000</pubDate>
		<guid isPermaLink="false">https://flingtrainer.com/?p=25940#comment-48818</guid>

					<description><![CDATA[Hey mate, please don&#039;t forget this little updates]]></description>
			<content:encoded><![CDATA[<p>Hey mate, please don&#8217;t forget this little updates</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: TujuhEnam		</title>
		<link>https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/comment-page-1/#comment-48809</link>

		<dc:creator><![CDATA[TujuhEnam]]></dc:creator>
		<pubDate>Wed, 12 Apr 2023 02:03:13 +0000</pubDate>
		<guid isPermaLink="false">https://flingtrainer.com/?p=25940#comment-48809</guid>

					<description><![CDATA[Trainer needs update please, also add new cheats such as:

&lt;ul&gt;&lt;li&gt;Ignore Magatama (allows player to unlock skill blocks with zero magatama)&lt;/li&gt;&lt;li&gt;Ignore Skill (allows player to upgrade/learn skills with zero skill point)&lt;/li&gt;&lt;/ul&gt;]]></description>
			<content:encoded><![CDATA[<p>Trainer needs update please, also add new cheats such as:</p>
<ul>
<li>Ignore Magatama (allows player to unlock skill blocks with zero magatama)</li>
<li>Ignore Skill (allows player to upgrade/learn skills with zero skill point)</li>
</ul>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: dodd33		</title>
		<link>https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/comment-page-1/#comment-45700</link>

		<dc:creator><![CDATA[dodd33]]></dc:creator>
		<pubDate>Sun, 25 Sep 2022 21:43:21 +0000</pubDate>
		<guid isPermaLink="false">https://flingtrainer.com/?p=25940#comment-45700</guid>

					<description><![CDATA[Thank you
Love ur work and i love u too :)]]></description>
			<content:encoded><![CDATA[<p>Thank you<br />
Love ur work and i love u too 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: tinbin		</title>
		<link>https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/comment-page-1/#comment-45098</link>

		<dc:creator><![CDATA[tinbin]]></dc:creator>
		<pubDate>Thu, 04 Aug 2022 15:07:16 +0000</pubDate>
		<guid isPermaLink="false">https://flingtrainer.com/?p=25940#comment-45098</guid>

					<description><![CDATA[Ghostwire_Tokyo_(build_01.08.2022)   update   plz]]></description>
			<content:encoded><![CDATA[<p>Ghostwire_Tokyo_(build_01.08.2022)   update   plz</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: clover		</title>
		<link>https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/comment-page-1/#comment-44327</link>

		<dc:creator><![CDATA[clover]]></dc:creator>
		<pubDate>Sat, 21 May 2022 02:35:18 +0000</pubDate>
		<guid isPermaLink="false">https://flingtrainer.com/?p=25940#comment-44327</guid>

					<description><![CDATA[Chapter 4 i got a bug with KKs powers they didn&#039;t work..  i hit the boss on chapter 3 with one hit kill.. many ppl with the same error said that the trainer cause the bug.. i&#039;m about to unistall the game i didn&#039;t find any solution.]]></description>
			<content:encoded><![CDATA[<p>Chapter 4 i got a bug with KKs powers they didn&#8217;t work..  i hit the boss on chapter 3 with one hit kill.. many ppl with the same error said that the trainer cause the bug.. i&#8217;m about to unistall the game i didn&#8217;t find any solution.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: grotesque75		</title>
		<link>https://flingtrainer.com/trainer/ghostwire-tokyo-trainer/comment-page-1/#comment-44291</link>

		<dc:creator><![CDATA[grotesque75]]></dc:creator>
		<pubDate>Sun, 15 May 2022 08:45:06 +0000</pubDate>
		<guid isPermaLink="false">https://flingtrainer.com/?p=25940#comment-44291</guid>

					<description><![CDATA[When I use one hit kill on the boss fight, attack abilities disappeared on the menü. Just like in god of war trainer. You rearranged it and it works now. Could you have a look for this trainer also? Thanks in advance.]]></description>
			<content:encoded><![CDATA[<p>When I use one hit kill on the boss fight, attack abilities disappeared on the menü. Just like in god of war trainer. You rearranged it and it works now. Could you have a look for this trainer also? Thanks in advance.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
