Search found 29 matches

by el_dios85
Tue Oct 26, 2010 8:24 pm
Forum: MicroMacro general & support
Topic: memoryReadInt
Replies: 6
Views: 2201

Re: memoryReadInt

yes, it work.... i try the wrong way before.
like this memoryReadInt(proc, memoryReadInt(proc,tarbaseptr_addr ) + TarHP_offset);
and it didnt work....

Thank you very much, this target info session is completed.

I want to try to translate other function from Auto IT to micromacro.
by el_dios85
Tue Oct 26, 2010 12:12 pm
Forum: MicroMacro general & support
Topic: memoryReadInt
Replies: 6
Views: 2201

Re: memoryReadInt

I'm sorry, can anyone help me... I'm very confuse now... after success find the "target base offset", now the problem is, it cannot read the "Target HP". Is there something wrong about micromacro memoryReadIntPtr function? This is the source and result (Auto IT) ConsoleWrite(&quo...
by el_dios85
Tue Oct 26, 2010 11:10 am
Forum: MicroMacro general & support
Topic: memoryReadInt
Replies: 6
Views: 2201

Re: memoryReadInt

It already Solved. Thank You Admin Auto IT: Local $TAR_TEMP = memread(memread(memread($APP_BASE_ADDRESS) + 0x20) + $OFFSET_AT) Local $TARID_TEMP = memread(memread(memread($APP_BASE_ADDRESS) + 0x20) + $OFFSET_AT) If $TAR_TEMP = 0 Then $TAR = 0 $TAR_BASE = 0 ElseIf $TAR_TEMP <> $TAR Then $TAR = $TAR_T...
by el_dios85
Tue Oct 26, 2010 9:11 am
Forum: MicroMacro general & support
Topic: memoryReadInt
Replies: 6
Views: 2201

Re: memoryReadInt

Thanks, it works, now the problem only that warning... I try it first..
by el_dios85
Tue Oct 26, 2010 1:40 am
Forum: MicroMacro general & support
Topic: memoryReadInt
Replies: 6
Views: 2201

memoryReadInt

Hello, Can memoryReadInt read null address? pointer_offset = {0x8, 0x24, 0x18}; local pointer = memoryReadIntPtr(proc, staticbase_ptr, pointer_offset); printf("pointer [%x].\n", pointer); for i = 0, 768 do local tmp = memoryReadInt(proc, pointer + i * 4); local curbaseptr_addr = memoryRead...
by el_dios85
Mon Oct 18, 2010 9:30 am
Forum: MicroMacro general & support
Topic: Auto IT to Micromacro
Replies: 7
Views: 2707

Re: Auto IT to Micromacro

I'm sorry Admin, it didn't work. I try many ways and it get warning... is there any problem with the memread function (Auto IT) Func memread($adress, $type = 'dword') Local $struct = DllStructCreate($type) DllCall($kernel32, 'int', 'ReadProcessMemory', 'int', $mid, 'int', $adress, 'ptr', DllStructGe...
by el_dios85
Tue Oct 12, 2010 8:16 am
Forum: MicroMacro general & support
Topic: Auto IT to Micromacro
Replies: 7
Views: 2707

Re: Auto IT to Micromacro

Code: Select all

         local curbaseptr_addr = memoryReadInt(proc, memoryReadInt(proc, pointer  + i * 4) + 0x4);
After the looping, that's the line that generate the warning.
by el_dios85
Mon Oct 11, 2010 7:36 pm
Forum: MicroMacro general & support
Topic: Auto IT to Micromacro
Replies: 7
Views: 2707

Re: Auto IT to Micromacro

Thanks... "WARNING: Failure reading memory from 0x1DFDC0 at 0x4 in memoryReadInt(). Error code 299 (Only part of a ReadProcessMemory or WriteProcessMemory request was completed.)" This error always occured. I'm confuse. What should I check? actually I want to recode auto it script to micro...
by el_dios85
Mon Oct 11, 2010 3:43 am
Forum: MicroMacro general & support
Topic: Auto IT to Micromacro
Replies: 7
Views: 2707

Re: Auto IT to Micromacro

I got some clue. pointer = memoryReadInt(proc, staticbase_ptr) + 0x8 + 0x24 + 0x18; become pointer_offset = {0x8, 0x24, 0x18}; pointer = memoryReadIntPtr(proc, staticbase_ptr, pointer_offset); Now the problem is 1. Local $CUR_BASE = memread(memread($POINTER + $I*0x4) + 0x4) 2. If $TAR = memread($cur...
by el_dios85
Mon Oct 11, 2010 12:57 am
Forum: MicroMacro general & support
Topic: Auto IT to Micromacro
Replies: 7
Views: 2707

Auto IT to Micromacro

I want to translate auto it script to micromacro In Auto IT: Local $TAR_TEMP = memread(memread(memread($staticbase_ptr) + 0x20) + 0x38c) Local $POINTER = memread(memread(memread(memread($staticbase_ptr) + 0x8) + 0x24) + 0x18) For $I=0 To 768 Local $CUR_BASE = memread(memread($POINTER + $I*0x4) + 0x4...
by el_dios85
Tue Aug 24, 2010 7:30 am
Forum: MicroMacro general & support
Topic: Frozen in CE, how to Freeze it in micromacro
Replies: 2
Views: 1436

Frozen in CE, how to Freeze it in micromacro

Hi,

I want to ask, when we add address manually we can Freeze it, is there any function in micromacro to do that.

Example:
0F345AB value 0
to Freeze it set
0F345AB value 1 and tick the frozen
by el_dios85
Tue Apr 06, 2010 6:47 pm
Forum: MicroMacro general & support
Topic: Mouse Control
Replies: 7
Views: 2047

Re: Mouse Control

I already test "Perfect World Internation: Rising Tides.", mine is "Perfect World Indonesia", I think it is the same. Before the new patch, it work. But now, the monster which locked/targeted by the function "memoryWriteIntPtr(proc, charptr_addr, targetid_offset, monsterList...
by el_dios85
Fri Apr 02, 2010 2:58 am
Forum: MicroMacro general & support
Topic: Function BETWEEN AND
Replies: 4
Views: 1537

Re: Function BETWEEN AND

ok. Thanks
by el_dios85
Fri Apr 02, 2010 2:14 am
Forum: MicroMacro general & support
Topic: Function BETWEEN AND
Replies: 4
Views: 1537

Re: Function BETWEEN AND

I'm looking for function like
if (x > 1 and x <9) --> 2 3 4 5 6 7 8
in other programming language, there is function BETWEEN AND (If I remember there is one in SQL)
by el_dios85
Thu Apr 01, 2010 11:35 pm
Forum: MicroMacro general & support
Topic: Function BETWEEN AND
Replies: 4
Views: 1537

Function BETWEEN AND

is the any function Between 1 and 9?
I have searching in Lua manual but didnt found

Thanks
by el_dios85
Thu Apr 01, 2010 10:10 pm
Forum: MicroMacro general & support
Topic: Mouse Control
Replies: 7
Views: 2047

Re: Mouse Control

There is no other way, only ALT + 1 or click the skill.
Do you ever heard this situation.
After the patch, the monster which was targeted from bot, the char cant use skill, but when we click the monster with mouse, the char can use skill. I think is prevention to use bot on this game.

Thanks
by el_dios85
Thu Apr 01, 2010 5:33 am
Forum: MicroMacro general & support
Topic: Mouse Control
Replies: 7
Views: 2047

Re: Mouse Control

I have try but cannot work with multiclient. The problem is, after detach() it only work on the active window. I use the latest micromacro (1.0) and the script is like this. function fight() --I want to press a skill (ALT + 1) or press from skill bar (mouse coordinate 700, 740) on multiclient --I ha...
by el_dios85
Tue Mar 30, 2010 6:42 pm
Forum: MicroMacro general & support
Topic: Mouse Control
Replies: 7
Views: 2047

Mouse Control

mouseSet(100, 200); mouseLClick(); I made the function with this, but at the 2st client it work. after I set to the 2nd client, it didnt work. I'm using v.0.99 because there are several error if I use the v.1.0. Is there any change about Mouse control in 1.0? Is the function above cant be use on mul...
by el_dios85
Tue Mar 30, 2010 6:39 pm
Forum: MicroMacro general & support
Topic: Rule for keyboardHold and key.VK_ALT
Replies: 12
Views: 3811

Re: Rule for keyboardHold and key.VK_ALT

Thank you, I have try VK_MENU and it didnt work. But I think the problem is from the game. I want to start a new topic about Mouse Control. see you