must active on client window to use bot ?

08/15/2010 07:09 unnang#46
i'v try this one..

_SendMessageA($HANDL, 28, KEYCODE("{9}")) ; call kernel to prepare app b4 receive message
_SendMessageA($HANDL, 260, KEYCODE("{9}")) ; sending key to prepared app


no need to unfreeze your client.. it'll unfreeze it for you.. ("WM_activateapp / number = 28), keycode("{9}") = 57 in ascii code.


i don't want the unfreezer, but i need the underground / stealth function that sending a keycode to an inactive app / e'client (in low level, it's work. but no clue @all this time)
08/15/2010 07:20 unnang#47
if e'client is unfreezed, it'll use a lot of the display card n memory resource.. too bad..
also check the processor usage.. too high.. and e'client (in multi client) will run too slow. not good.
08/15/2010 07:31 unnang#48
solo, dual, multi client. it's works. but i need more eficient and efective way.. if anyone can help. pliss.. :(
08/15/2010 08:10 demond1#49
how to use that function unnang??

im use mhs before,can you help me??

show me what u'r using//
08/15/2010 08:15 unnang#50
[Only registered and activated users can see links. Click Here To Register...]
08/15/2010 08:51 Smurfin#51
Quote:
Originally Posted by unnang View Post
if e'client is unfreezed, it'll use a lot of the display card n memory resource.. too bad..
also check the processor usage.. too high.. and e'client (in multi client) will run too slow. not good.
yea the framerate is lower with lots of clients unfreezed, I ran four this morning doing Weapon Quest for my assassin in fb69 Gerbang Hantu, and got like 17 fps shown using fraps, zzz even in a quiet area and only brought 4 chars the performance drops a lot.
08/15/2010 10:42 Smurfin#52
Quote:
Originally Posted by ntKid View Post
while 1
_SendMessage(WinGetHandle("Element Client"), $WM_KEYDOWN, 0x31)
_SendMessage(WinGetHandle("Element Client"), $WM_KEYUP, 0x31)

wend

I also advise u to use postmessage instead of sendmessage so u dont have to be in queue
thanks for the info ntKid, I'll also check how to use a postmessage later.
How about sending many keypresses at once in one string like for example 123456 , do I have to use each separate _SendMessage or can I do it like controlsend("Element Client", "","","123456") ?
08/15/2010 18:20 ntKid#53
Quote:
Originally Posted by Smurfin View Post
thanks for the info ntKid, I'll also check how to use a postmessage later.
How about sending many keypresses at once in one string like for example 123456 , do I have to use each separate _SendMessage or can I do it like controlsend("Element Client", "","","123456") ?
Yep u have, just make some simple function to do it for u

VOID dwSendString(HWND Window,LPSTR string)
{
int size = strlen(string);

for (int i = 0; i < size; ++i)
{
char c = string[i];
unsigned short scan = VkKeyScan(c);
unsigned char vk = (scan & 0xff),mvk = (unsigned char)MapVirtualKey(c, 0);

PostMessage(Window,WM_KEYDOWN,vk,mvk);
PostMessage(Window,WM_KEYUP,vk,mvk);
}
}
dwSendString(WinGetHandle("Element Client"),"123456");
08/16/2010 01:31 Prof.Dry#54
for Smurfin and other bot maker

if there is already a bot for some clients for PW Indonesia please post in here


thanks for all bot makers have responded to my post
you all the best
08/16/2010 10:46 wongfei888#55
udah banyak yang bisa bot itu di para farmer gold
08/16/2010 16:22 nyetexisbaik#56
:confused: jadi udah bisa dual BOT ya??
tolong donk share di sini!!

:handsdown: thanks before :handsdown:
08/16/2010 17:18 demond1#57
om smurf

jadi mw dual bot mst mengunakan ce??

need help >.<

in english

so if i want to multi client bot i must use CE??
08/16/2010 19:01 yonadhi#58
Quote:
Originally Posted by unnang View Post
yeah.. i can read it a little. but poor.. i made te unfreezer this day. and.. make me wanna cry..
omg.. i only had small computer, P4 2.0 gHz, 1 gb memory, and the worst is geforce 4 64mb. huhuhuhuuuuuuuuuuuuuuuu

this is the for unfrezer in auto it

$FZ1 = _MEMORYREAD($APP_BASE_ADDRESSFZ, $PROCESS_INFORMATION1)
If $FZ1 <> 1 Then
MEMORYWRITE($APP_BASE_ADDRESSFZ, $PROCESS_INFORMATION1, "1")
EndIf


ps. $APP_BASE_ADDRESSFZ = 10230148. and as the addition.. open e'client in ollydbg.. press ctrl+f9 to continue process..
after e'client fully loaded in olly, press ctrl+G and type this address 004300D45, should pointed to this code JE 0043015F, simply change it to nops. (right click => binary => fill wit nops" ) it can unfreeze it too witout using $APP_BASE_ADDRESSFZ in autoit.

i think.. i'll retired .. can't play no more with my computer.. need a super one lol..
I Still can't unfreeze. if I use auto oit. nothing happend.. if i use ollydbg address not found.. How to unfreeze Pw Ind???
08/16/2010 20:02 Prof.Dry#59
untuk semua pembuat bot :)

