Is [B]Allods online bot[/B] in progress?

04/12/2010 20:32 gogomast23#31
Quote:
Originally Posted by waltobc6 View Post
i built a dupe item program for allods online,
i wont realse it because i dont want it to be patch,
but i will sell it to 5 persons for the high bid.

here is some screenshots of me duping few items:

link: [Only registered and activated users can see links. Click Here To Register...]

another item:

link: [Only registered and activated users can see links. Click Here To Register...]

ALSO:
this dupe program is for EU servers, but US dupe program will be up soon,
just need to have free time.

People that really want to buy it:
email me in [Only registered and activated users can see links. Click Here To Register...]
as title type "Want to buy ur dupe program"
inside put the prise and ur MSN.
i will conntact the people then.

good day.
Hack ala Paint ?
Everybody can fake pictures like u , idiot
04/12/2010 23:09 BBM4st3r#32
Quote:
Originally Posted by gogomast23 View Post
Hack ala Paint ?
Everybody can fake pictures like u , idiot
a dupe hack really exist but it is stupid pay money for it...
04/13/2010 09:38 Flashvoyage#33
Quote:
Originally Posted by Lemonadez View Post
using autoit or autohotkey works *need to use dll to call* and emulate keyboard as mouse.
Hi,

i have tried to use autoit for automatic movement. I normally use this function in wow (Multiboxing) so it should work, but not in Allods Online. Any idea why?

ohrm... here the code:
Code:
Func _KeySendHWND($hwnd, $inkey, $event="pressed")
	$user32dll = DllOpen("user32.dll")
	
	;Hex Key for WM_KEYDOWN, WM_KEYUP from helpfile
	$WM_KEYDOWN = 0x100
	$WM_KEYUP   = 0x101
	
	;Get Key (hex)
	$key = DllCall($user32dll, "int", "VkKeyScan", "int", Asc(StringLower($inkey)))
	$keyhex = $key[0]
	;Create virtual Key:
	$ret = DllCall($user32dll, "int", "MapVirtualKey", "int", $keyhex, "int", 0)
	;create lparam info
	$lparam = BitShift($ret[0], -16)
	$lparam = BitOr($lparam, 1)
	
	Select
	Case $event = "pressed"
		DllCall($user32dll, "int", "PostMessage", "hwnd", $hwnd, "int", $WM_KEYDOWN, "int", $keyhex, "int", $lparam)
		Sleep(15)
		DllCall($user32dll, "int", "PostMessage", "hwnd", $hwnd, "int", $WM_KEYUP, "int", $keyhex, "int",   BitOR($lparam, 0xC0000000))
	Case $event = "down"
		DllCall($user32dll, "int", "PostMessage", "hwnd", $hwnd, "int", $WM_KEYDOWN, "int", $keyhex, "int", $lparam)
	Case $event = "up"
		DllCall($user32dll, "int", "PostMessage", "hwnd", $hwnd, "int", $WM_KEYUP, "int", $keyhex, "int",   BitOR($lparam, 0xC0000000))
	EndSelect

	DllClose($user32dll)
EndFunc

Func _Main ()
	
	;should move 1 second forward
	$hwnd = WinGetHandle("Allods Online")
	if @error Then
		msgbox (4096, "Error...", "No Allods Online Window!")
		
	Else
		call("_KeySendHWND",$hwnd, "w", "down")
		sleep (1000)
		call("_KeySendHWND",$hwnd, "w", "up")
		
	EndIf
	
EndFunc


Call ("_Main")
thnx & bye
FlashVoyage
04/19/2010 21:35 Ngoc_quang#34
I show you how to dupe, but not really interested in money :)
- u must be german
- over 18
- offer anything from ingame
- information i only give out for 2 guys, not more

write me email with offer and information about u, only german
[Only registered and activated users can see links. Click Here To Register...]
04/22/2010 07:59 Sirmabus#35
Quote:
Originally Posted by Flashvoyage View Post
Hi,

