<?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/">
	<channel>
		<title><![CDATA[ - Alle Foren]]></title>
		<link>http://homeofgamehacking.de/</link>
		<description><![CDATA[ - http://homeofgamehacking.de]]></description>
		<pubDate>Wed, 19 Jun 2013 10:03:44 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Far Cry 3 Shared Code (Life)]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1511</link>
			<pubDate>Mon, 17 Jun 2013 15:13:40 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1511</guid>
			<description><![CDATA[Hallo Leute,<br />
<br />
ich hänge wieder einmal =)<br />
<br />
Seit wochen versuche ich den Shared Code für das Leben in FarCry 3 zu destrukturieren um einen Infinite Life Cheat zu erstellen (Pointerscan ergab auch bei 4096 und 2 1/2 stündiger Laufzeit nach dem dritten restart nichts mehr...).<br />
<br />
Nun irgendwie sind meine Ansätze alle falsch. Level 9 in der Tutorial-exe war kein problem aber dass hier lässt mich die Haare raufen.<br />
<br />
Bisherige Versuche waren zum einen mit dem "Dissect Structure" Tool von CE sowie eine an das Spiel angepasste Variante hiervon:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>[enable]<br />
alloc(x,8)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // addess to hold the value to compare (8 bytes not needed,its free anyway)<br />
registersymbol(x)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// not really necessary,only use if u need to create a pointer from this<br />
alloc(n1,2048)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //allocate memory for code cave<br />
alloc(n2,2048)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //allocate memory for code cave<br />
label(r1)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//just for easier coding<br />
label(r2)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//just for easier coding<br />
<br />
n1:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //our code cave (1)<br />
fld dword ptr [eax+10]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//original code<br />
mov [x],eax&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //we are moving the value in edx to the address x<br />
jmp r1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//jump back to main game code<br />
<br />
005892F7:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
jmp n1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//jump to code cave (1)<br />
nop<br />
r1:<br />
<br />
n2:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //our code cave (2)<br />
cmp esi,[x]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //compare esi with [x] to see if player/enemy<br />
mov [esi+10,edx&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//If u need inf.health , u can delete this line<br />
je r2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //If player ,jump to main game code<br />
mov [esi+10],0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//If enemy ,make their health 0&nbsp;&nbsp;<br />
jmp r2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//jump back to main game code<br />
<br />
<br />
004B331F:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
jmp n2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//jump to code cave (2)<br />
nop<br />
r2:<br />
<br />
[disable]<br />
dealloc(x)<br />
dealloc(n1)<br />
dealloc(n2)<br />
<br />
005892F7:<br />
fld dword ptr [edx+00000540]<br />
<br />
004B331F:<br />
mov [esi+00000540],edx</code></div></div>
<br />
<br />
Leider bisher alles ohne Erfolg.<br />
<br />
Nun meine Bitte: falls jemand die Lösung hat, postet es mir doch bitte und erklärt mir doch bitte Step-by-Step welche Schritte nötig waren.<br />
<br />
LG<br />
DarkLevi]]></description>
			<content:encoded><![CDATA[Hallo Leute,<br />
<br />
ich hänge wieder einmal =)<br />
<br />
Seit wochen versuche ich den Shared Code für das Leben in FarCry 3 zu destrukturieren um einen Infinite Life Cheat zu erstellen (Pointerscan ergab auch bei 4096 und 2 1/2 stündiger Laufzeit nach dem dritten restart nichts mehr...).<br />
<br />
Nun irgendwie sind meine Ansätze alle falsch. Level 9 in der Tutorial-exe war kein problem aber dass hier lässt mich die Haare raufen.<br />
<br />
Bisherige Versuche waren zum einen mit dem "Dissect Structure" Tool von CE sowie eine an das Spiel angepasste Variante hiervon:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>[enable]<br />
alloc(x,8)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // addess to hold the value to compare (8 bytes not needed,its free anyway)<br />
registersymbol(x)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// not really necessary,only use if u need to create a pointer from this<br />
alloc(n1,2048)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //allocate memory for code cave<br />
alloc(n2,2048)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //allocate memory for code cave<br />
label(r1)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//just for easier coding<br />
label(r2)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//just for easier coding<br />
<br />
n1:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //our code cave (1)<br />
fld dword ptr [eax+10]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//original code<br />
mov [x],eax&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //we are moving the value in edx to the address x<br />
jmp r1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//jump back to main game code<br />
<br />
005892F7:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
jmp n1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//jump to code cave (1)<br />
nop<br />
r1:<br />
<br />
n2:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //our code cave (2)<br />
cmp esi,[x]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //compare esi with [x] to see if player/enemy<br />
mov [esi+10,edx&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//If u need inf.health , u can delete this line<br />
je r2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //If player ,jump to main game code<br />
mov [esi+10],0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//If enemy ,make their health 0&nbsp;&nbsp;<br />
jmp r2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//jump back to main game code<br />
<br />
<br />
004B331F:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />
jmp n2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//jump to code cave (2)<br />
nop<br />
r2:<br />
<br />
[disable]<br />
dealloc(x)<br />
dealloc(n1)<br />
dealloc(n2)<br />
<br />
005892F7:<br />
fld dword ptr [edx+00000540]<br />
<br />
004B331F:<br />
mov [esi+00000540],edx</code></div></div>
<br />
<br />
Leider bisher alles ohne Erfolg.<br />
<br />
Nun meine Bitte: falls jemand die Lösung hat, postet es mir doch bitte und erklärt mir doch bitte Step-by-Step welche Schritte nötig waren.<br />
<br />
LG<br />
DarkLevi]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[They Bleed Pixels]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1509</link>
			<pubDate>Sat, 15 Jun 2013 18:44:15 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1509</guid>
			<description><![CDATA[<span style="font-weight: bold;">Spielname:</span> - They Bleed Pixels<br />
<span style="font-weight: bold;">Fix:</span> - Steam<br />
<span style="font-weight: bold;">Gewünschte optionen:</span> - Unverwundbar<br />
<span style="font-weight: bold;">Weitere Informationen:</span> - <a href="http://store.steampowered.com/app/211260" target="_blank">Steam</a><br />
<br />
Ich habe bis jetzt immer eine Cheat Table für CheatEngine benutzt. Allerdings funktionert seit dem letzten Update die Unverwundbarkeitsfunktion nicht mehr.<br />
<br />
Hier ist auch nochmal der Link zu dem Thread im CheatEngine Forum: <a href="http://forum.cheatengine.org/viewtopic.php?p=5410729&amp;sid=8871825e91acbb7dd6d2fc07be22c193" target="_blank">CheatEngine Forum</a><br />
<br />
Es wäre echt super, wenn mir jemand weiterhelfen könnte.]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;">Spielname:</span> - They Bleed Pixels<br />
<span style="font-weight: bold;">Fix:</span> - Steam<br />
<span style="font-weight: bold;">Gewünschte optionen:</span> - Unverwundbar<br />
<span style="font-weight: bold;">Weitere Informationen:</span> - <a href="http://store.steampowered.com/app/211260" target="_blank">Steam</a><br />
<br />
Ich habe bis jetzt immer eine Cheat Table für CheatEngine benutzt. Allerdings funktionert seit dem letzten Update die Unverwundbarkeitsfunktion nicht mehr.<br />
<br />
Hier ist auch nochmal der Link zu dem Thread im CheatEngine Forum: <a href="http://forum.cheatengine.org/viewtopic.php?p=5410729&amp;sid=8871825e91acbb7dd6d2fc07be22c193" target="_blank">CheatEngine Forum</a><br />
<br />
Es wäre echt super, wenn mir jemand weiterhelfen könnte.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Restart Funktion]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1508</link>
			<pubDate>Sat, 15 Jun 2013 09:22:53 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1508</guid>
			<description><![CDATA[Hallo zusammen, hätte da mal eine Frage. Gibt es die Möglichkeit in einen Trainer eine neustart Funktion einzubauen so dass er bei tastendruck neu startet?? Grüße DH]]></description>
			<content:encoded><![CDATA[Hallo zusammen, hätte da mal eine Frage. Gibt es die Möglichkeit in einen Trainer eine neustart Funktion einzubauen so dass er bei tastendruck neu startet?? Grüße DH]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Dead Island Riptide]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1506</link>
			<pubDate>Thu, 13 Jun 2013 15:55:00 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1506</guid>
			<description><![CDATA[Hier habe ich mal ein kleinen Trainer gebastelt für das Spiel Dead Island Riptide (Steam Version)<br />
Momentan hat der Trainer nur eine Funktion, das wäre 1.000 Geld geben oder abziehen. Der Trainer ist getestet auf Win7 Home Premium 64 bit und funktioniert.<br />
Und nochmals ein Dankeschön an DNA, Bluespide und sILeNt heLLsCrEAm weil ich da ein kleines Problem hatte.<br />
<br />
Hotkeys:<br />
<br />
F11 = Trainer aktivieren / deaktivieren<br />
NUMPAD1 = 1.000 Geld geben<br />
NUMPAD2 = 1.000 Geld abziehen<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1502" target="_blank">Dead Island Riptide Trainer.rar</a> (Größe: 344,85 KB / Downloads: 17)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1509" target="_blank">Dead Island Riptide Trainer_Update1.rar</a> (Größe: 359,35 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hier habe ich mal ein kleinen Trainer gebastelt für das Spiel Dead Island Riptide (Steam Version)<br />
Momentan hat der Trainer nur eine Funktion, das wäre 1.000 Geld geben oder abziehen. Der Trainer ist getestet auf Win7 Home Premium 64 bit und funktioniert.<br />
Und nochmals ein Dankeschön an DNA, Bluespide und sILeNt heLLsCrEAm weil ich da ein kleines Problem hatte.<br />
<br />
Hotkeys:<br />
<br />
F11 = Trainer aktivieren / deaktivieren<br />
NUMPAD1 = 1.000 Geld geben<br />
NUMPAD2 = 1.000 Geld abziehen<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1502" target="_blank">Dead Island Riptide Trainer.rar</a> (Größe: 344,85 KB / Downloads: 17)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1509" target="_blank">Dead Island Riptide Trainer_Update1.rar</a> (Größe: 359,35 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[VB 2010 - Dead Island Riptide Trainer]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1505</link>
			<pubDate>Mon, 10 Jun 2013 18:56:09 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1505</guid>
			<description><![CDATA[Hallöchen,<br />
<br />
Ich wolte mal ein kleinen Trainer erstellen für das Spiel Dead Island Riptide...<br />
Die Erste Option wäre da bei mir, das Geld ändern zu können.<br />
<br />
bei meinen Beispiel:<br />
<br />
+ 1.000 Money<br />
- 1.000 Money<br />
<br />
Funktionieren tuts eigentlich ganz gut, aber ein Problem habe ich dennoch <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /><br />
Sobald das Spiel neu gestartet wird ändert sich die Prozess Id von der <br />
<br />
"gamedll_x86_rwdi.dll"<br />
<br />
Da aber mein Trainer über Pointer läuft, funktioniert dieser nicht mehr wenn das Spiel neu gestartet wird. Bei anderen Spielen war das nicht so, da ist immer die ID meistens gleich geblieben.<br />
<br />
Was könnte ich tun das der Trainer troz id änderung funktionstüchtig bleibt ?<br />
<br />
<br />
<br />
<br />
MfG.<br />
Struppi]]></description>
			<content:encoded><![CDATA[Hallöchen,<br />
<br />
Ich wolte mal ein kleinen Trainer erstellen für das Spiel Dead Island Riptide...<br />
Die Erste Option wäre da bei mir, das Geld ändern zu können.<br />
<br />
bei meinen Beispiel:<br />
<br />
+ 1.000 Money<br />
- 1.000 Money<br />
<br />
Funktionieren tuts eigentlich ganz gut, aber ein Problem habe ich dennoch <img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" /><br />
Sobald das Spiel neu gestartet wird ändert sich die Prozess Id von der <br />
<br />
"gamedll_x86_rwdi.dll"<br />
<br />
Da aber mein Trainer über Pointer läuft, funktioniert dieser nicht mehr wenn das Spiel neu gestartet wird. Bei anderen Spielen war das nicht so, da ist immer die ID meistens gleich geblieben.<br />
<br />
Was könnte ich tun das der Trainer troz id änderung funktionstüchtig bleibt ?<br />
<br />
<br />
<br />
<br />
MfG.<br />
Struppi]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Color Changer for NFS MW V. 1.5]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1503</link>
			<pubDate>Sat, 08 Jun 2013 18:26:37 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1503</guid>
			<description><![CDATA[Hello guys! I downloaded the HoG trainer for v.1.3 a while back, but now I have upgraded my game to version 1.5 so the trainer doesn't work.<br />
<br />
I have found another one that stops the crash camera which is what I used the trainer for, but I also loved to create colors for the cars with your color changer.<br />
<br />
So I was wondering if someone could make a color changer for version 1.5 thanks!<img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" />]]></description>
			<content:encoded><![CDATA[Hello guys! I downloaded the HoG trainer for v.1.3 a while back, but now I have upgraded my game to version 1.5 so the trainer doesn't work.<br />
<br />
I have found another one that stops the crash camera which is what I used the trainer for, but I also loved to create colors for the cars with your color changer.<br />
<br />
So I was wondering if someone could make a color changer for version 1.5 thanks!<img src="images/smilies/biggrin.gif" style="vertical-align: middle;" border="0" alt="Big Grin" title="Big Grin" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[CE Script bei Tastendruck ausführen]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1502</link>
			<pubDate>Thu, 06 Jun 2013 16:15:23 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1502</guid>
			<description><![CDATA[Hallo Leute,<br />
<br />
ich komme gerade an einem Punkt nicht weiter und hoffe auf eure Hilfe.<br />
Es geht darum ein CheatEngine-AutoAssemble-Script zu schreiben dass wenn aktiviert, eine aktion ausführt wenn eine bestimme Taste gedrückt wird. Genauer:<br />
<br />
Das Geld wird in [ecx+04] gespeichert.<br />
<br />
Nun möchte ich dass wenn bsp: "Q" gedrückt wird, "add [ecx+04],3E8" ausgeführt wird.<br />
<br />
Mein bisheriger Versuchsaufbau:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>[ENABLE]<br />
//code from here to '[DISABLE]' will be used to enable the cheat<br />
alloc(newmem,2048) //2kb should be enough<br />
label(notpressed)<br />
label(returnhere)<br />
label(originalcode)<br />
label(exit)<br />
<br />
newmem: //this is allocated memory, you have read,write,execute access<br />
exit:<br />
pushad<br />
pushfd<br />
<br />
push '0x51'<br />
call GetAsyncKeyState<br />
<br />
shr ax,#15<br />
cmp ax,1<br />
jne notpressed<br />
<br />
add [ecx+04],3E8<br />
<br />
notpressed:<br />
//cleanup<br />
popfd<br />
popad<br />
<br />
originalcode:<br />
dec ebp<br />
pop edx<br />
nop <br />
add [ebx],al<br />
<br />
jmp exit<br />
<br />
"FC3_d3d11.dll":<br />
jmp newmem<br />
returnhere:<br />
<br />
<br />
<br />
 <br />
 <br />
[DISABLE]<br />
//code from here till the end of the code will be used to disable the cheat<br />
dealloc(newmem)<br />
"FC3_d3d11.dll":<br />
dec ebp<br />
pop edx<br />
nop <br />
add [ebx],al<br />
//Alt: db 4D 5A 90 00 03</code></div></div>
<br />
Naja ihr könnt euch sicher schon denken das dass nicht funktioniert <img src="images/smilies/blush.gif" style="vertical-align: middle;" border="0" alt="Blush" title="Blush" /><br />
<br />
Bitte gebt mir doch eine kurze Info wie sowas realisierbar ist.<br />
<br />
ps: ich möchte mir das eeeeeewige pointergesuche ersparen deswegen das irgendwie als code verwirklichen<br />
<br />
Danke<br />
DarkLevi<br />
<br />
EDIT: das Keypress-Framework habe ich von hier: <a href="http://cheatengine.org/keypresstut.php" target="_blank">http://cheatengine.org/keypresstut.php</a>]]></description>
			<content:encoded><![CDATA[Hallo Leute,<br />
<br />
ich komme gerade an einem Punkt nicht weiter und hoffe auf eure Hilfe.<br />
Es geht darum ein CheatEngine-AutoAssemble-Script zu schreiben dass wenn aktiviert, eine aktion ausführt wenn eine bestimme Taste gedrückt wird. Genauer:<br />
<br />
Das Geld wird in [ecx+04] gespeichert.<br />
<br />
Nun möchte ich dass wenn bsp: "Q" gedrückt wird, "add [ecx+04],3E8" ausgeführt wird.<br />
<br />
Mein bisheriger Versuchsaufbau:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>[ENABLE]<br />
//code from here to '[DISABLE]' will be used to enable the cheat<br />
alloc(newmem,2048) //2kb should be enough<br />
label(notpressed)<br />
label(returnhere)<br />
label(originalcode)<br />
label(exit)<br />
<br />
newmem: //this is allocated memory, you have read,write,execute access<br />
exit:<br />
pushad<br />
pushfd<br />
<br />
push '0x51'<br />
call GetAsyncKeyState<br />
<br />
shr ax,#15<br />
cmp ax,1<br />
jne notpressed<br />
<br />
add [ecx+04],3E8<br />
<br />
notpressed:<br />
//cleanup<br />
popfd<br />
popad<br />
<br />
originalcode:<br />
dec ebp<br />
pop edx<br />
nop <br />
add [ebx],al<br />
<br />
jmp exit<br />
<br />
"FC3_d3d11.dll":<br />
jmp newmem<br />
returnhere:<br />
<br />
<br />
<br />
 <br />
 <br />
[DISABLE]<br />
//code from here till the end of the code will be used to disable the cheat<br />
dealloc(newmem)<br />
"FC3_d3d11.dll":<br />
dec ebp<br />
pop edx<br />
nop <br />
add [ebx],al<br />
//Alt: db 4D 5A 90 00 03</code></div></div>
<br />
Naja ihr könnt euch sicher schon denken das dass nicht funktioniert <img src="images/smilies/blush.gif" style="vertical-align: middle;" border="0" alt="Blush" title="Blush" /><br />
<br />
Bitte gebt mir doch eine kurze Info wie sowas realisierbar ist.<br />
<br />
ps: ich möchte mir das eeeeeewige pointergesuche ersparen deswegen das irgendwie als code verwirklichen<br />
<br />
Danke<br />
DarkLevi<br />
<br />
EDIT: das Keypress-Framework habe ich von hier: <a href="http://cheatengine.org/keypresstut.php" target="_blank">http://cheatengine.org/keypresstut.php</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[CodeCave Frage?]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1501</link>
			<pubDate>Wed, 05 Jun 2013 16:30:22 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1501</guid>
			<description><![CDATA[Moinsen,<br />
<br />
dieses Ding von mir, um esi zu speicher lässt das Spiel sofort abstürzen:<br />
<!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/image.gif" border="0" alt=".png" />&nbsp;&nbsp;<a href="attachment.php?aid=1500" target="_blank">1.png</a> (Größe: 5,32 KB / Downloads: 30)
<!-- end: postbit_attachments_attachment --><br />
<br />
Ich hab nicht verstanden wieso, aber nach einigen Stunden hab ich herausgefunden, dass ich den Wert darunter speichern kann also:<br />
<!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/image.gif" border="0" alt=".png" />&nbsp;&nbsp;<a href="attachment.php?aid=1501" target="_blank">2.png</a> (Größe: 5,34 KB / Downloads: 24)
<!-- end: postbit_attachments_attachment --><br />
<br />
Jemand ne Ahnung, oder kann mir erklären, warum das erste nicht funktioniert, aber das zweite schon?<br />
<br />
//Edit: Ok, liegt doch nicht daran, ich hab was falsch gemacht. Wäre auch komisch gewesen. Liegt an dem call Aufruf.<br />
Wenn ich mit der relativenAdd rufe "call 10940000 - E8 E77A3FAF" funktioniert es, aber mit "call dword ptr [10940000] - FF 15 00009410" geht es nicht. Weiß da jemand warum? <img src="images/smilies/blush.gif" style="vertical-align: middle;" border="0" alt="Blush" title="Blush" />]]></description>
			<content:encoded><![CDATA[Moinsen,<br />
<br />
dieses Ding von mir, um esi zu speicher lässt das Spiel sofort abstürzen:<br />
<!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/image.gif" border="0" alt=".png" />&nbsp;&nbsp;<a href="attachment.php?aid=1500" target="_blank">1.png</a> (Größe: 5,32 KB / Downloads: 30)
<!-- end: postbit_attachments_attachment --><br />
<br />
Ich hab nicht verstanden wieso, aber nach einigen Stunden hab ich herausgefunden, dass ich den Wert darunter speichern kann also:<br />
<!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/image.gif" border="0" alt=".png" />&nbsp;&nbsp;<a href="attachment.php?aid=1501" target="_blank">2.png</a> (Größe: 5,34 KB / Downloads: 24)
<!-- end: postbit_attachments_attachment --><br />
<br />
Jemand ne Ahnung, oder kann mir erklären, warum das erste nicht funktioniert, aber das zweite schon?<br />
<br />
//Edit: Ok, liegt doch nicht daran, ich hab was falsch gemacht. Wäre auch komisch gewesen. Liegt an dem call Aufruf.<br />
Wenn ich mit der relativenAdd rufe "call 10940000 - E8 E77A3FAF" funktioniert es, aber mit "call dword ptr [10940000] - FF 15 00009410" geht es nicht. Weiß da jemand warum? <img src="images/smilies/blush.gif" style="vertical-align: middle;" border="0" alt="Blush" title="Blush" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Rescue 2013]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1500</link>
			<pubDate>Wed, 05 Jun 2013 08:04:47 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1500</guid>
			<description><![CDATA[<span style="font-weight: bold;">Gamename:</span> Rescue 2013 Everyday Heroes<br />
<span style="font-weight: bold;">Version:</span> V1.0<br />
<span style="font-weight: bold;">Fix:</span> Reloaded<br />
<span style="font-weight: bold;">Options:</span> - Money<br />
<span style="font-weight: bold;">Further information:</span> <a href="http://www.rondomedia.de/" target="_blank">http://www.rondomedia.de/</a>]]></description>
			<content:encoded><![CDATA[<span style="font-weight: bold;">Gamename:</span> Rescue 2013 Everyday Heroes<br />
<span style="font-weight: bold;">Version:</span> V1.0<br />
<span style="font-weight: bold;">Fix:</span> Reloaded<br />
<span style="font-weight: bold;">Options:</span> - Money<br />
<span style="font-weight: bold;">Further information:</span> <a href="http://www.rondomedia.de/" target="_blank">http://www.rondomedia.de/</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Text allignment in readme panel of trainers are not correct]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1499</link>
			<pubDate>Tue, 04 Jun 2013 23:40:52 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1499</guid>
			<description><![CDATA[Hi,<br />
I am using hog trainers for a long time but Text alignment in read me panel of trainers are not correct.please see attachment<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/image.gif" border="0" alt=".jpg" />&nbsp;&nbsp;<a href="attachment.php?aid=1496" target="_blank">2.jpg</a> (Größe: 26,72 KB / Downloads: 20)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hi,<br />
I am using hog trainers for a long time but Text alignment in read me panel of trainers are not correct.please see attachment<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/image.gif" border="0" alt=".jpg" />&nbsp;&nbsp;<a href="attachment.php?aid=1496" target="_blank">2.jpg</a> (Größe: 26,72 KB / Downloads: 20)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Resident Evil Revelations Trainer +2 *Update*]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1498</link>
			<pubDate>Fri, 31 May 2013 00:24:49 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1498</guid>
			<description><![CDATA[HotKeys<br />
<br />
F11 = Trainer On/Off<br />
NUMPAD2 = Unendlich Munition<br />
NUMPAD3 = + 100 Punkte<br />
NUMPAD4 = - 100 Punkte<br />
<br />
<br />
Punkte hinzufügen oder abziehen ist für den Shop vom Raubzug Modus.<br />
<br />
Link aktualisiert.<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/zip.gif" border="0" alt=".zip" />&nbsp;&nbsp;<a href="attachment.php?aid=1492" target="_blank">ResidentEvilRevelationsTrainer.zip</a> (Größe: 554,49 KB / Downloads: 16)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1495" target="_blank">ResidentEvilRevelationsTrainer_UPDATE1.rar</a> (Größe: 237,56 KB / Downloads: 12)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[HotKeys<br />
<br />
F11 = Trainer On/Off<br />
NUMPAD2 = Unendlich Munition<br />
NUMPAD3 = + 100 Punkte<br />
NUMPAD4 = - 100 Punkte<br />
<br />
<br />
Punkte hinzufügen oder abziehen ist für den Shop vom Raubzug Modus.<br />
<br />
Link aktualisiert.<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/zip.gif" border="0" alt=".zip" />&nbsp;&nbsp;<a href="attachment.php?aid=1492" target="_blank">ResidentEvilRevelationsTrainer.zip</a> (Größe: 554,49 KB / Downloads: 16)
<!-- end: postbit_attachments_attachment --><br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1495" target="_blank">ResidentEvilRevelationsTrainer_UPDATE1.rar</a> (Größe: 237,56 KB / Downloads: 12)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[p0rT]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1497</link>
			<pubDate>Thu, 30 May 2013 10:15:28 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1497</guid>
			<description><![CDATA[Tag, bin neu hier <img src="images/smilies/tongue.gif" style="vertical-align: middle;" border="0" alt="Tongue" title="Tongue" /><br />
<br />
Viel werde ich nicht schreiben nur das Wichtigste.<br />
<br />
Ich hab schon mehrmals versucht eine Programmier Sprache zu lernen aber immer wieder abgebrochen, weil ich nicht genau wusste was ich eigentlich schreiben möchte.<br />
<br />
Was mir aber nun klar ist!<br />
<br />
-Gamehacking<br />
-Bots <br />
(Chat Bots, Internet Bots die z.B. auf eine Seite gehen und etwas anklicken, ohne Browser)<br />
<br />
Wird wahrscheinlich eine Weile dauern aber was solls!]]></description>
			<content:encoded><![CDATA[Tag, bin neu hier <img src="images/smilies/tongue.gif" style="vertical-align: middle;" border="0" alt="Tongue" title="Tongue" /><br />
<br />
Viel werde ich nicht schreiben nur das Wichtigste.<br />
<br />
Ich hab schon mehrmals versucht eine Programmier Sprache zu lernen aber immer wieder abgebrochen, weil ich nicht genau wusste was ich eigentlich schreiben möchte.<br />
<br />
Was mir aber nun klar ist!<br />
<br />
-Gamehacking<br />
-Bots <br />
(Chat Bots, Internet Bots die z.B. auf eine Seite gehen und etwas anklicken, ohne Browser)<br />
<br />
Wird wahrscheinlich eine Weile dauern aber was solls!]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Delphi Einstiegsfragen (Entwicklungsumgebung)]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1496</link>
			<pubDate>Thu, 30 May 2013 10:07:21 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1496</guid>
			<description><![CDATA[Tag,<br />
Ich wollte nun mit einer Programmier Sprache beginnen und hab mich für <span style="color: #32CD32;">Delphi </span>entschieden.<br />
<br />
Zuerst wollte ich <span style="color: #32CD32;">C#</span> nehmen aber hab dann gehört das Delphi einfacher ist und wenn ich das erstmal verstanden habe, kann ich leichter andere Sprachen lernen.<br />
<br />
So nun zu meinen fragen.<br />
<br />
<span style="color: #32CD32;">1. Die Entwicklungsumgebung</span><br />
-Gibt es eine kostenlose?<br />
-Welche Entwicklungsumgebung dominiert (Egal ob kostenlos oder kostenpflichtig)<br />
-Was ist eurer Meinung nach eine gute Entwicklungsumgebung<br />
<br />
<span style="color: #32CD32;">2. Einstieg</span><br />
-Womit würdet ihr lernen ein Buch oder eher Tutorials<br />
-Was könnt ihr empfehlen<br />
<br />
3.Lern Reihenfolge<br />
-Ich möchte Gamehacking betreiben und später auch Bots schreiben<br />
-Sollte ich zuerst die Grundlagen lernen und dann die Tuts zu CE usw anschauen<br />
-Alles in einem in welcher Reihenfolge sollte ich lernen.<br />
<br />
Ich wollte ja mit einem Buch lernen und wenn etwas schwierig wird, dann nach Videos und Tutorials suchen damit ichs auch verstehe.<br />
<br />
<span style="color: #32CD32;">Aber vor allem interessiert mich gerade die Entwicklungsumgebung</span><br />
<span style="color: #32CD32;">Ich habe Win 7 32 Bit.</span>]]></description>
			<content:encoded><![CDATA[Tag,<br />
Ich wollte nun mit einer Programmier Sprache beginnen und hab mich für <span style="color: #32CD32;">Delphi </span>entschieden.<br />
<br />
Zuerst wollte ich <span style="color: #32CD32;">C#</span> nehmen aber hab dann gehört das Delphi einfacher ist und wenn ich das erstmal verstanden habe, kann ich leichter andere Sprachen lernen.<br />
<br />
So nun zu meinen fragen.<br />
<br />
<span style="color: #32CD32;">1. Die Entwicklungsumgebung</span><br />
-Gibt es eine kostenlose?<br />
-Welche Entwicklungsumgebung dominiert (Egal ob kostenlos oder kostenpflichtig)<br />
-Was ist eurer Meinung nach eine gute Entwicklungsumgebung<br />
<br />
<span style="color: #32CD32;">2. Einstieg</span><br />
-Womit würdet ihr lernen ein Buch oder eher Tutorials<br />
-Was könnt ihr empfehlen<br />
<br />
3.Lern Reihenfolge<br />
-Ich möchte Gamehacking betreiben und später auch Bots schreiben<br />
-Sollte ich zuerst die Grundlagen lernen und dann die Tuts zu CE usw anschauen<br />
-Alles in einem in welcher Reihenfolge sollte ich lernen.<br />
<br />
Ich wollte ja mit einem Buch lernen und wenn etwas schwierig wird, dann nach Videos und Tutorials suchen damit ichs auch verstehe.<br />
<br />
<span style="color: #32CD32;">Aber vor allem interessiert mich gerade die Entwicklungsumgebung</span><br />
<span style="color: #32CD32;">Ich habe Win 7 32 Bit.</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Grid 2 v1.0.82.5097 +3]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1495</link>
			<pubDate>Wed, 29 May 2013 00:24:08 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1495</guid>
			<description><![CDATA[Hallo zusammen,<br />
<br />
Ich hoffe mal ich bin hier richtig und mach auch alles richtig.<br />
Hab mir das neue Grid 2 geholt und gedacht ich mach mal nen kleinen Trainer dazu.<br />
Da ich vorher nur Trainer mit CE erstellt hab, ist das hier mein erster Trainer in ... VB...<br />
<br />
Hab seit längerer Zeit iPhone/iPad-Spiele gehackt, mich aber nie wirklich in PC-Spiele eingelesen.<br />
<br />
Wenig spektakuläres Aussehen, aber funktioniert <img src="images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" /><br />
<br />
<img src="http://img824.imageshack.us/img824/4954/grid2u.png" border="0" alt="[Bild: grid2u.png]" /><br />
<br />
Features:<br />
F1 - Reset Retrys<br />
F2 - Unlimited Retrys<br />
F3 - Max Overtake Score (Overtake Once = 999.999 Score / Bekommt jeder, aber man gewinnt trotzdem <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /> )<br />
<br />
Hoffe das ich die Richtlinien einhalte <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
Greetz,<br />
Blizzard<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1487" target="_blank">Grid 2 Trainer.rar</a> (Größe: 59,03 KB / Downloads: 33)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hallo zusammen,<br />
<br />
Ich hoffe mal ich bin hier richtig und mach auch alles richtig.<br />
Hab mir das neue Grid 2 geholt und gedacht ich mach mal nen kleinen Trainer dazu.<br />
Da ich vorher nur Trainer mit CE erstellt hab, ist das hier mein erster Trainer in ... VB...<br />
<br />
Hab seit längerer Zeit iPhone/iPad-Spiele gehackt, mich aber nie wirklich in PC-Spiele eingelesen.<br />
<br />
Wenig spektakuläres Aussehen, aber funktioniert <img src="images/smilies/wink.gif" style="vertical-align: middle;" border="0" alt="Wink" title="Wink" /><br />
<br />
<img src="http://img824.imageshack.us/img824/4954/grid2u.png" border="0" alt="[Bild: grid2u.png]" /><br />
<br />
Features:<br />
F1 - Reset Retrys<br />
F2 - Unlimited Retrys<br />
F3 - Max Overtake Score (Overtake Once = 999.999 Score / Bekommt jeder, aber man gewinnt trotzdem <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /> )<br />
<br />
Hoffe das ich die Richtlinien einhalte <img src="images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
Greetz,<br />
Blizzard<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1487" target="_blank">Grid 2 Trainer.rar</a> (Größe: 59,03 KB / Downloads: 33)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Dead Island Developer Menu Loader]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1494</link>
			<pubDate>Tue, 28 May 2013 16:32:56 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1494</guid>
			<description><![CDATA[Hier mal ein Tool zum Spiel Dead Island.<br />
Mit diesem Tool (Patch) könnt ihr das In-Game-Developer-Menü freischalten.<br />
Im Spiel könnt ihr mit der Taste [ESC] das Menü aufrufen. Und am unteren Bildschirmrand befindet sich das Developer-Menü.<br />
Der Loader ist nur für mit der Game of the Year Edition von Prophet getestet.<br />
<br />
NFO...<br />
<div class="spoiler"><div class="smallfont"><input class="button" value="Show NFO" style="margin: 0px; padding: 0px; width: 85px; font-size: 10px;" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';this.innerText = ''; this.value = 'Hide NFO'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show NFO'; }" type="button">  </div>  <div class="menu" style="background-color:white;width:900px">  <div style="display: none;">
<pre style="line-height:8px";>
                   ┌────────────────────────────────────────┐<br />
                   │                                        │<br />
                   │   _______    ______________________    │<br />
                   │  /      /   /                      \   │<br />
                   │ /      /   /                        \  │<br />
                   │/      /   /   ____    ____    ______ \ │<br />
                          /   /   /       /   /   /  /  /  \│<br />
                         /   /   /       /   /   /  /  /<br />
                        /   /   /──     /───/   /  /  /<br />
                       /   /   /       /   /   /     /<br />
                   \__/   /___/____ __/   /___/     /______/<br />
<br />
                 ██████████   ██████████                   ██████████████████<br />
                █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░                  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
               ████▓▓████░  ████▓▓████░      ███░        █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
                 █▓▓█▒▒▒░     █▓▓█▒▒▒░   █████▓██░      █▓▓▓█████████████▓▓▓█░<br />
                █▓▓█▒░       █▓▓█▒░  █████▓▓▓▓▓▓███    █▓▓▓█▒▒░░░░░░░░░▒▀█▓▓█░<br />
               █▓▓███████████▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒░            ▀███<br />
              █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               ▀<br />
             █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒▒░░█▓▓▓█▒░  █▓▓▓█▒░      ▄▄▄▄▄▄▄▄▄▄▄▄<br />
            █▓▓███████████▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░       █▒▒░░░▒█████<br />
           █▓▓█▒▒░░   ░░█▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               █▓▓▓█<br />
          █▓▓█▒░       █▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓████████████████████▓▓▓█<br />
      ████▓▓████   ████▓▓████ ████▓▓▓▓▓▓████▒░  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒<br />
     █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░ ░▒▒██▓█████▒▒░   █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░<br />
    ██████████░  ██████████░    ░▒███▒▒▒░     ████████████████████████████▒░<br />
     ║▒▒▒▒▒▒▒░    ▒▒▒▒▒▒▒▒░        ░           ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒║░░<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘ The Team from HomeofGamehacking proudly presents └──┐ ║  ║<br />
     ╠══╬─┤                                                        ├─╬══╣<br />
     ║  ║ └──┐    Dead Island v1.3.0 - Developer Menu Loader    ┌──┘ ║  ║<br />
     ║  ╚═══╗└────────────────                                ──┘╔═══╝  ║<br />
     ║      ╚════════════════════════════════════════════════════╝      ║<br />
     ║                                                                  ║<br />
     ║                  ──────────────────────┐                         ║<br />
     ╚═══───@─────────────────┐ Trainer Notes └──────────────────@───═══╝<br />
            │                 └──────────────────────            │<br />
      ┌─────┴───────────                             ────────────┴─────┐<br />
      │ Game Version:...........v1.3.0  Trained by:..sILeNt heLLsCrEAm │<br />
      │                                                                │<br />
      │ Release:...............Prophet  Tested on:...........Win 7 x64 │<br />
      │                                                                │<br />
      │ Chiptune:.............No Music  Date:...............05/28/2013 │<br />
      │                                                                │<br />
      │ MD5 Hash (Loader.exe):........3153B51E2C89F3530C009BD3461F937B │<br />
      │                                                                │<br />
      │             Trainer Design by:...sILeNt heLLsCrEAm             │<br />
      └─────@────────────────────────────────────────────────────@─────┘<br />
            │                                                    │<br />
            │           ────────────────────────┐                │<br />
     ╔═══───┴───────────────┐ Available Options └────────────────┴───═══╗<br />
     ║                      └────────────────────────                   ║<br />
     ║      ┌───────────────┐                   ┌────────────────┐      ║<br />
     ╠═══───┤    Hotkeys    │                   │    Funktion    ├───═══╣<br />
     ║      @────═══════────┘ ───┐         ┌─── └────════════────@      ║<br />
     ║   ┌──┴────────────────────┘         └─────────────────────┴──┐   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐ Additional Notes  └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │               ---&gt;&gt;&gt; Virus Warnings &lt;&lt;&lt;---               │   ║<br />
     ║   │               ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀               │   ║<br />
     ║   │        First of all... I can't handle all possible       │   ║<br />
     ║   │        antivirus programs so far out there.              │   ║<br />
     ║   │        Some antivirus solution detects always a virus    │   ║<br />
     ║   │        in my trainers. All of my trainers are packed     │   ║<br />
     ║   │        and/or encrypted. On "www.virustotal.com" you can │   ║<br />
     ║   │        see that some scanners report it as xxx Packed.   │   ║<br />
     ║   │        The best results i see with "VirusBuster".        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │        Simply copy the "di_devmenuv130.exe" in the       │   ║<br />
     ║   │        same folder where the file "DeadIslandGame.exe"   │   ║<br />
     ║   │        is stored. To enable the developer menu its       │   ║<br />
     ║   │        needed that you start the game from this loader.  │   ║<br />
     ║   │        Run the file "di_devmenuv130.exe" and click the   │   ║<br />
     ║   │        button "Start Game". The game will be started     │   ║<br />
     ║   │        and the loader will do the rest. After that the   │   ║<br />
     ║   │        loader will close itself.                         │   ║<br />
     ║   │        Now when you're ingame press the [ESC] Key to     │   ║<br />
     ║   │        show the menu. At the bottom you'll see the       │   ║<br />
     ║   │        developer menu... Thats it...                     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        hAVe pHuN                                         │   ║<br />
     ║   │        sILeNt heLLsCrEAm                                 │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐    Final Words    └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │    ---&gt; We are currently looking for experienced &lt;---    │   ║<br />
     ║   │         - trainer makers                                 │   ║<br />
     ║   │         - nfo makers                                     │   ║<br />
     ║   │         - gfx'ers                                        │   ║<br />
     ║   │         - HTML and/or PHP programmers                    │   ║<br />
     ║   │         - chiptuners                                     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     when you think you are able to support us in any     │   ║<br />
     ║   │              other way... so let us know...              │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                    ╔═══ ───────────────┐ ═══╗                    ║<br />
     ╠═══───@─────────────┼────┐ grEEtZ / thx └────┼─────────────@───═══╣<br />
     ║      │             ╚═══ └─────────────── ═══╝             │      ║<br />
     ║   ┌──┴─────────────────┐                ┌─────────────────┴──┐   ║<br />
     ║   │                ────┘                └────                │   ║<br />
     ║   │   DNA, fr33k, Acubra, maluc, dr.oLLe, FLiNG, dEViATED,   │   ║<br />
     ║   │               d!zzler, Psych, XeonByte...                │   ║<br />
     ║   │        and the whole German Gamehacking Community        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │           Join us at <a href="http://www.homeofgamehacking.de" target="_blank">http://www.homeofgamehacking.de</a>     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │▓▓▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒░░░░░░░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒▓▓▓▓▓▓▓▓▓▓│   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     A very special thanks fly out to Magic_h2001...      │   ║<br />
     ║   │               Thanks for your *.V2M Player               │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘         NFO created by sILeNt heLLsCrEAm         └──┐ ║  ║<br />
     ╚══╬─┤                                                        ├─╬══╝<br />
        ║ └──┐              Last Update... 11/2012              ┌──┘ ║<br />
        ╚═══╗└────────────────                                ──┘╔═══╝<br />
            ╚════════════════════════════════════════════════════╝<br />
</pre>
 </div>
 </div>
 </div>
<br />
Bei Fragen, Wünsche, Anregungen...<br />
<a href="http://homeofgamehacking.de/showthread.php?tid=1493" target="_blank"><span style="font-weight: bold;">[Diskussionsthread]</span> - Dead Island Developer Menu Loader</a><br />
<br />
grEEtZ sILeNt heLLsCrEAm<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1476" target="_blank">di_devmenuv130.rar</a> (Größe: 686,37 KB / Downloads: 33)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hier mal ein Tool zum Spiel Dead Island.<br />
Mit diesem Tool (Patch) könnt ihr das In-Game-Developer-Menü freischalten.<br />
Im Spiel könnt ihr mit der Taste [ESC] das Menü aufrufen. Und am unteren Bildschirmrand befindet sich das Developer-Menü.<br />
Der Loader ist nur für mit der Game of the Year Edition von Prophet getestet.<br />
<br />
NFO...<br />
<div class="spoiler"><div class="smallfont"><input class="button" value="Show NFO" style="margin: 0px; padding: 0px; width: 85px; font-size: 10px;" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';this.innerText = ''; this.value = 'Hide NFO'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show NFO'; }" type="button">  </div>  <div class="menu" style="background-color:white;width:900px">  <div style="display: none;">
<pre style="line-height:8px";>
                   ┌────────────────────────────────────────┐<br />
                   │                                        │<br />
                   │   _______    ______________________    │<br />
                   │  /      /   /                      \   │<br />
                   │ /      /   /                        \  │<br />
                   │/      /   /   ____    ____    ______ \ │<br />
                          /   /   /       /   /   /  /  /  \│<br />
                         /   /   /       /   /   /  /  /<br />
                        /   /   /──     /───/   /  /  /<br />
                       /   /   /       /   /   /     /<br />
                   \__/   /___/____ __/   /___/     /______/<br />
<br />
                 ██████████   ██████████                   ██████████████████<br />
                █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░                  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
               ████▓▓████░  ████▓▓████░      ███░        █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
                 █▓▓█▒▒▒░     █▓▓█▒▒▒░   █████▓██░      █▓▓▓█████████████▓▓▓█░<br />
                █▓▓█▒░       █▓▓█▒░  █████▓▓▓▓▓▓███    █▓▓▓█▒▒░░░░░░░░░▒▀█▓▓█░<br />
               █▓▓███████████▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒░            ▀███<br />
              █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               ▀<br />
             █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒▒░░█▓▓▓█▒░  █▓▓▓█▒░      ▄▄▄▄▄▄▄▄▄▄▄▄<br />
            █▓▓███████████▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░       █▒▒░░░▒█████<br />
           █▓▓█▒▒░░   ░░█▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               █▓▓▓█<br />
          █▓▓█▒░       █▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓████████████████████▓▓▓█<br />
      ████▓▓████   ████▓▓████ ████▓▓▓▓▓▓████▒░  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒<br />
     █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░ ░▒▒██▓█████▒▒░   █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░<br />
    ██████████░  ██████████░    ░▒███▒▒▒░     ████████████████████████████▒░<br />
     ║▒▒▒▒▒▒▒░    ▒▒▒▒▒▒▒▒░        ░           ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒║░░<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘ The Team from HomeofGamehacking proudly presents └──┐ ║  ║<br />
     ╠══╬─┤                                                        ├─╬══╣<br />
     ║  ║ └──┐    Dead Island v1.3.0 - Developer Menu Loader    ┌──┘ ║  ║<br />
     ║  ╚═══╗└────────────────                                ──┘╔═══╝  ║<br />
     ║      ╚════════════════════════════════════════════════════╝      ║<br />
     ║                                                                  ║<br />
     ║                  ──────────────────────┐                         ║<br />
     ╚═══───@─────────────────┐ Trainer Notes └──────────────────@───═══╝<br />
            │                 └──────────────────────            │<br />
      ┌─────┴───────────                             ────────────┴─────┐<br />
      │ Game Version:...........v1.3.0  Trained by:..sILeNt heLLsCrEAm │<br />
      │                                                                │<br />
      │ Release:...............Prophet  Tested on:...........Win 7 x64 │<br />
      │                                                                │<br />
      │ Chiptune:.............No Music  Date:...............05/28/2013 │<br />
      │                                                                │<br />
      │ MD5 Hash (Loader.exe):........3153B51E2C89F3530C009BD3461F937B │<br />
      │                                                                │<br />
      │             Trainer Design by:...sILeNt heLLsCrEAm             │<br />
      └─────@────────────────────────────────────────────────────@─────┘<br />
            │                                                    │<br />
            │           ────────────────────────┐                │<br />
     ╔═══───┴───────────────┐ Available Options └────────────────┴───═══╗<br />
     ║                      └────────────────────────                   ║<br />
     ║      ┌───────────────┐                   ┌────────────────┐      ║<br />
     ╠═══───┤    Hotkeys    │                   │    Funktion    ├───═══╣<br />
     ║      @────═══════────┘ ───┐         ┌─── └────════════────@      ║<br />
     ║   ┌──┴────────────────────┘         └─────────────────────┴──┐   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐ Additional Notes  └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │               ---&gt;&gt;&gt; Virus Warnings &lt;&lt;&lt;---               │   ║<br />
     ║   │               ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀               │   ║<br />
     ║   │        First of all... I can't handle all possible       │   ║<br />
     ║   │        antivirus programs so far out there.              │   ║<br />
     ║   │        Some antivirus solution detects always a virus    │   ║<br />
     ║   │        in my trainers. All of my trainers are packed     │   ║<br />
     ║   │        and/or encrypted. On "www.virustotal.com" you can │   ║<br />
     ║   │        see that some scanners report it as xxx Packed.   │   ║<br />
     ║   │        The best results i see with "VirusBuster".        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │        Simply copy the "di_devmenuv130.exe" in the       │   ║<br />
     ║   │        same folder where the file "DeadIslandGame.exe"   │   ║<br />
     ║   │        is stored. To enable the developer menu its       │   ║<br />
     ║   │        needed that you start the game from this loader.  │   ║<br />
     ║   │        Run the file "di_devmenuv130.exe" and click the   │   ║<br />
     ║   │        button "Start Game". The game will be started     │   ║<br />
     ║   │        and the loader will do the rest. After that the   │   ║<br />
     ║   │        loader will close itself.                         │   ║<br />
     ║   │        Now when you're ingame press the [ESC] Key to     │   ║<br />
     ║   │        show the menu. At the bottom you'll see the       │   ║<br />
     ║   │        developer menu... Thats it...                     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        hAVe pHuN                                         │   ║<br />
     ║   │        sILeNt heLLsCrEAm                                 │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐    Final Words    └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │    ---&gt; We are currently looking for experienced &lt;---    │   ║<br />
     ║   │         - trainer makers                                 │   ║<br />
     ║   │         - nfo makers                                     │   ║<br />
     ║   │         - gfx'ers                                        │   ║<br />
     ║   │         - HTML and/or PHP programmers                    │   ║<br />
     ║   │         - chiptuners                                     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     when you think you are able to support us in any     │   ║<br />
     ║   │              other way... so let us know...              │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                    ╔═══ ───────────────┐ ═══╗                    ║<br />
     ╠═══───@─────────────┼────┐ grEEtZ / thx └────┼─────────────@───═══╣<br />
     ║      │             ╚═══ └─────────────── ═══╝             │      ║<br />
     ║   ┌──┴─────────────────┐                ┌─────────────────┴──┐   ║<br />
     ║   │                ────┘                └────                │   ║<br />
     ║   │   DNA, fr33k, Acubra, maluc, dr.oLLe, FLiNG, dEViATED,   │   ║<br />
     ║   │               d!zzler, Psych, XeonByte...                │   ║<br />
     ║   │        and the whole German Gamehacking Community        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │           Join us at <a href="http://www.homeofgamehacking.de" target="_blank">http://www.homeofgamehacking.de</a>     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │▓▓▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒░░░░░░░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒▓▓▓▓▓▓▓▓▓▓│   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     A very special thanks fly out to Magic_h2001...      │   ║<br />
     ║   │               Thanks for your *.V2M Player               │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘         NFO created by sILeNt heLLsCrEAm         └──┐ ║  ║<br />
     ╚══╬─┤                                                        ├─╬══╝<br />
        ║ └──┐              Last Update... 11/2012              ┌──┘ ║<br />
        ╚═══╗└────────────────                                ──┘╔═══╝<br />
            ╚════════════════════════════════════════════════════╝<br />
</pre>
 </div>
 </div>
 </div>
<br />
Bei Fragen, Wünsche, Anregungen...<br />
<a href="http://homeofgamehacking.de/showthread.php?tid=1493" target="_blank"><span style="font-weight: bold;">[Diskussionsthread]</span> - Dead Island Developer Menu Loader</a><br />
<br />
grEEtZ sILeNt heLLsCrEAm<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1476" target="_blank">di_devmenuv130.rar</a> (Größe: 686,37 KB / Downloads: 33)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Dead Island Developer Menu Loader]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1493</link>
			<pubDate>Tue, 28 May 2013 16:30:38 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1493</guid>
			<description><![CDATA[Diskussionsthread zu <a href="http://homeofgamehacking.de/showthread.php?tid=1494" target="_blank"><span style="font-weight: bold;">Dead Island Developer Menu Loader</span>.</a><br />
Fragen, Anregungen, Kritik und Probleme bitte hier rein.]]></description>
			<content:encoded><![CDATA[Diskussionsthread zu <a href="http://homeofgamehacking.de/showthread.php?tid=1494" target="_blank"><span style="font-weight: bold;">Dead Island Developer Menu Loader</span>.</a><br />
Fragen, Anregungen, Kritik und Probleme bitte hier rein.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Sniper: Ghost Warrior - Developer Menu Loader]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1492</link>
			<pubDate>Tue, 28 May 2013 15:32:07 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1492</guid>
			<description><![CDATA[Hier mal ein Tool zum Spiel Sniper - Ghost Warrior.<br />
Mit diesem Tool (Loader) könnt ihr das In-Game-Developer-Menü freischalten.<br />
Im Spiel könnt ihr mit der Taste [ESC] das Menü aufrufen. Und am unteren linken Bildschirmrand befindet sich das Developer-Menü.<br />
Die Version kann im Loader selbst noch gewählt werden.<br />
<br />
Alles weitere dazu in der NFO.<br />
<br />
Screenshot...<br />
<!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/image.gif" border="0" alt=".jpg" />&nbsp;&nbsp;<a href="attachment.php?aid=1475" target="_blank">Screen.jpg</a> (Größe: 228,66 KB / Downloads: 30)
<!-- end: postbit_attachments_attachment --><br />
<br />
NFO...<br />
<div class="spoiler"><div class="smallfont"><input class="button" value="Show NFO" style="margin: 0px; padding: 0px; width: 85px; font-size: 10px;" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';this.innerText = ''; this.value = 'Hide NFO'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show NFO'; }" type="button">  </div>  <div class="menu" style="background-color:white;width:900px">  <div style="display: none;">
<pre style="line-height:8px";>
                   ┌────────────────────────────────────────┐<br />
                   │                                        │<br />
                   │   _______    ______________________    │<br />
                   │  /      /   /                      \   │<br />
                   │ /      /   /                        \  │<br />
                   │/      /   /   ____    ____    ______ \ │<br />
                          /   /   /       /   /   /  /  /  \│<br />
                         /   /   /       /   /   /  /  /<br />
                        /   /   /──     /───/   /  /  /<br />
                       /   /   /       /   /   /     /<br />
                   \__/   /___/____ __/   /___/     /______/<br />
<br />
                 ██████████   ██████████                   ██████████████████<br />
                █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░                  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
               ████▓▓████░  ████▓▓████░      ███░        █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
                 █▓▓█▒▒▒░     █▓▓█▒▒▒░   █████▓██░      █▓▓▓█████████████▓▓▓█░<br />
                █▓▓█▒░       █▓▓█▒░  █████▓▓▓▓▓▓███    █▓▓▓█▒▒░░░░░░░░░▒▀█▓▓█░<br />
               █▓▓███████████▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒░            ▀███<br />
              █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               ▀<br />
             █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒▒░░█▓▓▓█▒░  █▓▓▓█▒░      ▄▄▄▄▄▄▄▄▄▄▄▄<br />
            █▓▓███████████▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░       █▒▒░░░▒█████<br />
           █▓▓█▒▒░░   ░░█▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               █▓▓▓█<br />
          █▓▓█▒░       █▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓████████████████████▓▓▓█<br />
      ████▓▓████   ████▓▓████ ████▓▓▓▓▓▓████▒░  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒<br />
     █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░ ░▒▒██▓█████▒▒░   █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░<br />
    ██████████░  ██████████░    ░▒███▒▒▒░     ████████████████████████████▒░<br />
     ║▒▒▒▒▒▒▒░    ▒▒▒▒▒▒▒▒░        ░           ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒║░░<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘ The Team from HomeofGamehacking proudly presents └──┐ ║  ║<br />
     ╠══╬─┤                                                        ├─╬══╣<br />
     ║  ║ └──┐     Sniper: Ghost Warrior - Dev Menu Loader      ┌──┘ ║  ║<br />
     ║  ╚═══╗└────────────────                                ──┘╔═══╝  ║<br />
     ║      ╚════════════════════════════════════════════════════╝      ║<br />
     ║                                                                  ║<br />
     ║                  ──────────────────────┐                         ║<br />
     ╚═══───@─────────────────┐ Trainer Notes └──────────────────@───═══╝<br />
            │                 └──────────────────────            │<br />
      ┌─────┴───────────                             ────────────┴─────┐<br />
      │ Game Version:.........Multiple  Trained by:..sILeNt heLLsCrEAm │<br />
      │                                                                │<br />
      │ Release:..............Original  Tested on:...........Win 7 x64 │<br />
      │                                                                │<br />
      │ Chiptune:.............No Music  Date:...............05/28/2013 │<br />
      │                                                                │<br />
      │ MD5 Hash (Loader.exe):........098D2CAAD57F75C87B17C3957B5E78D0 │<br />
      │                                                                │<br />
      │             Trainer Design by:...sILeNt heLLsCrEAm             │<br />
      └─────@────────────────────────────────────────────────────@─────┘<br />
            │                                                    │<br />
            │           ────────────────────────┐                │<br />
     ╔═══───┴───────────────┐ Available Options └────────────────┴───═══╗<br />
     ║                      └────────────────────────                   ║<br />
     ║      ┌───────────────┐                   ┌────────────────┐      ║<br />
     ╠═══───┤    Hotkeys    │                   │    Funktion    ├───═══╣<br />
     ║      @────═══════────┘ ───┐         ┌─── └────════════────@      ║<br />
     ║   ┌──┴────────────────────┘         └─────────────────────┴──┐   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐ Additional Notes  └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │               ---&gt;&gt;&gt; Virus Warnings &lt;&lt;&lt;---               │   ║<br />
     ║   │               ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀               │   ║<br />
     ║   │        First of all... I can't handle all possible       │   ║<br />
     ║   │        antivirus programs so far out there.              │   ║<br />
     ║   │        Some antivirus solution detects always a virus    │   ║<br />
     ║   │        in my trainers. All of my trainers are packed     │   ║<br />
     ║   │        and/or encrypted. On "www.virustotal.com" you can │   ║<br />
     ║   │        see that some scanners report it as xxx Packed.   │   ║<br />
     ║   │        The best results i see with "VirusBuster".        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │        Simply copy the "sgw_devmenu.exe" in the  same    │   ║<br />
     ║   │        folder where the file "Sniper_x86.exe"  is stored.│   ║<br />
     ║   │        To enable the developer menu its needed that you  │   ║<br />
     ║   │        start the game through this loader.               │   ║<br />
     ║   │        Run the file "sgw_devmenu.exe" and choose your    │   ║<br />
     ║   │        version. Then click the button "Start Game".      │   ║<br />
     ║   │        The game will be started and the loader will do   │   ║<br />
     ║   │        the rest. After that the loader will close itself.│   ║<br />
     ║   │        Now when you're ingame press the [ESC] Key to     │   ║<br />
     ║   │        show the menu. On the lower left corner you'll    │   ║<br />
     ║   │        see the developer menu... Thats it...             │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        hAVe pHuN                                         │   ║<br />
     ║   │        sILeNt heLLsCrEAm                                 │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐    Final Words    └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │    ---&gt; We are currently looking for experienced &lt;---    │   ║<br />
     ║   │         - trainer makers                                 │   ║<br />
     ║   │         - nfo makers                                     │   ║<br />
     ║   │         - gfx'ers                                        │   ║<br />
     ║   │         - HTML and/or PHP programmers                    │   ║<br />
     ║   │         - chiptuners                                     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     when you think you are able to support us in any     │   ║<br />
     ║   │              other way... so let us know...              │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                    ╔═══ ───────────────┐ ═══╗                    ║<br />
     ╠═══───@─────────────┼────┐ grEEtZ / thx └────┼─────────────@───═══╣<br />
     ║      │             ╚═══ └─────────────── ═══╝             │      ║<br />
     ║   ┌──┴─────────────────┐                ┌─────────────────┴──┐   ║<br />
     ║   │                ────┘                └────                │   ║<br />
     ║   │   DNA, fr33k, Acubra, maluc, dr.oLLe, FLiNG, dEViATED,   │   ║<br />
     ║   │               d!zzler, Psych, XeonByte...                │   ║<br />
     ║   │        and the whole German Gamehacking Community        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │           Join us at <a href="http://www.homeofgamehacking.de" target="_blank">http://www.homeofgamehacking.de</a>     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │▓▓▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒░░░░░░░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒▓▓▓▓▓▓▓▓▓▓│   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     A very special thanks fly out to Magic_h2001...      │   ║<br />
     ║   │               Thanks for your *.V2M Player               │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘         NFO created by sILeNt heLLsCrEAm         └──┐ ║  ║<br />
     ╚══╬─┤                                                        ├─╬══╝<br />
        ║ └──┐              Last Update... 11/2012              ┌──┘ ║<br />
        ╚═══╗└────────────────                                ──┘╔═══╝<br />
            ╚════════════════════════════════════════════════════╝<br />
</pre>
 </div>
 </div>
 </div>
<br />
Bei Fragen, Wünsche, Anregungen...<br />
<a href="http://homeofgamehacking.de/showthread.php?tid=1491" target="_blank"><span style="font-weight: bold;">[Diskussionsthread]</span> - Sniper: Ghost Warrior - Developer Menu Loader</a><br />
<br />
grEEtZ sILeNt heLLsCrEAm<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1474" target="_blank">sgw_devmenu.rar</a> (Größe: 688,78 KB / Downloads: 24)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hier mal ein Tool zum Spiel Sniper - Ghost Warrior.<br />
Mit diesem Tool (Loader) könnt ihr das In-Game-Developer-Menü freischalten.<br />
Im Spiel könnt ihr mit der Taste [ESC] das Menü aufrufen. Und am unteren linken Bildschirmrand befindet sich das Developer-Menü.<br />
Die Version kann im Loader selbst noch gewählt werden.<br />
<br />
Alles weitere dazu in der NFO.<br />
<br />
Screenshot...<br />
<!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/image.gif" border="0" alt=".jpg" />&nbsp;&nbsp;<a href="attachment.php?aid=1475" target="_blank">Screen.jpg</a> (Größe: 228,66 KB / Downloads: 30)
<!-- end: postbit_attachments_attachment --><br />
<br />
NFO...<br />
<div class="spoiler"><div class="smallfont"><input class="button" value="Show NFO" style="margin: 0px; padding: 0px; width: 85px; font-size: 10px;" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';this.innerText = ''; this.value = 'Hide NFO'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show NFO'; }" type="button">  </div>  <div class="menu" style="background-color:white;width:900px">  <div style="display: none;">
<pre style="line-height:8px";>
                   ┌────────────────────────────────────────┐<br />
                   │                                        │<br />
                   │   _______    ______________________    │<br />
                   │  /      /   /                      \   │<br />
                   │ /      /   /                        \  │<br />
                   │/      /   /   ____    ____    ______ \ │<br />
                          /   /   /       /   /   /  /  /  \│<br />
                         /   /   /       /   /   /  /  /<br />
                        /   /   /──     /───/   /  /  /<br />
                       /   /   /       /   /   /     /<br />
                   \__/   /___/____ __/   /___/     /______/<br />
<br />
                 ██████████   ██████████                   ██████████████████<br />
                █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░                  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
               ████▓▓████░  ████▓▓████░      ███░        █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
                 █▓▓█▒▒▒░     █▓▓█▒▒▒░   █████▓██░      █▓▓▓█████████████▓▓▓█░<br />
                █▓▓█▒░       █▓▓█▒░  █████▓▓▓▓▓▓███    █▓▓▓█▒▒░░░░░░░░░▒▀█▓▓█░<br />
               █▓▓███████████▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒░            ▀███<br />
              █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               ▀<br />
             █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒▒░░█▓▓▓█▒░  █▓▓▓█▒░      ▄▄▄▄▄▄▄▄▄▄▄▄<br />
            █▓▓███████████▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░       █▒▒░░░▒█████<br />
           █▓▓█▒▒░░   ░░█▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               █▓▓▓█<br />
          █▓▓█▒░       █▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓████████████████████▓▓▓█<br />
      ████▓▓████   ████▓▓████ ████▓▓▓▓▓▓████▒░  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒<br />
     █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░ ░▒▒██▓█████▒▒░   █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░<br />
    ██████████░  ██████████░    ░▒███▒▒▒░     ████████████████████████████▒░<br />
     ║▒▒▒▒▒▒▒░    ▒▒▒▒▒▒▒▒░        ░           ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒║░░<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘ The Team from HomeofGamehacking proudly presents └──┐ ║  ║<br />
     ╠══╬─┤                                                        ├─╬══╣<br />
     ║  ║ └──┐     Sniper: Ghost Warrior - Dev Menu Loader      ┌──┘ ║  ║<br />
     ║  ╚═══╗└────────────────                                ──┘╔═══╝  ║<br />
     ║      ╚════════════════════════════════════════════════════╝      ║<br />
     ║                                                                  ║<br />
     ║                  ──────────────────────┐                         ║<br />
     ╚═══───@─────────────────┐ Trainer Notes └──────────────────@───═══╝<br />
            │                 └──────────────────────            │<br />
      ┌─────┴───────────                             ────────────┴─────┐<br />
      │ Game Version:.........Multiple  Trained by:..sILeNt heLLsCrEAm │<br />
      │                                                                │<br />
      │ Release:..............Original  Tested on:...........Win 7 x64 │<br />
      │                                                                │<br />
      │ Chiptune:.............No Music  Date:...............05/28/2013 │<br />
      │                                                                │<br />
      │ MD5 Hash (Loader.exe):........098D2CAAD57F75C87B17C3957B5E78D0 │<br />
      │                                                                │<br />
      │             Trainer Design by:...sILeNt heLLsCrEAm             │<br />
      └─────@────────────────────────────────────────────────────@─────┘<br />
            │                                                    │<br />
            │           ────────────────────────┐                │<br />
     ╔═══───┴───────────────┐ Available Options └────────────────┴───═══╗<br />
     ║                      └────────────────────────                   ║<br />
     ║      ┌───────────────┐                   ┌────────────────┐      ║<br />
     ╠═══───┤    Hotkeys    │                   │    Funktion    ├───═══╣<br />
     ║      @────═══════────┘ ───┐         ┌─── └────════════────@      ║<br />
     ║   ┌──┴────────────────────┘         └─────────────────────┴──┐   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐ Additional Notes  └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │               ---&gt;&gt;&gt; Virus Warnings &lt;&lt;&lt;---               │   ║<br />
     ║   │               ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀               │   ║<br />
     ║   │        First of all... I can't handle all possible       │   ║<br />
     ║   │        antivirus programs so far out there.              │   ║<br />
     ║   │        Some antivirus solution detects always a virus    │   ║<br />
     ║   │        in my trainers. All of my trainers are packed     │   ║<br />
     ║   │        and/or encrypted. On "www.virustotal.com" you can │   ║<br />
     ║   │        see that some scanners report it as xxx Packed.   │   ║<br />
     ║   │        The best results i see with "VirusBuster".        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │        Simply copy the "sgw_devmenu.exe" in the  same    │   ║<br />
     ║   │        folder where the file "Sniper_x86.exe"  is stored.│   ║<br />
     ║   │        To enable the developer menu its needed that you  │   ║<br />
     ║   │        start the game through this loader.               │   ║<br />
     ║   │        Run the file "sgw_devmenu.exe" and choose your    │   ║<br />
     ║   │        version. Then click the button "Start Game".      │   ║<br />
     ║   │        The game will be started and the loader will do   │   ║<br />
     ║   │        the rest. After that the loader will close itself.│   ║<br />
     ║   │        Now when you're ingame press the [ESC] Key to     │   ║<br />
     ║   │        show the menu. On the lower left corner you'll    │   ║<br />
     ║   │        see the developer menu... Thats it...             │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        hAVe pHuN                                         │   ║<br />
     ║   │        sILeNt heLLsCrEAm                                 │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐    Final Words    └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │    ---&gt; We are currently looking for experienced &lt;---    │   ║<br />
     ║   │         - trainer makers                                 │   ║<br />
     ║   │         - nfo makers                                     │   ║<br />
     ║   │         - gfx'ers                                        │   ║<br />
     ║   │         - HTML and/or PHP programmers                    │   ║<br />
     ║   │         - chiptuners                                     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     when you think you are able to support us in any     │   ║<br />
     ║   │              other way... so let us know...              │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                    ╔═══ ───────────────┐ ═══╗                    ║<br />
     ╠═══───@─────────────┼────┐ grEEtZ / thx └────┼─────────────@───═══╣<br />
     ║      │             ╚═══ └─────────────── ═══╝             │      ║<br />
     ║   ┌──┴─────────────────┐                ┌─────────────────┴──┐   ║<br />
     ║   │                ────┘                └────                │   ║<br />
     ║   │   DNA, fr33k, Acubra, maluc, dr.oLLe, FLiNG, dEViATED,   │   ║<br />
     ║   │               d!zzler, Psych, XeonByte...                │   ║<br />
     ║   │        and the whole German Gamehacking Community        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │           Join us at <a href="http://www.homeofgamehacking.de" target="_blank">http://www.homeofgamehacking.de</a>     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │▓▓▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒░░░░░░░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒▓▓▓▓▓▓▓▓▓▓│   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     A very special thanks fly out to Magic_h2001...      │   ║<br />
     ║   │               Thanks for your *.V2M Player               │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘         NFO created by sILeNt heLLsCrEAm         └──┐ ║  ║<br />
     ╚══╬─┤                                                        ├─╬══╝<br />
        ║ └──┐              Last Update... 11/2012              ┌──┘ ║<br />
        ╚═══╗└────────────────                                ──┘╔═══╝<br />
            ╚════════════════════════════════════════════════════╝<br />
</pre>
 </div>
 </div>
 </div>
<br />
Bei Fragen, Wünsche, Anregungen...<br />
<a href="http://homeofgamehacking.de/showthread.php?tid=1491" target="_blank"><span style="font-weight: bold;">[Diskussionsthread]</span> - Sniper: Ghost Warrior - Developer Menu Loader</a><br />
<br />
grEEtZ sILeNt heLLsCrEAm<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1474" target="_blank">sgw_devmenu.rar</a> (Größe: 688,78 KB / Downloads: 24)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Sniper: Ghost Warrior - Developer Menu Loader]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1491</link>
			<pubDate>Tue, 28 May 2013 15:30:36 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1491</guid>
			<description><![CDATA[Diskussionsthread zu <a href="http://homeofgamehacking.de/showthread.php?tid=1492" target="_blank"><span style="font-weight: bold;">Sniper: Ghost Warrior - Developer Menu Loader</span>.</a><br />
Fragen, Anregungen, Kritik und Probleme bitte hier rein.]]></description>
			<content:encoded><![CDATA[Diskussionsthread zu <a href="http://homeofgamehacking.de/showthread.php?tid=1492" target="_blank"><span style="font-weight: bold;">Sniper: Ghost Warrior - Developer Menu Loader</span>.</a><br />
Fragen, Anregungen, Kritik und Probleme bitte hier rein.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Dead Island: Riptide Developer Menu]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1490</link>
			<pubDate>Mon, 27 May 2013 09:12:03 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1490</guid>
			<description><![CDATA[Hier mal ein Tool zum Spiel Dead Island: Riptide.<br />
Mit diesem Tool (Patch) könnt ihr das In-Game-Developer-Menü freischalten.<br />
Im Spiel könnt ihr mit der Taste [ESC] das Menü aufrufen. Und am rechten Bildschirmrand befindet sich das Developer-Menü.<br />
Der Loader ist ausdrücklich nur für mit der Releaseversion 1.4.0 von Reloaded getestet. Originalversionen mit gleicher Versionsnummer können durchaus funktionieren ist aber nicht getestet.<br />
<br />
Alles weitere dazu in der NFO.<br />
<br />
NFO...<br />
<div class="spoiler"><div class="smallfont"><input class="button" value="Show NFO" style="margin: 0px; padding: 0px; width: 85px; font-size: 10px;" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';this.innerText = ''; this.value = 'Hide NFO'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show NFO'; }" type="button">  </div>  <div class="menu" style="background-color:white;width:900px">  <div style="display: none;">
<pre style="line-height:8px";>
                   ┌────────────────────────────────────────┐<br />
                   │                                        │<br />
                   │   _______    ______________________    │<br />
                   │  /      /   /                      \   │<br />
                   │ /      /   /                        \  │<br />
                   │/      /   /   ____    ____    ______ \ │<br />
                          /   /   /       /   /   /  /  /  \│<br />
                         /   /   /       /   /   /  /  /<br />
                        /   /   /──     /───/   /  /  /<br />
                       /   /   /       /   /   /     /<br />
                   \__/   /___/____ __/   /___/     /______/<br />
<br />
                 ██████████   ██████████                   ██████████████████<br />
                █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░                  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
               ████▓▓████░  ████▓▓████░      ███░        █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
                 █▓▓█▒▒▒░     █▓▓█▒▒▒░   █████▓██░      █▓▓▓█████████████▓▓▓█░<br />
                █▓▓█▒░       █▓▓█▒░  █████▓▓▓▓▓▓███    █▓▓▓█▒▒░░░░░░░░░▒▀█▓▓█░<br />
               █▓▓███████████▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒░            ▀███<br />
              █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               ▀<br />
             █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒▒░░█▓▓▓█▒░  █▓▓▓█▒░      ▄▄▄▄▄▄▄▄▄▄▄▄<br />
            █▓▓███████████▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░       █▒▒░░░▒█████<br />
           █▓▓█▒▒░░   ░░█▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               █▓▓▓█<br />
          █▓▓█▒░       █▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓████████████████████▓▓▓█<br />
      ████▓▓████   ████▓▓████ ████▓▓▓▓▓▓████▒░  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒<br />
     █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░ ░▒▒██▓█████▒▒░   █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░<br />
    ██████████░  ██████████░    ░▒███▒▒▒░     ████████████████████████████▒░<br />
     ║▒▒▒▒▒▒▒░    ▒▒▒▒▒▒▒▒░        ░           ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒║░░<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘ The Team from HomeofGamehacking proudly presents └──┐ ║  ║<br />
     ╠══╬─┤                                                        ├─╬══╣<br />
     ║  ║ └──┐   Dead Island Riptide v1.4.0 - Dev Menu Loader   ┌──┘ ║  ║<br />
     ║  ╚═══╗└────────────────                                ──┘╔═══╝  ║<br />
     ║      ╚════════════════════════════════════════════════════╝      ║<br />
     ║                                                                  ║<br />
     ║                  ──────────────────────┐                         ║<br />
     ╚═══───@─────────────────┐ Trainer Notes └──────────────────@───═══╝<br />
            │                 └──────────────────────            │<br />
      ┌─────┴───────────                             ────────────┴─────┐<br />
      │ Game Version:...........v1.4.0  Trained by:..sILeNt heLLsCrEAm │<br />
      │                                                                │<br />
      │ Release:..............Reloaded  Tested on:...........Win 7 x64 │<br />
      │                                                                │<br />
      │ Chiptune:.............No Music  Date:...............05/27/2013 │<br />
      │                                                                │<br />
      │ MD5 Hash (Loader.exe):........09F963C20A4B29631B297D671275A828 │<br />
      │                                                                │<br />
      │             Trainer Design by:...sILeNt heLLsCrEAm             │<br />
      └─────@────────────────────────────────────────────────────@─────┘<br />
            │                                                    │<br />
            │           ────────────────────────┐                │<br />
     ╔═══───┴───────────────┐ Available Options └────────────────┴───═══╗<br />
     ║                      └────────────────────────                   ║<br />
     ║      ┌───────────────┐                   ┌────────────────┐      ║<br />
     ╠═══───┤    Hotkeys    │                   │    Funktion    ├───═══╣<br />
     ║      @────═══════────┘ ───┐         ┌─── └────════════────@      ║<br />
     ║   ┌──┴────────────────────┘         └─────────────────────┴──┐   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐ Additional Notes  └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │               ---&gt;&gt;&gt; Virus Warnings &lt;&lt;&lt;---               │   ║<br />
     ║   │               ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀               │   ║<br />
     ║   │        First of all... I can't handle all possible       │   ║<br />
     ║   │        antivirus programs so far out there.              │   ║<br />
     ║   │        Some antivirus solution detects always a virus    │   ║<br />
     ║   │        in my trainers. All of my trainers are packed     │   ║<br />
     ║   │        and/or encrypted. On "www.virustotal.com" you can │   ║<br />
     ║   │        see that some scanners report it as xxx Packed.   │   ║<br />
     ║   │        The best results i see with "VirusBuster".        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │        Simply copy the "riptide_devmenuv140.exe" in the  │   ║<br />
     ║   │        same folder where the file                        │   ║<br />
     ║   │        "DeadIslandGame_x86_rwdi.exe" is stored.          │   ║<br />
     ║   │        To enable the developer menu its needed that you  │   ║<br />
     ║   │        start the game from this loader.                  │   ║<br />
     ║   │        Run the file "riptide_devmenuv140.exe" and click  │   ║<br />
     ║   │        the button "Start Game". The game will be started │   ║<br />
     ║   │        and the loader will do the rest. After that the   │   ║<br />
     ║   │        loader will close itself.                         │   ║<br />
     ║   │        Now when you're ingame press the [ESC] Key to     │   ║<br />
     ║   │        show the menu. On the right side you'll see the   │   ║<br />
     ║   │        developer menu... Thats it...                     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        hAVe pHuN                                         │   ║<br />
     ║   │        sILeNt heLLsCrEAm                                 │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐    Final Words    └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │    ---&gt; We are currently looking for experienced &lt;---    │   ║<br />
     ║   │         - trainer makers                                 │   ║<br />
     ║   │         - nfo makers                                     │   ║<br />
     ║   │         - gfx'ers                                        │   ║<br />
     ║   │         - HTML and/or PHP programmers                    │   ║<br />
     ║   │         - chiptuners                                     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     when you think you are able to support us in any     │   ║<br />
     ║   │              other way... so let us know...              │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                    ╔═══ ───────────────┐ ═══╗                    ║<br />
     ╠═══───@─────────────┼────┐ grEEtZ / thx └────┼─────────────@───═══╣<br />
     ║      │             ╚═══ └─────────────── ═══╝             │      ║<br />
     ║   ┌──┴─────────────────┐                ┌─────────────────┴──┐   ║<br />
     ║   │                ────┘                └────                │   ║<br />
     ║   │   DNA, fr33k, Acubra, maluc, dr.oLLe, FLiNG, dEViATED,   │   ║<br />
     ║   │               d!zzler, Psych, XeonByte...                │   ║<br />
     ║   │        and the whole German Gamehacking Community        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │           Join us at <a href="http://www.homeofgamehacking.de" target="_blank">http://www.homeofgamehacking.de</a>     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │▓▓▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒░░░░░░░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒▓▓▓▓▓▓▓▓▓▓│   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     A very special thanks fly out to Magic_h2001...      │   ║<br />
     ║   │               Thanks for your *.V2M Player               │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘         NFO created by sILeNt heLLsCrEAm         └──┐ ║  ║<br />
     ╚══╬─┤                                                        ├─╬══╝<br />
        ║ └──┐              Last Update... 11/2012              ┌──┘ ║<br />
        ╚═══╗└────────────────                                ──┘╔═══╝<br />
            ╚════════════════════════════════════════════════════╝<br />
</pre>
 </div>
 </div>
 </div>
<br />
Bei Fragen, Wünsche, Anregungen...<br />
<a href="http://homeofgamehacking.de/showthread.php?tid=1489" target="_blank"><span style="font-weight: bold;">[Diskussionsthread]</span> - Dead Island: Riptide Developer Menu</a><br />
<br />
grEEtZ sILeNt heLLsCrEAm<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1506" target="_blank">riptide_devmenu.rar</a> (Größe: 688,27 KB / Downloads: 22)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hier mal ein Tool zum Spiel Dead Island: Riptide.<br />
Mit diesem Tool (Patch) könnt ihr das In-Game-Developer-Menü freischalten.<br />
Im Spiel könnt ihr mit der Taste [ESC] das Menü aufrufen. Und am rechten Bildschirmrand befindet sich das Developer-Menü.<br />
Der Loader ist ausdrücklich nur für mit der Releaseversion 1.4.0 von Reloaded getestet. Originalversionen mit gleicher Versionsnummer können durchaus funktionieren ist aber nicht getestet.<br />
<br />
Alles weitere dazu in der NFO.<br />
<br />
NFO...<br />
<div class="spoiler"><div class="smallfont"><input class="button" value="Show NFO" style="margin: 0px; padding: 0px; width: 85px; font-size: 10px;" onclick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';this.innerText = ''; this.value = 'Hide NFO'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show NFO'; }" type="button">  </div>  <div class="menu" style="background-color:white;width:900px">  <div style="display: none;">
<pre style="line-height:8px";>
                   ┌────────────────────────────────────────┐<br />
                   │                                        │<br />
                   │   _______    ______________________    │<br />
                   │  /      /   /                      \   │<br />
                   │ /      /   /                        \  │<br />
                   │/      /   /   ____    ____    ______ \ │<br />
                          /   /   /       /   /   /  /  /  \│<br />
                         /   /   /       /   /   /  /  /<br />
                        /   /   /──     /───/   /  /  /<br />
                       /   /   /       /   /   /     /<br />
                   \__/   /___/____ __/   /___/     /______/<br />
<br />
                 ██████████   ██████████                   ██████████████████<br />
                █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░                  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
               ████▓▓████░  ████▓▓████░      ███░        █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█░<br />
                 █▓▓█▒▒▒░     █▓▓█▒▒▒░   █████▓██░      █▓▓▓█████████████▓▓▓█░<br />
                █▓▓█▒░       █▓▓█▒░  █████▓▓▓▓▓▓███    █▓▓▓█▒▒░░░░░░░░░▒▀█▓▓█░<br />
               █▓▓███████████▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒░            ▀███<br />
              █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               ▀<br />
             █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓█▒▒░░█▓▓▓█▒░  █▓▓▓█▒░      ▄▄▄▄▄▄▄▄▄▄▄▄<br />
            █▓▓███████████▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░  █▓▓▓█▒░       █▒▒░░░▒█████<br />
           █▓▓█▒▒░░   ░░█▓▓█▒░  █▓▓▓██████▓▓▓█▒░  █▓▓▓█▒░               █▓▓▓█<br />
          █▓▓█▒░       █▓▓█▒░  █▓▓▓▓▓▓▓▓▓▓▓▓█▒░  █▓▓▓████████████████████▓▓▓█<br />
      ████▓▓████   ████▓▓████ ████▓▓▓▓▓▓████▒░  █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒<br />
     █▓▓▓▓▓▓▓▓█░  █▓▓▓▓▓▓▓▓█░ ░▒▒██▓█████▒▒░   █▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓█▒░<br />
    ██████████░  ██████████░    ░▒███▒▒▒░     ████████████████████████████▒░<br />
     ║▒▒▒▒▒▒▒░    ▒▒▒▒▒▒▒▒░        ░           ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒║░░<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘ The Team from HomeofGamehacking proudly presents └──┐ ║  ║<br />
     ╠══╬─┤                                                        ├─╬══╣<br />
     ║  ║ └──┐   Dead Island Riptide v1.4.0 - Dev Menu Loader   ┌──┘ ║  ║<br />
     ║  ╚═══╗└────────────────                                ──┘╔═══╝  ║<br />
     ║      ╚════════════════════════════════════════════════════╝      ║<br />
     ║                                                                  ║<br />
     ║                  ──────────────────────┐                         ║<br />
     ╚═══───@─────────────────┐ Trainer Notes └──────────────────@───═══╝<br />
            │                 └──────────────────────            │<br />
      ┌─────┴───────────                             ────────────┴─────┐<br />
      │ Game Version:...........v1.4.0  Trained by:..sILeNt heLLsCrEAm │<br />
      │                                                                │<br />
      │ Release:..............Reloaded  Tested on:...........Win 7 x64 │<br />
      │                                                                │<br />
      │ Chiptune:.............No Music  Date:...............05/27/2013 │<br />
      │                                                                │<br />
      │ MD5 Hash (Loader.exe):........09F963C20A4B29631B297D671275A828 │<br />
      │                                                                │<br />
      │             Trainer Design by:...sILeNt heLLsCrEAm             │<br />
      └─────@────────────────────────────────────────────────────@─────┘<br />
            │                                                    │<br />
            │           ────────────────────────┐                │<br />
     ╔═══───┴───────────────┐ Available Options └────────────────┴───═══╗<br />
     ║                      └────────────────────────                   ║<br />
     ║      ┌───────────────┐                   ┌────────────────┐      ║<br />
     ╠═══───┤    Hotkeys    │                   │    Funktion    ├───═══╣<br />
     ║      @────═══════────┘ ───┐         ┌─── └────════════────@      ║<br />
     ║   ┌──┴────────────────────┘         └─────────────────────┴──┐   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐ Additional Notes  └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │               ---&gt;&gt;&gt; Virus Warnings &lt;&lt;&lt;---               │   ║<br />
     ║   │               ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀               │   ║<br />
     ║   │        First of all... I can't handle all possible       │   ║<br />
     ║   │        antivirus programs so far out there.              │   ║<br />
     ║   │        Some antivirus solution detects always a virus    │   ║<br />
     ║   │        in my trainers. All of my trainers are packed     │   ║<br />
     ║   │        and/or encrypted. On "www.virustotal.com" you can │   ║<br />
     ║   │        see that some scanners report it as xxx Packed.   │   ║<br />
     ║   │        The best results i see with "VirusBuster".        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │        Simply copy the "riptide_devmenuv140.exe" in the  │   ║<br />
     ║   │        same folder where the file                        │   ║<br />
     ║   │        "DeadIslandGame_x86_rwdi.exe" is stored.          │   ║<br />
     ║   │        To enable the developer menu its needed that you  │   ║<br />
     ║   │        start the game from this loader.                  │   ║<br />
     ║   │        Run the file "riptide_devmenuv140.exe" and click  │   ║<br />
     ║   │        the button "Start Game". The game will be started │   ║<br />
     ║   │        and the loader will do the rest. After that the   │   ║<br />
     ║   │        loader will close itself.                         │   ║<br />
     ║   │        Now when you're ingame press the [ESC] Key to     │   ║<br />
     ║   │        show the menu. On the right side you'll see the   │   ║<br />
     ║   │        developer menu... Thats it...                     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        hAVe pHuN                                         │   ║<br />
     ║   │        sILeNt heLLsCrEAm                                 │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │                                                          │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                  ────────────────────────┐                       ║<br />
     ╠═══───@───────────────┐    Final Words    └────────────────@───═══╣<br />
     ║      │               └────────────────────────            │      ║<br />
     ║   ┌──┴────────────────┐                 ┌─────────────────┴──┐   ║<br />
     ║   │              ─────┘                 └─────               │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │    ---&gt; We are currently looking for experienced &lt;---    │   ║<br />
     ║   │         - trainer makers                                 │   ║<br />
     ║   │         - nfo makers                                     │   ║<br />
     ║   │         - gfx'ers                                        │   ║<br />
     ║   │         - HTML and/or PHP programmers                    │   ║<br />
     ║   │         - chiptuners                                     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     when you think you are able to support us in any     │   ║<br />
     ║   │              other way... so let us know...              │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║                    ╔═══ ───────────────┐ ═══╗                    ║<br />
     ╠═══───@─────────────┼────┐ grEEtZ / thx └────┼─────────────@───═══╣<br />
     ║      │             ╚═══ └─────────────── ═══╝             │      ║<br />
     ║   ┌──┴─────────────────┐                ┌─────────────────┴──┐   ║<br />
     ║   │                ────┘                └────                │   ║<br />
     ║   │   DNA, fr33k, Acubra, maluc, dr.oLLe, FLiNG, dEViATED,   │   ║<br />
     ║   │               d!zzler, Psych, XeonByte...                │   ║<br />
     ║   │        and the whole German Gamehacking Community        │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │           Join us at <a href="http://www.homeofgamehacking.de" target="_blank">http://www.homeofgamehacking.de</a>     │   ║<br />
     ║   │                                                          │   ║<br />
     ║   │▓▓▓▓▓▓▓▓▓▓▒▒▒▒▒▒▒▒▒▒░░░░░░░░░░░░░░░░░░▒▒▒▒▒▒▒▒▒▒▓▓▓▓▓▓▓▓▓▓│   ║<br />
     ║   │                                                          │   ║<br />
     ║   │     A very special thanks fly out to Magic_h2001...      │   ║<br />
     ║   │               Thanks for your *.V2M Player               │   ║<br />
     ║   └──────────────────────────────────────────────────────────┘   ║<br />
     ║                                                                  ║<br />
     ║      ╔════════════════════════════════════════════════════╗      ║<br />
     ║  ╔═══╝┌──                               ─────────────────┐╚═══╗  ║<br />
     ║  ║ ┌──┘         NFO created by sILeNt heLLsCrEAm         └──┐ ║  ║<br />
     ╚══╬─┤                                                        ├─╬══╝<br />
        ║ └──┐              Last Update... 11/2012              ┌──┘ ║<br />
        ╚═══╗└────────────────                                ──┘╔═══╝<br />
            ╚════════════════════════════════════════════════════╝<br />
</pre>
 </div>
 </div>
 </div>
<br />
Bei Fragen, Wünsche, Anregungen...<br />
<a href="http://homeofgamehacking.de/showthread.php?tid=1489" target="_blank"><span style="font-weight: bold;">[Diskussionsthread]</span> - Dead Island: Riptide Developer Menu</a><br />
<br />
grEEtZ sILeNt heLLsCrEAm<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/rar.bmp" border="0" alt=".rar" />&nbsp;&nbsp;<a href="attachment.php?aid=1506" target="_blank">riptide_devmenu.rar</a> (Größe: 688,27 KB / Downloads: 22)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Dead Island: Riptide Developer Menu]]></title>
			<link>http://homeofgamehacking.de/showthread.php?tid=1489</link>
			<pubDate>Mon, 27 May 2013 09:09:35 +0000</pubDate>
			<guid isPermaLink="false">http://homeofgamehacking.de/showthread.php?tid=1489</guid>
			<description><![CDATA[Diskussionsthread zu <a href="http://homeofgamehacking.de/showthread.php?tid=1490" target="_blank"><span style="font-weight: bold;">Dead Island: Riptide Developer Menu</span>.</a><br />
Fragen, Anregungen, Kritik und Probleme bitte hier rein.]]></description>
			<content:encoded><![CDATA[Diskussionsthread zu <a href="http://homeofgamehacking.de/showthread.php?tid=1490" target="_blank"><span style="font-weight: bold;">Dead Island: Riptide Developer Menu</span>.</a><br />
Fragen, Anregungen, Kritik und Probleme bitte hier rein.]]></content:encoded>
		</item>
	</channel>
</rss>