|
You last visited: Today at 17:49
Advertisement
Zoom Hack question, need help
Discussion on Zoom Hack question, need help within the CO2 Programming forum part of the Conquer Online 2 category.
06/05/2009, 04:22
|
#1
|
elite*gold: 0
Join Date: Mar 2009
Posts: 427
Received Thanks: 479
|
Zoom Hack question, need help
alright... so i know the address to the zoom size
0x0064E7B0
and i know that it's static (i checked, it's static)... normal size is 256, zoomed in all the way is 512... now here's my problem... if i write to the address using autoit, NOTHIGN happens  and if i read the address... i get 0... wtf?
Code:
$PID = WinGetProcess("[ACTIVE]", "")
_MemoryRead(0x0064E7B0, $PID)
that should give me the value of the current zoom size, which is 256... but instead i get 0, anybody know y?
|
|
|
06/05/2009, 05:00
|
#2
|
elite*gold: 0
Join Date: May 2009
Posts: 98
Received Thanks: 30
|
More code is required.
|
|
|
06/05/2009, 05:10
|
#3
|
elite*gold: 0
Join Date: Mar 2009
Posts: 427
Received Thanks: 479
|
Quote:
Originally Posted by high7
More code is required.
|
well obviously, but thats just the main part for what i'm trying to do there...
if u want it all...
Code:
#include "NomadMemory.au3"
Global Const $GET_PLAYER_ADDRS = 0x0064ff48
Global Const $ZOOM = 0x0064E7B0
HotKeySet("{F4}", "TurnOnOffCyclone")
HotKeySet("^{NUMPADADD}", "ZoomIn")
HotKeySet("^{NUMPADSUB}", "ZoomOut")
HotKeySet("!x", "Terminate")
While 1
ToolTip("F4 : Turn on/off Speedhack" & @CR & _
"Ctrl +/- : Zoom In/Out" & @CR & _
"Alt + X : Exit program",20,20,"iSpeedz v1.0",0,4)
sleep(10000)
WEnd
Func ZoomIn()
If WinActive("[TITLE:[Conquer2.0]") == 1 Then ;check if CO is the active window
$PID = WinGetProcess("[ACTIVE]", "")
$MemID = _MemoryOpen($PID)
$zoomSize = _MemoryRead($ZOOM, $PID)
$zoomSize += 20
_MemoryWrite($ZOOM, $PID, $zoomSize)
EndIf
EndFunc
|
|
|
06/05/2009, 06:16
|
#4
|
elite*gold: 0
Join Date: May 2009
Posts: 98
Received Thanks: 30
|
Quote:
Originally Posted by ookamocka
well obviously, but thats just the main part for what i'm trying to do there...
if u want it all...
Code:
#include "NomadMemory.au3"
Global Const $GET_PLAYER_ADDRS = 0x0064ff48
Global Const $ZOOM = 0x0064E7B0
HotKeySet("{F4}", "TurnOnOffCyclone")
HotKeySet("^{NUMPADADD}", "ZoomIn")
HotKeySet("^{NUMPADSUB}", "ZoomOut")
HotKeySet("!x", "Terminate")
While 1
ToolTip("F4 : Turn on/off Speedhack" & @CR & _
"Ctrl +/- : Zoom In/Out" & @CR & _
"Alt + X : Exit program",20,20,"iSpeedz v1.0",0,4)
sleep(10000)
WEnd
Func ZoomIn()
If WinActive("[TITLE:[Conquer2.0]") == 1 Then ;check if CO is the active window
$PID = WinGetProcess("[ACTIVE]", "")
$MemID = _MemoryOpen($PID)
$zoomSize = _MemoryRead($ZOOM, $PID)
$zoomSize += 20
_MemoryWrite($ZOOM, $PID, $zoomSize)
EndIf
EndFunc
|
Would help with "NomadMemory.au3"...
Anyways my guess is
_MemoryRead($ZOOM, $PID)
Isn't that supposed to be
_MemoryRead($ZOOM, $MemID)
|
|
|
06/05/2009, 07:56
|
#5
|
elite*gold: 0
Join Date: Mar 2009
Posts: 427
Received Thanks: 479
|
Quote:
Originally Posted by high7
Would help with "NomadMemory.au3"...
Anyways my guess is
_MemoryRead($ZOOM, $PID)
Isn't that supposed to be
_MemoryRead($ZOOM, $MemID)
|
i know NomadMemory.au3 is correct... and ya, thats deff a prob rofl -_- i fail... thx for that  ... just finished my own speedhack/zoomhack... got tired of waiting for Fujiy to update his... and it doesn't seem like he's going to, i think he's prob having trouble cuz the address for the speedhack is dynamic now? rather that or he just simply doesn't code for CO ne more  ... great thing about not leaching, just make ur own  ...
let me know if u want the finished speed/zoom hack and i'll send it to u, not planning on releasing it publicly (not cuz i'm being selfish, just cuz i don't want to constantly maintain the thread)... though i'm sure u can or already have made one urself
Edit: I lied, i decided w/e and just released it by adding them as a feature to my
|
|
|
Similar Threads
|
[Release] Vac Hack, Zoom hack, auto pot hack, Speed hack me+ mobs, shop hack...
04/02/2011 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 25 Replies
Deleted people must learn to do it by them self from now off ! :)
|
Zoom Hack Question from old player
06/30/2010 - Conquer Online 2 - 1 Replies
I hate to ask such a noob question, but I haven't logged in over 9months so I guess I am noob. My question is Zoom hacks able to be checked by that new feature TQ put in? What are odds (almost certain, 50/50, or worrying about a whole lot of nothing)? And what program would you recommend for just zoom and maybe speed.
|
[Question] Zoom Hack
01/19/2008 - Dekaron - 3 Replies
Hi ppl
i've started playing 2moons using some of yours great software mods
i've managed to put all this info and use the moonbot but i can't find the zoom hack... can anyone help me? thanks
regards from portugal
|
All times are GMT +1. The time now is 17:50.
|
|