Tailor Made Tools/Programs for You - AHK

03/31/2010 20:51 shimo diaz#1051
OK i found the problem i didn't know anything about funtions:o but now i put the function and the script worked but still there is a problem the memory address value always equals zero
i tried the calc script it worked but the value is 0
Please note that i am a total newbie so expect anything wrong from me:o
One more thing don't care for the guy above you're really a helpful guy and i owe u lots of thanks and knowledge:handsdown:
03/31/2010 21:12 brokenarrow_vip#1052
>.<
03/31/2010 22:18 shimo diaz#1053
Quote:
Originally Posted by brokenarrow_vip View Post
-is it possible to get cps and money with Cheat Engine ?
No it's not possible the money and CPs will be client sided so you will be the only one seeing it (it will be fake)
04/01/2010 01:56 Evan Lim#1054
shimo diaz@
if u are using Vista or Win7, make sure u have UAC turn off or Admin rights
because the calling of the read memory dll will require that

brokenarrow_vip@
1. i read the source, and dont understand vb at all. furthermore, there is no instructions on how/where to edit or update from the creator. so i dont even know where to begin with.
2. it is possible to get the value of the CP/Money u currently have, but it is impossible to edit the value of the amount and have effect in the server. at least thats what i understand
04/01/2010 18:42 shimo diaz#1055
@Evan
Sorry Evan I am using Windows XP professional SV2
If possible please upload your ReadMemory function file might be the problem!:confused:
04/02/2010 04:04 Evan Lim#1056
shimo diaz@
upload the function?? u cant call a function if i compiled into an EXE
the whole script is there, together with an example below it
tested on Calculator and Firefox, still works (obviously)

[Only registered and activated users can see links. Click Here To Register...]
notice my calc starts with PowerToy so i use Power in the WinWait and Function input
04/02/2010 11:50 shimo diaz#1057
@Evan
Sorry Evan I tried everything but still didn't work
That all what I did until now!
1- I made a new script and copied the ReadMemory function into it
2- I renamed the the script to "ReadMemory" then put it in lib folder (note I didn't compile it)
3- I copied the Calc example into a new script and launched the script. (note I didn't compile the script)
note: I am using AVG don't know if it's important
04/02/2010 12:25 brokenarrow_vip#1058
>.<
04/03/2010 03:03 ftp4life#1059
can i get a Autohunt WORKIN for patch 5095 i believe for trojans or warriors? sorry im not going to look through 103 pages ^ ^ that will take bout 3 hrs for me i read slow
04/03/2010 08:16 Evan Lim#1060
ftp4life@
there should be few working auto hunt bots in bot section
like the one i made, COELSE
04/23/2010 16:40 shimo diaz#1061
@evan
Been a while evan I still can't read memory addresses in AHK so just a question
In the ReadMemory function there this "OpenProcess" is this a user function if so please give me the code?!
04/24/2010 02:32 Evan Lim#1062
shimo diaz@
as shown in post #1060, thats the full code of it
no external codes needed
show me ur script and a screenshot of what u got (something similar to what i did in #1060)
04/24/2010 11:05 shimo diaz#1063
Here is a snapshot
[Only registered and activated users can see links. Click Here To Register...]
and that's the script
PHP Code:
Run calc.exe
winwait
Calc
StartTime 
:= A_TickCount

loop 1000
value
:=ReadMemory(0x41000C,"Calc")

ElapsedTime := A_TickCount StartTime
msgbox
Memory address 0x41000C = %value%`nTake %ElapsedTime% ms to loop 1000 times

ReadMemory(MADDRESS,PROGRAM)
{
winget, pid, PID, %PROGRAM%

VarSetCapacity(MVALUE,4,0)
ProcessHandle := DllCall("OpenProcess", "Int", 24, "Char", 0, "UInt", pid, "UInt")
DllCall("ReadProcessMemory","UInt",ProcessHandle,"UInt",MADDRESS,"Str",MVALUE,"UInt",4,"UInt *",0)

Loop 4
result += *(&MVALUE + A_Index-1) << 8*(A_Index-1)

return, result 

04/24/2010 20:36 Evan Lim#1064
shimo diaz@
? whats wrong with that
i could be 0 at the address 0x41000C
if the code is not working, it will be blank
04/25/2010 00:46 shimo diaz#1065
@Evan
OMG I am really an idiot I tried another address and it worked
but still there is a problem in conquer I found my HP address but it reads the value as zero :s
here the code
PHP Code:
Value:=ReadMemory(0xE72E40,"Conquer")
MsgBoxMemory address 0xE72E40 = %Value