jika sudah ada bot yang bisa aktif beberapa client untuk PW Indonesia mohon posting di sini :(:handsdown:


terima kasih untuk semua pembuat bot yang telah menanggapi posting saya :handsdown:
kalian semua yang terbaik:handsdown:
08/16/2010 22:43 unnang#60
@yonadhi..

try this

Func Test()
global $Handl = ControlGetHandle($App_Title, "", "")
_SendMessageA($HANDL, 28, KEYCODE("{9}")) ;buat manggil slot 9..
_SendMessageA($HANDL, 260, KEYCODE("{9}")) ;coba aja letakin skill town portal di slot 9
end func
Func KEYCODE($KEY)
If $KEY == "{F1}" Then
Return 112
ElseIf $KEY == "{F2}" Then
Return 113
ElseIf $KEY == "{F3}" Then
Return 114
ElseIf $KEY == "{F4}" Then
Return 115
ElseIf $KEY == "{F5}" Then
Return 116
ElseIf $KEY == "{F6}" Then
Return 117
ElseIf $KEY == "{F7}" Then
Return 118
ElseIf $KEY == "{F8}" Then
Return 119
ElseIf $KEY == "{0}" Then
Return 48
ElseIf $KEY == "{1}" Then
Return 49
ElseIf $KEY == "{2}" Then
Return 50
ElseIf $KEY == "{3}" Then
Return 51
ElseIf $KEY == "{4}" Then
Return 52
ElseIf $KEY == "{5}" Then
Return 53
ElseIf $KEY == "{6}" Then
Return 54
ElseIf $KEY == "{7}" Then
Return 55
ElseIf $KEY == "{8}" Then
Return 56
ElseIf $KEY == "{9}" Then
Return 57
ElseIf $KEY == "{TAB}" Then
Return 9
ElseIf $KEY == "{LMB}" Then
Return 1
ElseIf $KEY == "{RMB}" Then
Return 2
ElseIf $KEY == "{SHIFT}" Then
Return 160
ElseIf $KEY == "{CTRL}" Then
Return 162
ElseIf $KEY == "{ALT}" Then
Return 18
ElseIf $KEY == "{SPACE}" Then
Return 32
ElseIf $KEY == "{ESC}" Then
Return 27
ElseIf $KEY == "{+}" Then
Return 107
ElseIf $KEY == "{-}" Then
Return 109
Else
Return "none"
EndIf
EndFunc


ya kl mo isa jalan, mesti di call dunk "Func Test()" na ommmm... hehehe