i have tried to use autoit for automatic movement. I normally use this function in wow (Multiboxing) so it should work, but not in Allods Online. Any idea why?

ohrm... here the code:
It could be a number of reasons.
1) It might not use UI messages like WM_KEYDOWN for input. Although could be using raw input (see WM_INPUT).
2) Could be using DirectInput exclusively for keyboard input.

Also since it has a protection system there are a number of things it can be doing in user mode to detect when messages are coming from in or outside the application.

You'll have to do a bit of reversing, and, or, testing to figure these out..
05/08/2010 08:45 dkwannab#36
I'd love to see a small Allods Hacking community form and from what I've tested, I know the game can be hacked using CE/Ollydbg and probably a lot of other methods.

I have no problems at all running CE & scanning, etc + "Allydbg" while the game is up, however because of the Starforce protection, the game crashes whenever a debugger is detected (I.e. when I attach the debugger from CE)

If we can find a way to bypass this the game would become extremely easy to hack.

Also on a side note, I'm currently able to get a slow speed hack working for usually about a minute (and then i get errors and have to restart the game). I'm not sure what other things can be done at the moment, as there's probably a fair bit of server sides stuff.

From my personal experience I know developing hacks for the game would still be very beneficial, even though it's quest based (bots on the other hand aren't going to be of much help, we need to focus our attention on bypassing starforce & finding out what hacks are possible).

Edit: There's plenty of interest for this game on various forums & boards, but I've yet to find an Allods community - If we can start something here than great, if not I'd be pleased to find one elsewhere (if you know of something, or are going to create a forum, website, etc please let me know) - cheers

Edit: @Flashvoyage
I read somewhere, I can't remember where, that Allods recognizes if the keys entered are legitimate or not. The person went on to say that when they entered keys legitimately there seemed to be a small delay for the block against illegitimately entered keys (and so the bot he created would work for a very short period of time after he pressed a key in the game. What he wanted to know was if it was possible to bypass this check or somehow enter legitimate keystrokes into the game at regular intervals).
05/28/2010 15:50 goubar#37
is it possible to make just a simple autoattack since the game doesnt have one :confused:
07/04/2010 22:19 Jorak#38
I would like to have a Gold Hack or something like this
Any Ideas how I could make that or get it?
07/09/2010 12:16 henkj1#39
you can't get a gold hack or hack it yourself, at least not here, because the gold is defined serverside and not clientside. all we hack is clientside, because if you hack the server and someone gets this, you will have to pay some thousand euros to gpotato - it's illegal.
07/11/2010 16:07 XchangliiX#40
Quote:
Originally Posted by henkj1 View Post
you can't get a gold hack or hack it yourself, at least not here, because the gold is defined serverside and not clientside. all we hack is clientside, because if you hack the server and someone gets this, you will have to pay some thousand euros to gpotato - it's illegal.
Wrong, data will be saved to server ;) but client gives the command, hacking hash in client with a dll injection and send the grap gold command to server, first sniff and old packet to get struct of packet.


Quote:
Originally Posted by dkwannab View Post
I'd love to see a small Allods Hacking community form and from what I've tested, I know the game can be hacked using CE/Ollydbg and probably a lot of other methods.

I have no problems at all running CE & scanning, etc + "Allydbg" while the game is up, however because of the Starforce protection, the game crashes whenever a debugger is detected (I.e. when I attach the debugger from CE)

If we can find a way to bypass this the game would become extremely easy to hack.

Also on a side note, I'm currently able to get a slow speed hack working for usually about a minute (and then i get errors and have to restart the game). I'm not sure what other things can be done at the moment, as there's probably a fair bit of server sides stuff.

From my personal experience I know developing hacks for the game would still be very beneficial, even though it's quest based (bots on the other hand aren't going to be of much help, we need to focus our attention on bypassing starforce & finding out what hacks are possible).

Edit: There's plenty of interest for this game on various forums & boards, but I've yet to find an Allods community - If we can start something here than great, if not I'd be pleased to find one elsewhere (if you know of something, or are going to create a forum, website, etc please let me know) - cheers

