|
You last visited: Today at 06:18
Advertisement
[Release] gZoom - Guild Wars 2 Multi-Hack
Discussion on [Release] gZoom - Guild Wars 2 Multi-Hack within the GW2 Hacks, Bots, Cheats & Exploits forum part of the Guild Wars 2 category.
12/31/2012, 10:13
|
#991
|
elite*gold: 0
Join Date: Dec 2012
Posts: 98
Received Thanks: 1
|
Not working for me ;/
|
|
|
12/31/2012, 13:01
|
#992
|
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,380
|
Working flawlessly here. Really nice job M but I'd expect nothing less from you
@ Steam: What exactly is going wrong... you've given no info for anyone to try to help you...
Here's how I went about it.
#1: Downloaded and extracted the program from this thread
#2: Downloaded all of the teleport coords and extracted them from the linked thread (first post)
#3: I opened gw, logged into a character
#4: Opened the program and waited till it said it detected my client
#5: Realized that I had to change the localization settings for decimals.
To actually use the program (for teleportation sync) all I do is load the list for the map i'm on, click the first entry in the list (or other one if I just want vistas for example) and then I go to client and push page down to teleport there. I then use a skill that forces client sync and tada! problem solved!
I did notice a few little quirks to syncing where certain skills worked best if you jumped after teleporting and then used the skills wheras others would prefer you just use them right after teleporting but that is probably just me being superstitious.
PS: To anyone wanting to mess around with this on an engineer, you can also use the rocket boots and the elyxir gun to force character sync which gives you more options if you're doing a really quick exploration run. The boots are probably my favorite as they don't really move you at all and are on like 20s cd so I use that any time I end up on a precarious ledge from teleporting.
|
|
|
12/31/2012, 15:10
|
#993
|
elite*gold: 0
Join Date: Apr 2009
Posts: 30
Received Thanks: 3
|
Top Hack!  Habe ihn gerade getestet, doch ich bin mir unsicher ob dieser Hack auch wirklich undectected bleibt... Ich meine es ist schon Auffällig wenn man schnell mal über die halbe Welt sprintet :P
|
|
|
12/31/2012, 17:09
|
#994
|
elite*gold: 1826
Join Date: Mar 2009
Posts: 4,310
Received Thanks: 6,287
|
Quote:
Originally Posted by Gangster8
Top Hack!  Habe ihn gerade getestet, doch ich bin mir unsicher ob dieser Hack auch wirklich undectected bleibt... Ich meine es ist schon Auffällig wenn man schnell mal über die halbe Welt sprintet :P
|
Ich bin mir zu 99.99% sicher das ANet's Serverarchitektur einer Detection nicht stand halten würde. Sollte dem doch der Fall sein wäre eine solch signifikante Veränderung doch sehr leicht zu bemerken.
|
|
|
01/01/2013, 02:40
|
#995
|
elite*gold: 0
Join Date: Jan 2013
Posts: 1
Received Thanks: 0
|
how to use this program? i've extracted all the things.
|
|
|
01/01/2013, 20:15
|
#996
|
elite*gold: 0
Join Date: May 2010
Posts: 28
Received Thanks: 1
|
Gibt es irgendwelche bekannte Fälle wo Leute gebannt wurden nach dem Benutzen solcher Hacks?
Are there any known cases where people got banned after using such hacks?
|
|
|
01/02/2013, 17:05
|
#997
|
elite*gold: 0
Join Date: Jul 2011
Posts: 147
Received Thanks: 4
|
whats chance that ill get ban if using this?
|
|
|
01/02/2013, 17:50
|
#998
|
elite*gold: 0
Join Date: Jul 2009
Posts: 205
Received Thanks: 5
|
Wenn zu dumm ist den Hack zu benutzen wird auch gebannt :-) Wer den Hack unauffällig und schlau einsetzt wird auch nicht gebannt ;-)
|
|
|
01/03/2013, 03:50
|
#999
|
elite*gold: 0
Join Date: Sep 2009
Posts: 64
Received Thanks: 7
|
thx work perfect for me win 7 64, i ever whant clic teleport *.* nice work, i continue use the hack speed with ce becouse i modified the speed value this see diferent
|
|
|
01/04/2013, 07:04
|
#1000
|
elite*gold: 0
Join Date: Jul 2007
Posts: 10
Received Thanks: 0
|
well with the new patch to take out wintersday event ofcourse its broke, teleport and fov currently borked...awaiting fix for i r not smart enuff to do it myself
|
|
|
01/04/2013, 07:36
|
#1001
|
elite*gold: 0
Join Date: Dec 2012
Posts: 48
Received Thanks: 56
|
New pointers:
Code:
TeleportBase: 0x12C9DD4
CameraBase: 0x11F92B0
SpeedBase: 0x11F9BF8
If you wish to add pattern scans for the above addresses, add the following lines to Trainer.cs (You can guess where these lines go, right?)
Code:
BasePNTR = Function.ReadInteger("Gw2", (int)_sigScan.FindPattern(new byte[] { 0xD9, 0x85, 0x78, 0xFF, 0xFF, 0xFF, 0xD8, 0x65, 0xCC, 0x8B, 0x15 }, "xxxxxxxxxxx", 11)) + 0x104 - 0x400000;
CameraPNTR = Function.ReadInteger("Gw2", (int)_sigScan.FindPattern(new byte[] { 0x83, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x00, 0x74, 0x11, 0x6a, 0x20, 0xba }, "xx?????xxxxx", 2)) - 0x400000;
SpeedPNTR = (int)_sigScan.FindPattern(new byte[] { 0x56, 0x01, 0x6a, 0x00, 0x6a, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x00, 0x00, 0x00, 0x68 }, "xxx?xxx????x????x", 17);
And add the following lines to Engine.cs:
Code:
public static int ReadInteger(string EXENAME, int Pointer)
{
int Value = 0;
checked
{
try
{
Process[] Proc = Process.GetProcessesByName(EXENAME);
if (Proc.Length != 0)
{
int Bytes = 0;
int Handle = OpenProcess(PROCESS_ALL_ACCESS, 0, Proc[0].Id);
if (Handle != 0)
{
ReadProcessMemoryInteger((int)Handle, Pointer, ref Value, 4, ref Bytes);
CloseHandle(Handle);
}
}
}
catch
{ }
}
return Value;
}
|
|
|
01/04/2013, 09:14
|
#1002
|
elite*gold: 0
Join Date: Apr 2008
Posts: 35
Received Thanks: 8
|
Mouse Pointer (Credit to: Plox - CE Tutorial)
Code:
MousePNTR = 0x012C9D08;
Tried the OllyDBG - it wont tell me the pointer. maybe the string you need to find is change.
If some of you wondering whats this Pointers all about, head to Page 94 and Read Deathsnack's Post.
|
|
|
01/04/2013, 11:19
|
#1003
|
elite*gold: 0
Join Date: Jul 2007
Posts: 10
Received Thanks: 0
|
tried to fix it but it doesnt work. couldnt u just upload the working version pls?
|
|
|
01/04/2013, 11:28
|
#1004
|
elite*gold: 1826
Join Date: Mar 2009
Posts: 4,310
Received Thanks: 6,287
|
Quote:
Originally Posted by Thanatos1620
couldnt u just upload the working version pls?
|
Please don't.
|
|
|
01/04/2013, 14:48
|
#1005
|
elite*gold: 0
Join Date: Jun 2011
Posts: 3
Received Thanks: 1
|
when i double clicked the compile.bat....there's is no red lines...but i cant find the updated microtrainer in
gZoom elite\MicroTrainer\bin\Debug or anywhere
|
|
|
Similar Threads
|
Guild Wars Multi-Client {kein kopieren des Guild Wars Ordners}
06/05/2011 - GW Exploits, Hacks, Bots, Tools & Macros - 14 Replies
Moin, einfach ausführen und sich freuen :)
Brauch man nicht erklären denke ich mal....
UPDATE: 12.5.2011
Viel Spaß damit
|
[Release] Guild Wars Multi Client
12/17/2009 - GW Exploits, Hacks, Bots, Tools & Macros - 5 Replies
Don't forget to +rep!
These are the steps:
Heres the translation of babel fish
1. A Desktop linkage put on
2. With the right mouse button on the Desktop click to linkage and characteristics select
3. In the input field a goal: the stringer of e.g. “C:\Spiele\GW - MultiC_2.1 \ GW-MultiC.exe” in “C:\Spiele\GW - MultiC_1.5 \ GW-MultiC.exe? gw0” change. Now GW original started without the GW-MultiC.exe to be started must.
4. Point 1 repeat
|
All times are GMT +1. The time now is 06:19.
|
|