|
You last visited: Today at 23:24
Advertisement
must active on client window to use bot ?
Discussion on must active on client window to use bot ? within the Perfect World forum part of the MMORPGs category.
08/15/2010, 07:09
|
#46
|
elite*gold: 0
Join Date: Nov 2009
Posts: 31
Received Thanks: 0
|
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
|
#47
|
elite*gold: 0
Join Date: Nov 2009
Posts: 31
Received Thanks: 0
|
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
|
#48
|
elite*gold: 0
Join Date: Nov 2009
Posts: 31
Received Thanks: 0
|
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
|
#49
|
elite*gold: 0
Join Date: Feb 2010
Posts: 45
Received Thanks: 2
|
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
|
#50
|
elite*gold: 0
Join Date: Nov 2009
Posts: 31
Received Thanks: 0
|
|
|
|
08/15/2010, 08:51
|
#51
|
elite*gold: 0
Join Date: Oct 2008
Posts: 1,243
Received Thanks: 670
|
Quote:
Originally Posted by unnang
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
|
#52
|
elite*gold: 0
Join Date: Oct 2008
Posts: 1,243
Received Thanks: 670
|
Quote:
Originally Posted by ntKid
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
|
#53
|
elite*gold: 0
Join Date: Nov 2008
Posts: 181
Received Thanks: 465
|
Quote:
Originally Posted by Smurfin
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
|
#54
|
elite*gold: 0
Join Date: Aug 2010
Posts: 13
Received Thanks: 0
|
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
|
#55
|
elite*gold: 0
Join Date: Apr 2008
Posts: 84
Received Thanks: 5
|
udah banyak yang bisa bot itu di para farmer gold
|
|
|
08/16/2010, 16:22
|
#56
|
elite*gold: 0
Join Date: Aug 2009
Posts: 10
Received Thanks: 0
|
BOT Perfect World
 jadi udah bisa dual BOT ya??
tolong donk share di sini!!
 thanks before
|
|
|
08/16/2010, 17:18
|
#57
|
elite*gold: 0
Join Date: Feb 2010
Posts: 45
Received Thanks: 2
|
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
|
#58
|
elite*gold: 0
Join Date: May 2008
Posts: 13
Received Thanks: 0
|
Quote:
Originally Posted by unnang
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
|
#59
|
elite*gold: 0
Join Date: Aug 2010
Posts: 13
Received Thanks: 0
|
untuk semua pembuat bot
jika sudah ada bot yang bisa aktif beberapa client untuk PW Indonesia mohon posting di sini 
terima kasih untuk semua pembuat bot yang telah menanggapi posting saya 
kalian semua yang terbaik
|
|
|
08/16/2010, 22:43
|
#60
|
elite*gold: 0
Join Date: Nov 2009
Posts: 31
Received Thanks: 0
|
@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
|
|
|
 |
|
Similar Threads
|
How to use a dual client on rf online using window 7
12/03/2010 - RF Online - 5 Replies
If wanna know how to use it if your a window 7 user.. kindly send me a message here or add my YM ID.. [email protected] and I'll teach you how to do it..
But wait guys, don't expect its free..
or.. you can trade it with your dupe program ( sure and tested)
|
How active are the GM?
07/16/2009 - Dekaron - 8 Replies
.
|
1Cabal Window 1Maple Window at Same TIME??
05/26/2008 - Cabal Hacks, Bots, Cheats, Exploits & Macros - 0 Replies
let talk about 1 cabal 1 maple at same time...
possible??
how to do tat...??
teach me please :p
|
Rename CO2 window title (any window actually)
05/13/2006 - CO2 Exploits, Hacks & Tools - 4 Replies
I have seen a few posts requesting this. It is a simple autohotkey macro nothing fancy here. You will notice also that the UPX packer detection is not triggered. If you use autohotkey and want to know how to remove the packer PM me it is rather simple. To use this little tool thingie it is very simple:
Execute the code.
Focus your window.
Press Hotkey CTRL+WIN+w
Change the Title.
Apply
|
All times are GMT +1. The time now is 23:24.
|
|