Edit: @Flashvoyage
I read somewhere, I can't remember where, that Allods recognizes if the keys entered are legitimate or not. The person went on to say that when they entered keys legitimately there seemed to be a small delay for the block against illegitimately entered keys (and so the bot he created would work for a very short period of time after he pressed a key in the game. What he wanted to know was if it was possible to bypass this check or somehow enter legitimate keystrokes into the game at regular intervals).
I found a old tutorial in french to unpack starforce 1.0 we/you may can find some informations there. I am not french and google trans. does not its work :D or i am just retarded xD

here: [Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]


Quote:
Originally Posted by Flashvoyage View Post
Hi,

i have tried to use autoit for automatic movement. I normally use this function in wow (Multiboxing) so it should work, but not in Allods Online. Any idea why?

ohrm... here the code:
Code:
Func _KeySendHWND($hwnd, $inkey, $event="pressed")
	$user32dll = DllOpen("user32.dll")
	
	;Hex Key for WM_KEYDOWN, WM_KEYUP from helpfile
	$WM_KEYDOWN = 0x100
	$WM_KEYUP   = 0x101
	
	;Get Key (hex)
	$key = DllCall($user32dll, "int", "VkKeyScan", "int", Asc(StringLower($inkey)))
	$keyhex = $key[0]
	;Create virtual Key:
	$ret = DllCall($user32dll, "int", "MapVirtualKey", "int", $keyhex, "int", 0)
	;create lparam info
	$lparam = BitShift($ret[0], -16)
	$lparam = BitOr($lparam, 1)
	
	Select
	Case $event = "pressed"
		DllCall($user32dll, "int", "PostMessage", "hwnd", $hwnd, "int", $WM_KEYDOWN, "int", $keyhex, "int", $lparam)
		Sleep(15)
		DllCall($user32dll, "int", "PostMessage", "hwnd", $hwnd, "int", $WM_KEYUP, "int", $keyhex, "int",   BitOR($lparam, 0xC0000000))
	Case $event = "down"
		DllCall($user32dll, "int", "PostMessage", "hwnd", $hwnd, "int", $WM_KEYDOWN, "int", $keyhex, "int", $lparam)
	Case $event = "up"
		DllCall($user32dll, "int", "PostMessage", "hwnd", $hwnd, "int", $WM_KEYUP, "int", $keyhex, "int",   BitOR($lparam, 0xC0000000))
	EndSelect

	DllClose($user32dll)
EndFunc

Func _Main ()
	
	;should move 1 second forward
	$hwnd = WinGetHandle("Allods Online")
	if @error Then
		msgbox (4096, "Error...", "No Allods Online Window!")
		
	Else
		call("_KeySendHWND",$hwnd, "w", "down")
		sleep (1000)
		call("_KeySendHWND",$hwnd, "w", "up")
		
	EndIf
	
EndFunc


Call ("_Main")
thnx & bye
FlashVoyage
Multiboxing will work fine if you code 2 dll's, one to send the packets to the other client and modifie them, the other in all boxes/clients to handshake traffic with the "headclient" so that it can calc. the new posotion, revice and send to server.
08/05/2010 06:15 coolshanth#41
This isn't a simple game like RS or Conquer, very dynamic and already suffers from bugs, bottlenecked performance and consistent but bearable lag. I would expect a decent bot for this program to be somewhere around several MBs at least and far from free till there are outdated bots.
10/06/2010 05:23 tbooz14#42
is there a bot for ph server??
01/16/2011 12:52 aldenoidzki#43
+1 to coolshanth.. this game has lots of bugs.. in fact you dont need bot for this game.. you'll reach level cap by just doing your quest, no need for afking with bot you'll just waste time.. "using bots in allods = lame" peace
02/03/2011 17:49 Coolcolioserhat#44
i send elite gold
02/27/2011 10:23 hate00#45
i quit this game