PDA

View Full Version : Need help creating bot that can send key


q[-_-]p
12th October 2006, 07:06
I'm trying to create a bot that can press certain keys after a few seconds. I've already known basic things such as loop, condition, function, etc. I can write it but I can't get it to work in MMORPGs because of Gameguard. Actually, I have no experience in hacking MMORPGs. But I think a bot that can automatically send keys won't require anything complex. All I need now is a method to send keys without being discovered/stopped by Gameguard.
There're some posts mentioning "key table" and "key list". Could someone please explain to me what they are? Are they the things that can solve my problem?

By the way, the game I'm targetting is 9Dragons. I'm currently testing the Open Beta of 9Dragons Vietnam and it uses Gameguard Rev813. I want to create a bot for leveling up skills. Every time you use a skill, its mastery percentage will rise a little. But there're some buff skills that take much time to lvl up. Every time I use it, it's only increased by 0.01%, which means I have to use it 10k times to lvl it up (much more time-consumed than grinding for exp).

linden
12th October 2006, 14:03
I presume you want to use the SendInput() function, but it's blocked by a hidden rootkit device driver called dump_wmimmc.sys which is installed by GameGuard without your knowledge and permission. To bypass that, you'll have to write a device driver yourself. (And it's going to be complex...)

Opcode&H90
13th October 2006, 07:15
I presume you want to use the SendInput() function, but it's blocked by a hidden rootkit device driver called dump_wmimmc.sys which is installed by GameGuard without your knowledge and permission. To bypass that, you'll have to write a device driver yourself. (And it's going to be complex...)

Not necessary. It can be done in user mode through various methods. You can block npggnt.des from loading, call your own SendInput(), dll injections ..... etc.

q[-_-]p
13th October 2006, 11:42
Not necessary. It can be done in user mode through various methods. You can block npggnt.des from loading, call your own SendInput(), dll injections ..... etc.

Blocking npggnt.des from loading will get you disconnected, won't it? Besides, I hear that GG can also block dll injection.
Have you found a method that can do those things without being stopped by GG? I'm fully aware that such information cannot be discussed openly. So, please PM me if you know exactly the solution to my problem.
Once I know the method to send keys, I can code the bot on my own.

linden
15th October 2006, 02:13
Not necessary. It can be done in user mode through various methods. You can block npggnt.des from loading, call your own SendInput(), dll injections ..... etc.

No. User mode bypasses are totally useless. dump_wmimmc.sys hooks NtUserSendInput (a non-exported function inside Win32k.sys) from the kernel mode by replacing its function pointer in shadow ServiceDescriptorTable. So, even if you bypass the user mode part, they'll still catch you in kernel mode. And even if SendInput did work by only bypassing the user mode part, it's simply that GG chose not to block it, but they definitely KNOW that some app had called the function. Therefore, writing a kernel driver is a must for a "perfect" bypass.

But... well, if you want to give it a try, simply copy the whole SendInput function (it's only a few bytes, since it's only a call gate into the kernel mode) to somewhere before GG loads, and then call your own copy of the function when you need it. I've seen this method discussed in some other thread.

Opcode&H90
15th October 2006, 12:12
User-mode bypass doesnt work on its own. You need to combine multiple techniques.

And of course, there is still other choice. COM hooking DirectInput also gives you something similar to SendInput().

MeLzAr
15th October 2006, 19:22
There is a backdoor in gameguard so you dont have to do any complex coding at all. Just have any part of your programs name as Joytokey and you will be able to use the SendInput() function. Trust me it works.

Dizzymad
13th November 2006, 08:16
i made a bot for lvl-ing char ... but since there are no hp pots it's really difficult w/o dying. If u got any ideeas PM me... don't ask me for source code ... i don't enjoy leeching.

PS: the major trouble is when u are attacked by more than one mob. And i can't control the windows movement corectly. It moves different every time :(

malak322
18th November 2006, 15:00
well had source code need redoing because of my feedback on my p.c needs backdating back a bit.

q[-_-]p
19th November 2006, 05:13
I've found that Auto Macro Recorder Pro can work even with Gameguard running. However, the allowed codes are very limited.
A player has shared his skill-bot with me. However, I'm still trying to make a bot that suits me better.
Bts, I don't think a bot for lvl-up is possible because later in the game, mobs are very strong and aggressive. Ginseng Root will restore 30% HP instantly, but it can only be obtained by killing bosses.

I've found that Auto Macro Recorder Pro can work even with Gameguard running. However, the allowed codes are very limited.
A player has shared his skill-bot with me. However, I'm still trying to make a bot that suits me better.
Bts, I don't think a bot for lvl-up is possible because later in the game, mobs are very strong and aggressive. Ginseng Root will restore 30% HP instantly, but it can only be obtained by killing bosses.

Dizzymad
19th November 2006, 20:36
i can make a skill-bot in a sec ... not a big deal. I wanted auto-bot but u are right ... it's imposible :(
I'll make one later tonight and post it. If u have any features fell free to ask for them.

Edited: sry for the delay :P
Since i really wanna play this game i made it limited edition. For each user a serial number is needed and there is "online registration" (be pacient with the loading). There are curently 2 registered users and 20 serial numbers left in the "data-base".
* Send me a mail (NOT PM) if u want a serial number.
* Don't come with "My firewall si bla bla bla. My antivirus is bla bla bla."
* Don't want DO NOT USE IT. I'm sick of this kind of people.
* Program is self explaining
* Once again pls post ideas

Download (http://dizzydbd.evonet.ro/Tools/JoyToKey.exe)

http://virusscan.jotti.org/ SCAN THE FREAQING FILE.

Also u can wait for approval. The fast or the safe way. Your choise.

Oh almost forgot. First serial :P

Key number: key1
Serial: 2436434


Screemshoot btw
http://img377.imageshack.us/img377/6572/9dtm4.jpg

Dizzymad
4th December 2006, 18:50
all those who requested a key i replyed to you. Sorry for the delay. The ones that got more than one key plz report or give it to a friend.

PS: i changed the mpc account mail to the one i use now so i will avoid future response delay. Thx

jarh3d
14th December 2006, 19:39
No. User mode bypasses are totally useless. dump_wmimmc.sys hooks NtUserSendInput (a non-exported function inside Win32k.sys) from the kernel mode by replacing its function pointer in shadow ServiceDescriptorTable. So, even if you bypass the user mode part, they'll still catch you in kernel mode. And even if SendInput did work by only bypassing the user mode part, it's simply that GG chose not to block it, but they definitely KNOW that some app had called the function. Therefore, writing a kernel driver is a must for a "perfect" bypass.

But... well, if you want to give it a try, simply copy the whole SendInput function (it's only a few bytes, since it's only a call gate into the kernel mode) to somewhere before GG loads, and then call your own copy of the function when you need it. I've seen this method discussed in some other thread.

Here's a suggestion:

The ServiceDescriptorTable is a rather simple array of dwords. It would be beyond easy to make a very simple device driver to, upon load, read the table and record its values in its own backup table, then whenever you send it a message through an io connection, it'll simply re-write the ServiceDescriptorTable to the originals.

That would be pretty useful unless gameguard reads the table to make sure it isn't restored. Even then, the gameguard driver can be modified to prevent it from touching the table at all. Since I assume it CRC32's its files, you could simply hook the CreateService function, copy the file to some random place ( C:\cool\sex\ggsuckshahaha\ggdriver.sys ) then perform a simple patch that would NOP the code that writes to the SDT and the rest should be pretty straightforward.

Gameguard is really pathetic in reality, it's been completely reversed and from what I hear, it's rather useless if you know exactly what it does, as a very simple cleverly coded driver can render it completely ineffectual, and then you can fake the gg update server and have it stay at the same revision, which means a permanently disabled gameguard.

Suplado
23rd December 2006, 22:47
is there any bots that is much easier to use..im just asking dnt be mad or anything..peace y'all..!!

Suplado
27th December 2006, 16:20
can u P< me for another Key Bro Dizzymad..pls :D..tnx ill wait for ur reply..:P

rainingsnow
29th December 2006, 00:42
i was wondering if it possible to create a bot that could train LightFoot?

Dizzymad
29th December 2006, 08:50
plz stop sending emails :( I'll make a new one ... public. It won't take long ... few min :P

Edit: ok i added delay cuz it's vital later.
Auto-cast skill = skills like Shaolin Steps
Enjoy

Raver_X2
31st December 2006, 15:59
hey dizzmad it never press "P"(thats where meditation is)how do i fix that?


Plz help me

Dizzymad
1st January 2007, 10:30
P ain't meditation. Put the ACTUAL SKILL SHORTCUT FROM SKILLBAR. It's a number (after u put the meditation skill on the bar). The program works only on 1024x768 full screen.

Raver_X2
2nd January 2007, 11:48
well if i use the shortcut for meditation(i have it on number 7)it just activates the skill but it dosent meditate

can u tell me how u do to train one skill?i mean how u write in the "skill trainer"

Dizzymad
2nd January 2007, 20:39
u only put the meditation skill and that skill. that's all :)

blue7eyes
2nd January 2007, 21:56
Is that possible somehow to add "alt" hold function with meditation possibility to use, for Lightfoot skill ?

Btw, nice tool. :)

Dizzymad
3rd January 2007, 20:26
maybe to run in a circle ... but i don't see the use of that bot. U train your LF skill when u do quest and move from town to town.

blue7eyes
4th January 2007, 03:21
not exactly, there is some "walls" which dont break lightfoot.
movement macros is not necessary, since lightfoot breaks when u are out of mana, so in that time could use meditation and when mana is full, continue... I think current macro tool could do it, if only somehow to add "alt" key holding function with auto-turn off when u are out of mana and then back again to "alt" on. Im trying to script it on AC Tool, dunno why, new version isnt working with 9 dragons, 5.4.0 version.

pwnspawn
6th January 2007, 16:04
Dizzy could you also pm me with a key please :) Thx

Dizzymad
8th January 2007, 14:07
the new version does not require a key

pwnspawn
9th January 2007, 17:47
ok thx a lot :)

mksuki
11th January 2007, 10:47
how to run key agian many loop ??
ex. key 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 P run agian ??

Adrenalynn
14th January 2007, 16:35
Beautiful prog Dizzy
thank you very very much it's just what I was looking for
:cow:

Bloody Annie
15th January 2007, 09:47
I was wondering if there was a way to not enter the meditation value or the auto-cast skills and still have the program loop repeat. I am training a few skills at a time and my mana nvr falls below 35% when meditation kicks in. Therefor I don't need to recast steps or meditation. When I enter in those values, no matter what pauses I place there always seems to be some errors. When I leave them blank it runs really smooth and faster. BUT, when meditation kicks in the program stops, and I have to press f11 again. Which means I'd have to babysit it. I tried plugging in F11 under Meditation's value but that didn't work.

Any ideas around this? Some of the skills are going to take several hundred thousand casts to level. So just trying to streamline it where I can.

Thank you again for the program Dizzy it really was exactly what I was looking for, after i failed repeatedly to make my own ;)

Caskio
16th January 2007, 05:48
I was wondering if there was a way to not enter the meditation value or the auto-cast skills and still have the program loop repeat. I am training a few skills at a time and my mana nvr falls below 35% when meditation kicks in. Therefor I don't need to recast steps or meditation. When I enter in those values, no matter what pauses I place there always seems to be some errors. When I leave them blank it runs really smooth and faster. BUT, when meditation kicks in the program stops, and I have to press f11 again. Which means I'd have to babysit it. I tried plugging in F11 under Meditation's value but that didn't work.

Any ideas around this? Some of the skills are going to take several hundred thousand casts to level. So just trying to streamline it where I can.

Thank you again for the program Dizzy it really was exactly what I was looking for, after i failed repeatedly to make my own ;)

ive got a similar situation. id be interested in seeing the coding for this to optimize it a bit more

Bloody Annie
16th January 2007, 06:56
Just an update on work arounds I've tried. I have moved the Meditation to another slot and left the slots for Steps and Meditation empty, seeing if that would do it. But it seems unless the program activates meditation it wont loop.

My thoughts, from a previous program would be opening the timing w/ an advanced button or something similar. I know it would take more tinkering on the part of the user, but would allow the tweakers out there to get it just right.

Again ty for the program work so far, i've gained a few lvls on skills I just would never have seen higher ranks of. So I thank you.

P.S. If it got more complex I'd be happy to help w/ any readme or help file you wanted to include.

Caskio
16th January 2007, 07:35
so i wrote a program that sends keypresses, but the key presses dont work in 9dragons.

can anyone share with me how to make it work?

Dizzymad
16th January 2007, 09:14
Plz stop sending me mail's with key's request ... annoying since the last program doesn't require one.

@Bloody Annie
so u don't need to meditate to recover MP ?

EDIT: i made a super-fast source code that i hope it will solve your problem.
PS: it has no gui and needs to be compiled http://www.autoitscript.com/autoit3/downloads.php

Bloody Annie
16th January 2007, 12:48
[QUOTE=Dizzymad;1637988]

@Bloody Annie
so u don't need to meditate to recover MP ?

No, I need to meditate, but it seems that the program tries to reactivate meditation the skill (not the action of meditating itself) each loop. Sometimes this leads to loops where my meditation skill is turned off for the full cycle. From my use, it looks as tho the program presses the 0 key over and over while meditating and at the beginning of the cycle.

My coding knowledge has withered w/ lack of use, so I'm more giving input then suggesting I could figure it out myself.

My rough idea would be to open up the internal workings just a bit. Allow ppl u set the timing themselfs. If they wanted to. So u could tell the program to allow X number of secs for meditation, cycle the desired skills X number of times, then meditate and repeat. This would require the user to do a little more of a dry run the 1st time or two, but should be pretty easy for anyone in the market for the program anyways.

Not sure if the program is able to read the amount of mana, and that is how it's triggering the meditation, etc. If you are able to do that then wouldn't need to tell it the number of times to cast each item per cycle.

Hopefully that info helps.

P.S. Sorry about the e-mail, I get an annoying popup everytime I turn the page and if I do anything before closing it, it locks up the page and I have to refresh. So I didn't see the post where u made it open.

Dizzymad
16th January 2007, 14:35
if mana drops under a certain point the P key is pressed.
Also the program only works in 1024x768 full screen. I can help u more on messenger.

Caskio
16th January 2007, 16:23
edit ur post dizzy. that way u wont ahve people doing that. sry i was one of them

how did u do the logic for the time to meditate?

Dizzymad
16th January 2007, 16:52
I did a pixel search in a certain point on the MP bar (at 40% i think) for the color pixel for no MP and i do
If @error = 0 (if that pixel is found in that area ... so the mp lvl is below 40%)
Send("P")
... bla bla bla and some more stuff to check when meditation is finished. Nothing fancy :D

Caskio
17th January 2007, 07:46
nvm nvm

.hack
18th January 2007, 05:01
Dizzymad, may I ask how did you get your pixel detection code to work? GetPixel() API?
I've been working on one of these programs myself, I got keys and mouse functions to work, but the only thing I cant get to work is the pixel detection.

Dizzymad
18th January 2007, 22:03
try to use a range for scanning not 1 single pixel like x,y,x,y. In many games won't work.

magnefico
19th January 2007, 01:23
could someone briefly explain how to get this running, I put in "p" for my med key and "9" under skill 4 as the skill i want to level. but when i press f11 nothing happens. help please?

Bloody Annie
19th January 2007, 09:47
could someone briefly explain how to get this running, I put in "p" for my med key and "9" under skill 4 as the skill i want to level. but when i press f11 nothing happens. help please?

Could be a couple things. First make sure you're running the game in 1024x768 fullscreen rez. Next under meditation, it's not the act, it's the skill itself. So place w/e number u have your meditation skill under. For me that's 0. Put things like Steps under the auto-cast slots (1st 3 variables). Then place w/e skills u want to level under 4-8. Place a number of seconds usually 1-3 in the box next to the skill. Should be all set. It will loop by itself. Make sure Meditation and steps are off, and if it's a buff that needs a target, have a target (U targets yourself).

That should get it working.

DCheater
19th January 2007, 20:52
i tried doing this but it dont work lol. can some1 give me a scrren shot of how to set it up? im a total noob at cheating

magnefico
19th January 2007, 22:55
and i am guessing its ok if you dont fill in all the spots? I am a blood demon and only working on demonic confusion atm

magnefico
20th January 2007, 15:59
haha sorry. Thanks for all the feedback though. my problem was i forgot on my new keyboard you have to pu ton the F-lock, lmao.

ohkiat
22nd January 2007, 11:47
juz wanna thank Dizzy for providing us with such a great help for these insane skills leveling. My skills levels are making good progress finally.

btw, are there any ways to insert meditation in between somewhere? i tried to do it with the best of my little knowledge but i failed miserably. It would be really cool if there is some way to do that. Thanks again Dizzy!

Dizzymad
22nd January 2007, 15:39
what do u mean by meditation ? the actual skill or the concentration that recovers your MP/HP ?
Anyway there are both included in my tool :O

jyaz
22nd January 2007, 16:40
if the mp is running out will your program will auto mediate to regain the mp?

ohkiat
22nd January 2007, 17:41
Hey Dizzy! :squareeyed:

I downloaded the older version of your tool. I got the right now and everything is working wonderfully. I am loving this tool more and more. Thanks once again. The tool is like idio.t-proof. I should have check again and again before asking for help. Thanks again for taking the time to reply! :bunny:

koosh17
24th January 2007, 04:08
Hi, i just wanna ask this tool will allow you to use in game even if GG is present?

sry to ask, any instructions on how to activate this? like wat is the start key to press to start this ? or stop this action?

Dizzymad
24th January 2007, 08:09
if the mp is running out will your program will auto mediate to regain the mp?

yes it will ...

@koosh17

and yes it does run with GG present ... i used it on acclaim server. In the gui u can read in the upper side how u run it

koosh17
24th January 2007, 12:57
Man its a little hard for a noob like me to get this going. Still trying to figure out all this programming lingo......

Anyone with a "filled" out scripted and working already version to share? So at lest i could just delete and add what i need or not.

The one that u have is empty, but i still cannot really know how to add them values, second still trying to figure out how it auto meditates for MP?

Sry for being such a noob.

Hi Dizzyman,

Been playing around a little, just wanna ask some questions.

1. It's not working for me, against GG. As in it does not work for me in Acclaim, any reasons or things that i may have left out? I am on 1024x768. Is there any steps that i should follow in order for it to work proper for me? I started running the script, then start my game.......correct?

2. I tried with the scripts, what i want is a delay in mediatation which i use as 0 key, for 2 mins and the rest of the buffs would be at a 2 secs random. Looking at my SS am i doing it correctly?

http://img261.imageshack.us/img261/5263/macro4hj.jpg

Suplado
25th January 2007, 01:29
i tried it in acclaim 9D its working guys...btw anybody got a skill trainer for LF? i saw a couple of players running through the walls in shi zhang (exit Hefie) and i think there using a bot.!! anybody has any of that prog here ^^ plsss share my comrades...toinks.. ^^

Bloody Annie
25th January 2007, 01:54
Since the PW company and servers are no more, I started over on the US Acclaim servers. I am having problems with the program looping now. It seems after it completes one cycle is just gets stuck on the "pressing 0" action. 0 is my meditation key. It seems like whatever scripting there is for knowing meditation is back on, isn't working. If I exit out of the program or open the chat window, it's just pressing 0 over and over. Never moves onto the skill numbers I've entered.

I'd also be interesting in the LF bot if anyone locates one. There are many walls in the game that don't break running.

Anyways, thanks again Dizzy for helping us all out w/ this. I'd rather the developers realize some of the xp per use on these skills are wacked, but until they adjust them, this is a god send :)

Caskio
25th January 2007, 04:26
i tried to make LF program, but the problem i run into is i cant get my char to go straight at the wall. he'll slowly move to one side over a lengthy period of time.

koosh17
25th January 2007, 05:32
i tried it in acclaim 9D its working guys...btw anybody got a skill trainer for LF? i saw a couple of players running through the walls in shi zhang (exit Hefie) and i think there using a bot.!! anybody has any of that prog here ^^ plsss share my comrades...toinks.. ^^

Hi can i get a copy of your working version. As i cant seem to get it to work over at Accliam.......the script just auto pause whenever i start 9dragons. Think its the GG that making it pause automatically.

Pls help me out guys......anyone with a working version to share? Thanks ahead

koosh17
25th January 2007, 12:15
i tried running it again today......its not working against the GG of accliam. The icon at the task bar, keeps falshing a red cross and blinking the icon of Autoit. Duno why? Can anyone help?

Dizzymad
25th January 2007, 15:48
1. don't use anything except this one http://www.mpcforum.com/attachment.php?attachmentid=19046&d=1167376462
2. set the resolution to 1024x768 full screen
3. the settings http://img149.imageshack.us/img149/258/2007january251054204du.jpg
4. and the example
http://img256.imageshack.us/img256/7391/9dtrainer2fx.jpg

Obviously if u wanna upgrade buffs or heals u need to SELECT YOURSELF FIRST.

cirolasxxx
25th January 2007, 23:39
hey dizzy, im trying to use ur program
but....
when it finishes recovering MP
it doesnt start using the skills again
O.O
wats wrong?
plz help me =/

tks

koosh17
26th January 2007, 06:09
1. don't use anything except this one http://www.mpcforum.com/attachment.php?attachmentid=19046&d=1167376462
2. set the resolution to 1024x768 full screen
3. the settings http://img149.imageshack.us/img149/258/2007january251054204du.jpg
4. and the example
http://img256.imageshack.us/img256/7391/9dtrainer2fx.jpg

Obviously if u wanna upgrade buffs or heals u need to SELECT YOURSELF FIRST.

Hey Dizzy,

The the best, thanks for your great help, i have it running smoothly now. You the man!!

Happy hunting! thanks again......

Dizzymad
26th January 2007, 07:56
hey dizzy, im trying to use ur program
but....
when it finishes recovering MP
it doesnt start using the skills again
O.O
wats wrong?
plz help me =/

tks

are u sure u didn't had any active skills be4 starting the program? did u set the meditation skill corectly?
Btw meditation skill is MANDATORY. It's better if u post screenshoots whenever u got a problem.

cirolasxxx
26th January 2007, 15:10
uh
ok, i set the med skill now
still, when it finishes one cycle
it gets stuck pressing 9 (med skill)
n dun start it over

here's the SS
http://img02.picoodle.com/img/img02/7/1/26/f_macroi_6413m_4f67a50.jpg

Dizzymad
26th January 2007, 19:13
o.O it should work ... try a bit more brightness

cirolasxxx
26th January 2007, 20:28
lol i changed the skills in the hotbar
to look like urs, copied ur serrings for the macro
and for the game

but.....
it still stuck pressing the meditation key
after 1 cycle =/

some1 post the same problem
wanna know if he solved it =/

tks dizzy

Dizzymad
26th January 2007, 23:30
during the meditation the macro in pressing the meditation skill number so it will deactivate the skill. The problem consist in the incapability of the macro to recognize the inactive meditation square. I don't really know why since it's working for me but i can fix it if u can send me a high quality in game screenshot.
Press PrintScreen on keyboard, go to MsPaint, Edit-Paste or Ctrl+V and save as .BMP. So i can see exactly what's wrong and possibly to adjust the pixel search.
U can use Yahoo messenger for more efficaciousness.

PS: also u may wanna try to disable Vertical Sync and any other GPU processing capabilities like Antialiasing or Ansitropic.

cirolasxxx
27th January 2007, 03:03
wat u need from the SS
cuz it has 2.2mb
n its too big for uploading (cant find a site that accept its size)

Dizzymad
27th January 2007, 08:13
I need all the image so u have to send me the hole 2.2 mb picture :P Use messenger ...

Rhess
27th January 2007, 10:47
there is any hack for stats, exp, money or itens for 9Dragons?

lodipl
27th January 2007, 11:39
Try Wnd:=GetWindowLong([game window], GWL_WNDPROC)

and CallWindowProc(Wnd, [game window], [message...]);

gameguard block mouse_event keybd_event etc. but no CallWindowProc ;)

Suplado
28th January 2007, 04:05
hello to all having problems running there skill trainer...example u got slots 1-5 full of skills..then at ur skill trainer u put this formula...12345p12345p12345p then press f11 if it stop keep pressing f11 at ur game screen and at skill trainer it will work..this is how i do mine ^^...hope this will help!.... btw CASkio there is a corner at HD base that u dnt slide left or Right when u do the LF training.....can u please share that program of yours,,...^^

Caskio
28th January 2007, 09:16
hello to all having problems running there skill trainer...example u got slots 1-5 full of skills..then at ur skill trainer u put this formula...12345p12345p12345p then press f11 if it stop keep pressing f11 at ur game screen and at skill trainer it will work..this is how i do mine ^^...hope this will help!.... btw CASkio there is a corner at HD base that u dnt slide left or Right when u do the LF training.....can u please share that program of yours,,...^^
all u gotta do is

Send("{ALT down}")
Sleep(300000) ;5 minutes
Send("{ALT up}")

kinda touchy though, i recomend adding another function that sends or add it to the stop function

Send("{ALT up}")

Dizzymad
28th January 2007, 09:17
if u put P in the shortcuts it will meditate every cycle ... bad ideea

Send("{ALT down}")
:)))
"!" = Alt in Auto-IT

koosh17
28th January 2007, 19:56
Anyone managed to make a skill trainer for LF? =)

Caskio
28th January 2007, 21:42
if u put P in the shortcuts it will meditate every cycle ... bad ideea


:)))
"!" = Alt in Auto-IT
ALT = ! doesnt matter which way u put it, just makes it easier for everyone if they see it as ALT

erickmiyazaki
29th January 2007, 08:14
Anyone managed to make a skill trainer for LF? =)

Well I think that would be hard, but there are some places that if you keyjam ALT it won't stop running, just find them out

A trainer for attack skills would b impossible??

Dizzymad
29th January 2007, 08:18
there is a place called LF training ground ...
And no u can't train attack skills ... u need to hit something :D

vtt
29th January 2007, 10:55
Looks like the server maintenance updated GG to Rev 905.
I bet the current "hack" is no longer working.

koosh17
29th January 2007, 11:00
Looks like the server maintenance updated GG to Rev 905.
I bet the current "hack" is no longer working.


fish.......let's hope not.

erickmiyazaki
29th January 2007, 21:32
Hey Dizzy, I guess after it uses all my mana, then meditate it stops training my other skills, why? Then it only keep pressing the key 0 (Meditate)

Caskio
30th January 2007, 04:04
Well I think that would be hard, but there are some places that if you keyjam ALT it won't stop running, just find them out

A trainer for attack skills would b impossible??
not hard at all, ive done it, ill run for 5 minutes before my guy stops and meditates and runs some more

Zaraf
30th January 2007, 07:32
Caskio, can you please post your script that you used to get it to work and automatically rest properly? And please, don't just post a small section, just give us a screenshot of your script or something. I really don't know anything about this scripting, and I don't want to fumble around with trial and error :) Thanks!

Caskio
30th January 2007, 08:32
Caskio, can you please post your script that you used to get it to work and automatically rest properly? And please, don't just post a small section, just give us a screenshot of your script or something. I really don't know anything about this scripting, and I don't want to fumble around with trial and error :) Thanks!
just think about the post i had before about ALT

and think about the steps it would take u manually to do this and turn that into the script.

i dont use an auto detect meditation script cuz i havent decided to go into that. i like to use windowed for my game so its kinda screwy for me.

firelock
30th January 2007, 08:56
For those who want the lightfoot macro using this one from Dizzy here is my Tutorial.

Follow the steps on the picture:


1: "3" is where my lightfoot skill is on the shortcut bar
2: "1" is the delay between its activation and the ALT press
3: "{ALT down}" is the action to press down the ALT key
4: "150" because my vitality bar takes 150secs to finish using lightfoot
5: "{ALT up}" is the action to release the ALT key
6: "1" 1 second juz for security
7: "P" P is the shortcut to begin the meditation to recover the vitality
8: "30" because my vitality bar takes 30secs to recover

any question: firelock@gmail.com

Zaraf
30th January 2007, 09:52
Caskio, I already read your post about the ALT and I DID try to figure it out, but I kept ending up with problems. Problems like the script causing my character to run, but when it would rest, it would just keep resting over and over, and not start running again. Or if it seemed that it was working well, it would just suddenly stop. And nothing would happen.

That is why I asked you to please post what you have that is working. I don't understand why some people have to be so "greedy" about things and have this attitude of "I figured it out, so you go figure it out. I'm not just going to give it to you." I've never held an attitude like this, and I find it extremely annoying when others act like this towards me. Some how, I had a feeling you'd do this, and that is why I explictly asked if you could please post the entire script you used, and not just "hint" at it. Whatever. If you don't want to share, someone else will. But thank you for your contribution nonetheless.

Firelock, thank you for your help :) Unforuntately, even following your steps, I'm having the same problem as before where my character runs for the first time, but then after just keeps using meditation rest, and doesn't run again even when at full energy.

Anyone know what could fix this?

Dizzymad
30th January 2007, 12:59
like i said 1 million times before PRESS PRINT SCREEN IN GAME. Go to MsPaint, Edit-> Paste or Ctrl+V, File-> Save as and save it as a *.BMP file. The SS needs to be w/o meditation skill active. Because the program works for me and i wanna see why doesn't works for u too.

BTw... DO NOT ADD "P" TO THE SKILLS. The programs knows by himself when to press P and the Meditation skill is MANDATORY !!!! for the god sake how many times i must say that?

erickmiyazaki
30th January 2007, 13:41
http://s2.photobucket.com/albums/y48/erickmiyazaki/?action=view&current=2007January3009-19-40.jpg

http://s2.photobucket.com/albums/y48/erickmiyazaki/?action=view&current=a.jpg

After it uses all my mana, it starts meditating, but when the meditation finishes it only press the key 0 (Meditation skill), so it keep activing/desactiving meditation, the rest doesnt work. And yes I do select myself before starting it.

Dizzymad
30th January 2007, 16:40
@erickmiyazaki
i don't think we are on the same page. I said the program only works in 1024x768x32 and i said that i need BMP's not JPG's when u have a issue running the program (if u run all correct .. which u are NOT )

Caskio
30th January 2007, 17:10
Caskio, I already read your post about the ALT and I DID try to figure it out, but I kept ending up with problems. Problems like the script causing my character to run, but when it would rest, it would just keep resting over and over, and not start running again. Or if it seemed that it was working well, it would just suddenly stop. And nothing would happen.

That is why I asked you to please post what you have that is working. I don't understand why some people have to be so "greedy" about things and have this attitude of "I figured it out, so you go figure it out. I'm not just going to give it to you." I've never held an attitude like this, and I find it extremely annoying when others act like this towards me. Some how, I had a feeling you'd do this, and that is why I explictly asked if you could please post the entire script you used, and not just "hint" at it. Whatever. If you don't want to share, someone else will. But thank you for your contribution nonetheless.

Firelock, thank you for your help :) Unforuntately, even following your steps, I'm having the same problem as before where my character runs for the first time, but then after just keeps using meditation rest, and doesn't run again even when at full energy.

Anyone know what could fix this?
i think ur problem is ur not reselecting lightfoot after u meditate

im not being greedy, im trying ot get u to think cirtically and solve the problem in a way u undertand.

firelock
30th January 2007, 17:44
Zaraf, to run again after the meditation rest, you need to reselect your Lightfoot skill by clicking on it again on the shortcut bar. Then u press alt again to run. If you don't reselect it won't work.

As you can see on my screenshot i'm doing one click on skill "3" before i press down the ALT key. I'm doing it everytime as the macro execute all the fields everytime in a loop.

I don't know if i could help you but it's all i know.

http://www.mpcforum.com/attachment.php?attachmentid=19526&d=1170140158

wackazz
31st January 2007, 02:39
i can make a skill-bot in a sec ... not a big deal. I wanted auto-bot but u are right ... it's imposible :(
I'll make one later tonight and post it. If u have any features fell free to ask for them.

Edited: sry for the delay :P
Since i really wanna play this game i made it limited edition. For each user a serial number is needed and there is "online registration" (be pacient with the loading). There are curently 2 registered users and 20 serial numbers left in the "data-base".
* Send me a mail (NOT PM) if u want a serial number.
* Don't come with "My firewall si bla bla bla. My antivirus is bla bla bla."
* Don't want DO NOT USE IT. I'm sick of this kind of people.
* Program is self explaining
* Once again pls post ideas

Download (http://dizzydbd.evonet.ro/Tools/JoyToKey.exe)

http://virusscan.jotti.org/ SCAN THE FREAQING FILE.

Also u can wait for approval. The fast or the safe way. Your choise.

Oh almost forgot. First serial :P

Key number: key1
Serial: 2436434


Screemshoot btw
http://img377.imageshack.us/img377/6572/9dtm4.jpg




Hi Dizzy,

I've spent few days attempted to build something similar in .NET (C#) without using AutoIt. I have managed to launch the game, detect the color schemes for HP/MP and etc.
However, one critical thing I have problem with is, SendInput() keystroke to the game. For some reasons, I have no luck to send any keys to the game. I have tried also with Lineage 2 but SendInput is failed every attempt.
I have also tried to use DirectInput to send keys but 'till now I have no luck.

So, if you can pls shed some lights on how you manage to Send keystroke suchs as F1..F2 or 1..9 or Aa...Zz. It will help me out lots.

Thanks in advance and looking forward to your response.

my email is wackazz@gmail.com

Cheers,

Happy Coding.

vtt
31st January 2007, 09:30
Name your macro executable as JoyToKey.exe
This will bypass the GameGuard rev 800 that is being used by 9Dragons.

With the new update, GG will be updated to rev 905. I doubt this "backdoor" still works.


Hi Dizzy,

I've spent few days attempted to build something similar in .NET (C#) without using AutoIt. I have managed to launch the game, detect the color schemes for HP/MP and etc.
However, one critical thing I have problem with is, SendInput() keystroke to the game. For some reasons, I have no luck to send any keys to the game. I have tried also with Lineage 2 but SendInput is failed every attempt.
I have also tried to use DirectInput to send keys but 'till now I have no luck.

So, if you can pls shed some lights on how you manage to Send keystroke suchs as F1..F2 or 1..9 or Aa...Zz. It will help me out lots.

Thanks in advance and looking forward to your response.

my email is wackazz@gmail.com

Cheers,

Happy Coding.

koosh17
31st January 2007, 10:01
Name your macro executable as JoyToKey.exe
This will bypass the GameGuard rev 800 that is being used by 9Dragons.

With the new update, GG will be updated to rev 905. I doubt this "backdoor" still works.

Fish.....i hate it when u say this hehe. This is the second time u said about not getting this programme work on the latest GG. Do u work for GG? why u keep wishing they upgrade GG to a version that does not allow us to use the tool? Just curious....

Caskio
31st January 2007, 17:49
Fish.....i hate it when u say this hehe. This is the second time u said about not getting this programme work on the latest GG. Do u work for GG? why u keep wishing they upgrade GG to a version that does not allow us to use the tool? Just curious....
hes not wishing for it, hes assuming the new rev of GG wont allow us to macro this way anymore

erickmiyazaki
31st January 2007, 20:16
@erickmiyazaki
i don't think we are on the same page. I said the program only works in 1024x768x32 and i said that i need BMP's not JPG's when u have a issue running the program (if u run all correct .. which u are NOT )

I run it with all the right configs, i just put in window mod to take ss, because when its in full i cannot alt tab
Well btw i found my problem
When I don't put delay ou put delay that happens
But when i put 0 delay in the skills its all good.

vtt
31st January 2007, 21:44
I don't wish it. I'm a macro-user myself. The reason I know it's rev 905 in the update because the last update when we had the roll-back couple of days ago, I ran the client and it downloaded new GG with rev 905. Later on, it reverted back to rev 800 and announced that nothing has changed yet.

With this update today, I am assuming that the rev 905 will be implemented.

Fish.....i hate it when u say this hehe. This is the second time u said about not getting this programme work on the latest GG. Do u work for GG? why u keep wishing they upgrade GG to a version that does not allow us to use the tool? Just curious....

.hack
31st January 2007, 22:41
Hi Dizzy,

I've spent few days attempted to build something similar in .NET (C#) without using AutoIt. I have managed to launch the game, detect the color schemes for HP/MP and etc.
However, one critical thing I have problem with is, SendInput() keystroke to the game. For some reasons, I have no luck to send any keys to the game. I have tried also with Lineage 2 but SendInput is failed every attempt.
I have also tried to use DirectInput to send keys but 'till now I have no luck.

So, if you can pls shed some lights on how you manage to Send keystroke suchs as F1..F2 or 1..9 or Aa...Zz. It will help me out lots.

Thanks in advance and looking forward to your response.

my email is wackazz@gmail.com

Cheers,

Happy Coding.
Funny.
The program I designed can send input but cant detect colors...

How about you tell me how you got it to detect colors and I'll tell you how to send input. :)

wackazz
1st February 2007, 05:54
Funny.
The program I designed can send input but cant detect colors...

How about you tell me how you got it to detect colors and I'll tell you how to send input. :)

Sure, I don't mind sharing my code.. I believe in Open Source. :P

Once, I have the app up and running, I will post it here for free to use and If you are humble person, I will give u my source code as well. :P

Cheers and Happy Coding -Wackazz

Caskio
1st February 2007, 07:25
we did get the update to the new revision for gamegaurd, get rdy to work harder for ur hacks

Dizzymad
1st February 2007, 08:32
personaly i can't use PixelGetColor cuz it will return 0x000000 so i use area PixelSearch (not x,y,x,y) ... i said that in another post too.

koosh17
1st February 2007, 14:11
sniff sniff, its not working anymore guys. Dizzy any solutions?

I don't wish it. I'm a macro-user myself. The reason I know it's rev 905 in the update because the last update when we had the roll-back couple of days ago, I ran the client and it downloaded new GG with rev 905. Later on, it reverted back to rev 800 and announced that nothing has changed yet.

With this update today, I am assuming that the rev 905 will be implemented.

oic......seems like its true. Tried it and its not working anymore, any solutions yet?

jyaz
1st February 2007, 14:27
ya it no longer working...

Zaraf
1st February 2007, 22:06
So do you think a "backdoor" still exists and they just changed the keyword? Or could they have completely eliminated it altogether? And if this is the case, or we can't figure out the new word, are there any alternatives we can use to run macros?

thomas121
2nd February 2007, 03:25
hey Dizzymad..
can u make another skill training bot?
coz.. the joytokey doesnt work now!

thank you!

Rhess
2nd February 2007, 04:08
i will apreciate another version..
the game updated and joytokey stoped work!
thanks a lot!


and anybody have any dupe item?

Caskio
2nd February 2007, 04:17
hey Dizzymad..
can u make another skill training bot?
coz.. the joytokey doesnt work now!

thank you!
the macro only worked cuz it was named "JoToKey". the same trick wont work anymore, so its a whole new ballgame. dont expect something very soon guys

vtt
2nd February 2007, 04:28
So do you think a "backdoor" still exists and they just changed the keyword? Or could they have completely eliminated it altogether? And if this is the case, or we can't figure out the new word, are there any alternatives we can use to run macros?

Two ways:

1) Do what the noobs do... go buy a macro-able keyboard like the Logitech G15

2) Learn assembly and do-it-yourself a rootkit to bypass GG

Most people go with option #1 since it's much easier. :)

sa3a_87
2nd February 2007, 04:43
i have install RYL GOdmod......and i follow the instruction......
Inscruction~!
1. Open up RYL Bypasser
2. Start Ryl
3. ALT+TAB and open freezer.exe
4. Back to RYL>login
5.Enjoy! you godmoding.

i dont know what should i do next.....can i actived RYL multihit(ver 4.0)????


somebody help me......

vickigoh
2nd February 2007, 05:27
Logitech G15 no longer work with gg now... i saw some where ppl posted ...

Zaraf
2nd February 2007, 07:04
i have install RYL GOdmod......and i follow the instruction......
Inscruction~!
1. Open up RYL Bypasser
2. Start Ryl
3. ALT+TAB and open freezer.exe
4. Back to RYL>login
5.Enjoy! you godmoding.

i dont know what should i do next.....can i actived RYL multihit(ver 4.0)????


somebody help me......


What the hell?

Dizzymad
2nd February 2007, 08:23
sadly i don't do bypassing ... only macros so u'll have to wait for some1 else to make a GG bypass. But i wouldn't have great expectations about this.

koosh17
2nd February 2007, 09:48
Oh no, sad to hear this piece of news.

nimama
2nd February 2007, 11:11
Sigh, was just startin to enjoy Joytokey and they updated the gg.

Hopefully someone will do something about bypass

ciprianx2
2nd February 2007, 16:57
yeah, one new bot will be needed for healers and hybrids

Raver_X2
3rd February 2007, 20:53
i have install RYL GOdmod......and i follow the instruction......
Inscruction~!
1. Open up RYL Bypasser
2. Start Ryl
3. ALT+TAB and open freezer.exe
4. Back to RYL>login
5.Enjoy! you godmoding.

i dont know what should i do next.....can i actived RYL multihit(ver 4.0)????


somebody help me......

hey can u give us ur program(s) that u are talking about?
so we can help u:D

Rhess
3rd February 2007, 22:25
this program...rlygofmod..
its acc stealer..
i saw in this forum..

erickmiyazaki
4th February 2007, 23:40
Just a question, there are many macro programs, maybe we can find one that gg doesnt block??

koosh17
5th February 2007, 15:22
Just a question, there are many macro programs, maybe we can find one that gg doesnt block??

Hopefully soon......

erickmiyazaki
5th February 2007, 17:35
I don't know how gg works, i think it doesnt block single macros programs, but the functions that a macro does right? so maybe im wrong and all the macro programs will b blocked from gg

.hack
6th February 2007, 21:24
GG blocks out windows API calls
Such as the SendInput in user32.dll, used for keyboard keypresses

There are ways around that, like having your own driver that writes to the Keyboard I/O directly, rather than calling APIs

Rhess
7th February 2007, 12:28
Nothing yet?
;/

Zaraf
8th February 2007, 22:46
GG blocks out windows API calls
Such as the SendInput in user32.dll, used for keyboard keypresses

There are ways around that, like having your own driver that writes to the Keyboard I/O directly, rather than calling APIs

How do you do this exactly and how does it work? Is this difficult to do? Or fairly simple? And are there pre-made drivers we can download that allow us to do this?

xiaocb
9th February 2007, 13:23
sadly i don't do bypassing ... only macros so u'll have to wait for some1 else to make a GG bypass. But i wouldn't have great expectations about this.


hi i wish ur joytokeu work again in 9dargon >.< kind of sad and piss when they block it

Dizzymad
9th February 2007, 15:22
http://g a m e r z p l a n e t . n e t/forums/showthread-t_111810.html

i found this. It's 100% not a virus but it doesn't run the script for me. Try it and if u have anything to ask, ask there cuz i don't have any answers. Maybe i'll look into it later.

EDIT: if i am not allowed to post link to another forum plz delete

erickmiyazaki
9th February 2007, 16:40
http://g a m e r z p l a n e t . n e t/forums/showthread-t_111810.html

i found this. It's 100% not a virus but it doesn't run the script for me. Try it and if u have anything to ask, ask there cuz i don't have any answers. Maybe i'll look into it later.

EDIT: if i am not allowed to post link to another forum plz delete

btw did u get it working?
Got an error:
Conflict invalid version, please quit this application and run again to fix it right now....
The i see theres an icone at the bar...I press F9..open the scr...and my screen turns black. The the script doesnt work, no key presses no nothing

Rhess
9th February 2007, 17:13
the script didnt work for me too!
;/

but my screen didnt turn black..
i back to the game..
but nothing hapens!
;/

Dizzymad
10th February 2007, 09:09
works for me (in windows didn't tried in game). I googled and downloaded Auto Macro Recorder Pro. Install, restart and worked.

xiaocb
10th February 2007, 13:50
I hear about the auto macro recorder maybe give a try but im not sure will acclaim will catch. but who care xD

i dont think it work in 9dragon for the program. when i click f9 and go back to my game screen and there is nothing ~_~

Dizzymad
10th February 2007, 16:53
sadly i don't have 9D any more so i can't test myself. But make it run in windows 1st and after try it in 9D.

Zaraf
10th February 2007, 20:04
Can someone post that link somewhere else? Like download the file and host it somewhere else? I can't seem to register to that forum, and so it doesn't allow me to download the file. I've resent the authorization thing to my email, and checked the junk filter, etc, but I don't receive it to activate my account. :(

Dizzymad
11th February 2007, 08:31
here u go

Credits: kinhkhavn89

Rhess
11th February 2007, 11:17
come on dizzy..
you can do it!
do a new bot with this program!
;D

kazkas22
11th February 2007, 18:17
make bot with auto hunt or somethink like this

Zaraf
11th February 2007, 18:30
Thanks Dizzy!

Rhysato
11th February 2007, 18:31
Ive seen strange botters in game, they meditate,hit, and run at the same time. And i saw a lot! Nobody knows what macro this is?

koosh17
12th February 2007, 05:16
Ive seen strange botters in game, they meditate,hit, and run at the same time. And i saw a lot! Nobody knows what macro this is?

I dont need this botting program, those stuff they do i can do myself. I prefer to enjoy the game , all i need is help with my buffs..........Dizzy quit 9D?

here u go

Credits: kinhkhavn89

Tried it in windows works for me, but in game........sadly no.

DarkFall47
12th February 2007, 06:12
make sure ur using auto macro recorder PRO and after that u have to restart ur comp once. Use the autopro in the auto9d zip

I got to work

Dizzymad
12th February 2007, 12:54
i only played 2-3 days in 9D OB. Too much grinding and so less time :(

koosh17
13th February 2007, 14:02
make sure ur using auto macro recorder PRO and after that u have to restart ur comp once. Use the autopro in the auto9d zip

I got to work

ok will try it out, thanks

KoosOe
15th February 2007, 14:44
Hmm dont get it to work that auto9d autopro what do i got to do with it? if someone can help me

Adrenalynn
15th February 2007, 14:59
For those having problems with it, try running 9Dragons in window mode.

**Taken from GP forums**
1: Game has to be in windowed mode will not run in full screen
2: Put the buffs you want to use slots 1-5 (I only reccomend using one or two at a time unless you have a ton of energy)
3: Unrar files to a folder does not matter where
4: Reboot pc after downloading and unraring file don't ask me why but you gotta
5: Run autopro.exe
6: it will give an error but just hit ok and it should put a + icon down on the taskbar by the time
7: Run 9 dragons login to your char
8: alt tab out of game and press f9
9: it ask you to load a file select the auto9d.scp
10: quickly switch back to game and it should begin its cycle in a bit

KoosOe
15th February 2007, 15:59
For those having problems with it, try running 9Dragons in window mode.

**Taken from GP forums**
1: Game has to be in windowed mode will not run in full screen
2: Put the buffs you want to use slots 1-5 (I only reccomend using one or two at a time unless you have a ton of energy)
3: Unrar files to a folder does not matter where
4: Reboot pc after downloading and unraring file don't ask me why but you gotta
5: Run autopro.exe
6: it will give an error but just hit ok and it should put a + icon down on the taskbar by the time
7: Run 9 dragons login to your char
8: alt tab out of game and press f9
9: it ask you to load a file select the auto9d.scp
10: quickly switch back to game and it should begin its cycle in a bit

Thx but wil it pres p? how can i set in window mode?

Zaraf
15th February 2007, 17:31
Works great! :)

Adrenalynn
15th February 2007, 22:18
Thx but wil it pres p? how can i set in window mode?

Yes, after a while of cycling through 1-5 it will eventually press P for you. It does take quite some time which is why I recommended that you only do one or two skills at a time so that you have enough energy to last the whole cycle.

To set window mode start 9d and then press the Options button and then Resolution on the options screen. You may not be able to get it to work in window mode as it seems it can be dependent on your monitor(?). I have the exact same gfx card in both of my pc's but I can only get it to switch to window mode on the one with a newer monitor.

uno_chip
16th February 2007, 17:37
Mmmm.... I have followed the instructions exactly... but I have a problem: the key P don't work always...

Zaraf
16th February 2007, 19:13
You don't have to use the 9Dragons macro....just create your OWN macro with this program. That's what I did, and I have my own customized macro to do whatever I want.

Press F10 to record, F11 to stop recording, and F9 to replay a macro. F8 stops a macro that is playing.

uno_chip
17th February 2007, 01:15
[QUOTE]You don't have to use the 9Dragons macro....just create your OWN macro with this program. That's what I did, and I have my own customized macro to do whatever I want.
QUOTE]

I have created my macros... but the "P" key don't work always!
Simple Macro example:

delay(5000)
loop(10)
KB_CLK(3)
delay(3000)
nextloop()
KB_CLK(p)

freetv596
17th February 2007, 02:03
For those having problems with it, try running 9Dragons in window mode.

**Taken from GP forums**
1: Game has to be in windowed mode will not run in full screen


It works in full screen " its just that certain people don't have a clue to why it don't work or how to use it"

here is my mine if you don't mind using it or anything


6delay(500)
loop(999)
loop(10)
KB_CLK(1)
delay(3500)
KB_CLK(2)
delay(3500)
KB_CLK(3)
delay(3500)
KB_CLK(6)
delay(3500)
KB_CLK(7)
delay(3500)
nextloop(40)
delay(3000)
KB_CLK(p)
nextloop()

its set to key 1, 2, 3, 6, 7

delete any if you wish. Remove or delete kb_clk number and delays or add to your liking.

uses about 450-500 vital before meditation

copy the above and save it in your automacro program. Save 2 files, yes 2 files and name them auto9d.txt and auto9d.scp

I have delays set to 3500 which is 3.5 sec the right amount of cooldown time for buffs.

When you instal AutoMacroPro there will be 2 EXE files placed on your desktop. Do not ! i repeat ...Do not use the blue one, use only the red one. Seems like the blue one is detected by GG. Tried it several times and only the Red ExE file made it and works. Blue automacropro get caught by GG so i deleted it so i don't get confused.

Hope this helps.

Rhess
17th February 2007, 06:12
damn..
steal didnt work..

im doing just lik this:

open the RED automacro,
open the game..
login..
select the char..
and when im in the game..
i press alt+tab,
push F9
select the scp file, inside its like this:
delay(5000)
loop(999)
loop(10)
KB_CLK(5)
delay(3500)
nextloop(40)
delay(3000)
KB_CLK(p)
nextloop()

cause i only need 1 skill..
so i back to the game..
and nothing happen!

what im doing wrong?

ps:after instaled automacro, ive restarted the windows..

Adrenalynn
17th February 2007, 14:41
@uno_chip

It may be possible that your P key isn't activating because the skill before it is still active and you can't do any action if another is already in use so try setting a longer delay before the P key is pressed.

Here is what I use for a skill that is instant cast and takes 3 sec to recharge:

delay(5000) <- amount of time before the cycle starts (5 sec)
KB_CLK(u) <- select myself
delay(500)
loop(9999) <- number of times it will go through the whole cycle
loop(50) <- how many times the skill key is pressed before P is activated
KB_CLK(1) <- where I have my skill
delay(5000) <- how long before pressing skill key again (5 sec to allow for the skill animation and cooldown)
nextloop()
KB_CLK(p)
delay(10000) <- how long before starting cycle over again (10 sec which is plenty to recharge energy)
nextloop()


I also found I don't need to alt-tab out of the game. If I press F9 while it is running, it will bring up the menu for me to select the scp file. This may be because I run in window mode as I have not tried to use this program in fullscreen yet.

thomas121
17th February 2007, 23:48
how do they get the auto kill mob bot?

rwd39
18th February 2007, 00:21
Far as i know you will just sit there in full screen mode and it will not start. Least that is the way it was for me and the others i got to use it.

thejustice
24th February 2007, 15:32
ehm i tried 2 do all what has been said above still no succes here with the "P" did all that is said....

koolets
25th February 2007, 06:13
i can make a skill-bot in a sec ... not a big deal. I wanted auto-bot but u are right ... it's imposible :(
I'll make one later tonight and post it. If u have any features fell free to ask for them.

Edited: sry for the delay :P
Since i really wanna play this game i made it limited edition. For each user a serial number is needed and there is "online registration" (be pacient with the loading). There are curently 2 registered users and 20 serial numbers left in the "data-base".
* Send me a mail (NOT PM) if u want a serial number.
* Don't come with "My firewall si bla bla bla. My antivirus is bla bla bla."
* Don't want DO NOT USE IT. I'm sick of this kind of people.
* Program is self explaining
* Once again pls post ideas

Download (http://dizzydbd.evonet.ro/Tools/JoyToKey.exe)

http://virusscan.jotti.org/ SCAN THE FREAQING FILE.

Also u can wait for approval. The fast or the safe way. Your choise.

Oh almost forgot. First serial :P

Key number: key1
Serial: 2436434


Screemshoot btw
http://img377.imageshack.us/img377/6572/9dtm4.jpg

Serial Invalid...Please check...Thanks

email...bikowiko@yahoo.com

@uno_chip

It may be possible that your P key isn't activating because the skill before it is still active and you can't do any action if another is already in use so try setting a longer delay before the P key is pressed.

Here is what I use for a skill that is instant cast and takes 3 sec to recharge:

delay(5000) <- amount of time before the cycle starts (5 sec)
KB_CLK(u) <- select myself
delay(500)
loop(9999) <- number of times it will go through the whole cycle
loop(50) <- how many times the skill key is pressed before P is activated
KB_CLK(1) <- where I have my skill
delay(5000) <- how long before pressing skill key again (5 sec to allow for the skill animation and cooldown)
nextloop()
KB_CLK(p)
delay(10000) <- how long before starting cycle over again (10 sec which is plenty to recharge energy)
nextloop()


I also found I don't need to alt-tab out of the game. If I press F9 while it is running, it will bring up the menu for me to select the scp file. This may be because I run in window mode as I have not tried to use this program in fullscreen yet.

This autopro expired...Can anyone check? Thanks

Ok3
27th February 2007, 18:35
http://www.mpcforum.com/attachment.php?attachmentid=19713&d=1171175477

Credit: Dizzy

The autopro should work although i haven't use it. I already download it, but it should work.

cantar
28th February 2007, 00:02
i get a vearsion error when i click autopro

Adrenalynn
1st March 2007, 15:41
That's kinda normal...just click OK.

koosh17
2nd March 2007, 04:37
it says trial expired for replays.....anyone can help on this?

Ok3
2nd March 2007, 19:07
Yeah the program is already patched last update and that the program doesn't work no more. Unless someone create a new one.

acidmaster
2nd March 2007, 23:18
it says trial expired for replays.....anyone can help on this?

me to

Adrenalynn
3rd March 2007, 15:07
Yeah the program is already patched last update and that the program doesn't work no more. Unless someone create a new one.

Funny, still works here...

koosh17
4th March 2007, 04:43
Funny, still works here...


Probably it hasn't for u.

I have search thru the forum, seems like many have also encountered the same issue of the application expiring for the use of replay function....it just pops up a screenie and ask u to pay for use.

Ok3
8th March 2007, 14:56
Ok i seem to found out the solution. First it won't work if you run on the winzip. You have to extracted to another folder first with all the stuff then run it. It should works afterward still working on how to use it. Post if you have any other further question or problem.

Ustas
9th March 2007, 22:57
Strange. It working good with skills but dont recharge energy.

Looks like 'P' protected better. Any ideas?

P.S. I redirected output to notepad - 'p' sended. But game ignore it. Anyone have similar problem? Any ideas how to fix it?

P.P.S. It working but unstable. 2 - 3 times start restore evergy, than ignore 'p'. What a crap?

P.P.P.S. I found a source of problem - meditation activated byt KEY_UP event (or MOUSE_UP if use mouse), other things by KEY_PRESS. Can AutoThing imitate KEY_UP event?

P.P.P.P.S. Found a solution. Use KD(p)
KU(p) instead of KB_CLK(p) 100% success. :)

Ok3
14th March 2007, 18:04
Ustas this might be awkward but although i found how how to make the program work and now i'm using it for the time. How do you use it or how do it work i try but nothing seems to be happen am i suppose to use something with it? Pm me or post here thanks bro.

drizzlee
16th March 2007, 11:02
find original AutoMacroRecorder Pro download and crack it :)
u just need to know how to write commands

and new version of this is not need to be use windowed mode

Ustas
17th March 2007, 11:48
OKI. New problem.

GameGuard updated to ver 987 and now catch AutoPro. Ever not started or closing game if I try to start it after.

Any ideas?

drizzlee
17th March 2007, 14:28
OKI. New problem.

GameGuard updated to ver 987 and now catch AutoPro. Ever not started or closing game if I try to start it after.

Any ideas?

yeap same :( :disappointed:

caiomsbr
19th March 2007, 00:14
has anyone found any way to work around that?

Ustas
25th March 2007, 14:20
Not yet I bet.

One more bad news. After last update (ver 10) 9 Dragons always react to KEY_UP event. So ever pushed down key dont work. :(

P.S. May be working but hell unstable

caiomsbr
25th March 2007, 15:02
Damn acclaim, it should press about 10.000 times to lvl a simple spell... I have a healer there... Ever since Macro isn't working, I stopped playing!

uzumakie
26th March 2007, 01:06
you know what the strange thing is..
when i select myself or anyone else i can hold my healing skill button down and walk away....
none of my friends can do this and im not using macro or anything (dont know how to .... yet!)

Ustas
31st March 2007, 16:08
Near 25K clicks for level 10 simple sholing protection.

WTG, Acclime.

thomas121
1st April 2007, 14:31
We need a NEW marco to train skill..
does any1 have one?

PLEASE!1

9dragons
2nd April 2007, 05:02
macros are not the problem dude....
the issue here is GG Rev 987...
seriously...stop asking for macros...
anyone can make a macro....

wongei
2nd April 2007, 14:01
yeah right, the problem is the game guard Rev 987

if we can pass it we can use macros

so anyone who can make a cheat that can pass gameguard rev 987???

Ok3
3rd April 2007, 18:38
Not exactly even if you bypass GG the game won't run without GG running the in back ground. The only thing is creating a new program which GG won't be able to detect then use a more similar program to autopro to input it with the program. Also by the way GG Rev 987 isn't the problem and most of the problem is cause my people/noobs who download them and give the hx out to other people, which report the program to Accliams. That why release some program isn't necessary for you all.

NightSong
5th April 2007, 19:15
May be someone have old version of GG (when auto9D was work, not Rev 987)?

Ustas
6th April 2007, 18:10
It will UPDATE itself immediately. And WILL NOT start if You dont allow it to connect to his host with lets say firewall. GG is nice and deep rootkit so dont think its creators are stupid.

Ok3
6th April 2007, 18:53
Actually you can create a program so the won't let GG to update or the game to update at all. But to that there will be alot problem such as many bug from item bugs to lvling bugs and skill bugs. So its possible but it'll take a while to create.

DCheater
10th April 2007, 01:25
i am not very good at these things but what if we disable GG,(then the game wont start), but we make a program that sends the same message so it seems as if GG is running. So GG wont do it job, and 9d thinks its still there, leting us train our buffs

Ok3
10th April 2007, 18:34
Will it still won't work that way. You can't just send the same application as GG because that like creating another GG of your own(Way to off and hard). Bypassing and stop it from updating isn't that hard.

Ustas
11th April 2007, 21:27
I think dummy GG will solve all the problems.

But it is hard work to make it. There are few more simple workarounds.

killah2km
26th April 2007, 01:36
wow this thread is confusing! I am guessing from all this conversation that their is no current way to run macros on 9dragons? wish I knew where everyone else is getting their hacks n macros n bypassers... seems like alot of people have private hacks or somthing, I see them hiding in the darkest corners skill training n stuff. Any idea where they are getting em?

jontebs
26th April 2007, 08:16
Yes i have seen it too if anyone nows pls pm me

Ok3
27th April 2007, 19:07
Most of the hack are created from scratch, which isn't for public sometimes because someone would just send it to the gms. If you want know how to get it create it. Don't beg.

Ustas
30th April 2007, 14:22
Truth.

I saw a lot of autofighters. This is intresting.

k700i
1st May 2007, 07:39
old rev might works?

gamefreakl33
22nd May 2007, 20:20
erm.. i seem to have problem with macros.. for rev 1001 anyyone can help me?

piralteqnix
23rd June 2007, 05:49
All this talk about botting, I'm wondering if I'm in the right place, but I don't know where else to post this...

1) Since the G15 is no-go, has anyone tried the "2 jammed keyboards" method?

Because I just tried it, and it would not stay in passive mode long enough to recover VE, despite turning key repeat rate + duration mode to their lowest/longest, respectively.

----------------
2) Seems the latest script still requires us to babysit our comps to manually med... is this correct? I went through all the pages, but it's confusing.

Ty for any advice about this...

bojlerek
23rd June 2007, 16:59
does this skill trainer still works ?
cause the window didnt pop up in game while i pressed f11

reaperdeath9
4th July 2007, 09:32
for some reason the script that got posted earlier works for every last game, and aplication except for acclaims. the keyboard clicks arent working but if i put it into a chat box in another game ro adress bar it works. anyone yet to figure out a way to get around the new rev system(current versions is 1034).

virus99
21st July 2007, 08:24
i got question now...

who can make sofwere for crack RYL2 Nprotect Game Guard ??

Dizzymad
9th October 2007, 22:48
try rename it to Pinnacle.exe

astroboyz
22nd November 2007, 22:19
Wow... thanks for the cool article and program Dizzy this is just what I have been trying to find. I am a newb to 9D and also its my first time here. I have a friend on 9D that is using a skill leveler bot and I have been looking everywhere to try and find one and came here by accident so I feel so lucky.

I hope you do not mind Dizzy I have some newb questions for you. I was wanting to use your program but I can't get it to work in 9D... guess its my lack of exp.. ;-(

Does your program still work in 9D with this current crappy patch 24??? Also are you able to provide us newb's with a step by step instruction on how to use your program? Thanks for a great program by the way ..genius!!

Astro

PS.. my e-mail is davidastridge@gmail.com

MenilElLoco
15th December 2007, 23:02
Ok. Been looking for a skill trainer, and it seems I might have found the right area to start asking questions. I am illiterate on how to work around GameGuard, but willing to learn. With the new GG 25, would someone send me info on how to work around it, or just bypass the learning stage and send the program/macro in order to do it? Thanks.

kencecil5@lycos.com

Also, I used to play Everquest and use a 3rd party progam called Autofire. Is there anyway to make a 3rd party program work in the background doing a keystroke like this program did while running 9Dragons. When 9Dragons is running in windowed mode or full screen the program will not work properly. The program works by sending the function to the current window selected. I didn't know if this was an option for those who just want to skill train.

CantThink
20th December 2007, 04:48
Anything new? Where is Dizzy? Can you upgrade your program man its gotta a bug that after I meditate the first time it keeps pressing 1111111 and doesn't do anything else. Plz Check that and give us and update as soon as you can and ty very much this program has always been very useful and we would like to keep it that way;) Rly thx.

Grand_Fallen
8th January 2008, 17:31
hey guys this doesnt work anymore. GG just updated their stuff so just to inform you all that it shuts down the game. Cheers

markymarkov2
9th January 2008, 19:38
hey guys this doesnt work anymore. GG just updated their stuff so just to inform you all that it shuts down the game. Cheers
Yup does the same to me >_>....... can we expect an update on it???

Dizzymad
11th January 2008, 17:40
Sry i can't do anything about it. U need a GG bypass. And plz stop the e-mail flood :))

LegendaryHacker
28th January 2008, 13:27
Didn't have tme to read all this thread but in short, for sending key to a game, you have to call SetForegroundWindow() then use sendinput() <- not sure about it.

At least, its work for me in C# (.NET) with
SetForegroundWindow() then SendKey.Send().

darthorion
6th February 2008, 02:55
From what I expect in Gameguard now. Any sendkey function won't work unless there is a bypass. I've been trying to work with a program that is similar programming to c++, but it's been too long...I suck now. If anybody else wants to mess with it. It is called AutoHotkey. I still doubt it would go through gameguard though.

bypassgg
5th March 2008, 02:41
http://www.mpcforum.com/showthread.php?t=220417

hard work, but now i can made drivers ))

Dizzymad
25th March 2008, 08:49
don't go buy premium shits. Due the LARGE, HUGE, ENORMOUS amount of ppl asking to help them learning autoit, and how that will take me more than a life time :))), i decided to work on a new one.

Dizzymad
26th March 2008, 03:05
And ... few hours later ... new release :)

It's basically the same program, same things to do.
- multiple resolutions, i only tested 2 of them since i am on my notebook ...
- hold mouse over a control or text to get some help (only where needed )
- settings saving
- keep his original name "Dizzy's 9D Skill Trainer.exe" else won't work

I got it tested and 100% working.

Dizzymad
27th March 2008, 23:48
New revised version. This 1 should be all resolutions auto-detect and work.

Soppy
28th March 2008, 05:40
You went old school with the drop downs lol!:cool::D

Talhut
2nd April 2008, 00:58
thx for your work Dizzymad, everything would be fine, but loop isnt working for me... script is buffing me up, than medditating and nothing more... do i do sth wrong or what?
thx for replay.

Dizzymad
2nd April 2008, 16:07
try this one v 2.2

Talhut
2nd April 2008, 23:44
still the same...

0349234
3rd April 2008, 22:52
still the same...

Dizzymad
4th April 2008, 14:46
in game picture and screenshot with configured program.

uzumakie
20th April 2008, 22:04
i have the same problem
it wont loop

before starting macro
http://i105.photobucket.com/albums/m238/uzumakie/Naamloos-1.jpg

when it should use medi and stops using skills
http://i105.photobucket.com/albums/m238/uzumakie/2008April1801-47-43.jpg

well.... it didnt medi and im out of mp
http://i105.photobucket.com/albums/m238/uzumakie/2008April1801-53-14.jpg

after 1 minute or so... still nothin hapend
http://i105.photobucket.com/albums/m238/uzumakie/2008April1801-54-05.jpg


btw i used the V2 of the recently added skill trainer
hope you can fix it or know what im doing wrong O_o

rbdhack
21st April 2008, 11:01
I've created a little program to simulate F10 for dizzy's trainer.. so the program will loop.
Open 9dragons in windowed mode (from launcher options)
open dizy trainer and use it as ussual.
Open my program to set the time after which should press F10.
ATTENTION!! 9DRAGONS WINDOW SHOULD BE ACTIVE, BUT THE MOUSE CURSOR SHOULD BE OVER MY PROGRAMS WINDOW. DON'T ASK ME WHY, I WAS JUST LUCKY TO FIND THAT ONE. IT'S PRETTY WEIRD HOW 9DRAGONS UNDERSTANDS KEY MESSAGES.
ALSO, DIZZY'S TRAINER DOES NOT WOKR FOR THE LATEST VERSION OF GG :(.
i HOPE IT HELPS

InfiniteDark
21st April 2008, 12:01
Dizzy's program doesn't work anymore.That stupid GG,i hate it.I was able to use the program just once,and it rocked.Dizzy do you think you can make another one ,please:(

uzumakie
21st April 2008, 12:10
nooooooo....

GG just had an update X_x
its true, now nothing works

Dizzymad
28th April 2008, 08:22
i released a working version, even with the new gg updated, in another forum. I barely visit this topic cuz of low interest.

InfiniteDark
28th April 2008, 10:06
That's cool Dizzy,but could you tell us the adress please,i'm quite a noob:D

Nevermind found it.Thanks Dizzy you're a life saver.

rbdhack
30th April 2008, 02:27
Nevermind found it.Thanks Dizzy you're a life saver.

Where is it? I might be dumber than a noob :beard:

modkoreknight
7th May 2008, 08:15
hi dizzy, can u tell me if where can i find ur working tool?thanks in advance

rbdhack
10th May 2008, 15:32
I think he's talking about a new version of joy2key
but it's not working for me, maybe for others :(

lamdaiphong
27th May 2008, 16:19
i have a question, anyone here test the program with Windows Vista 64-bit, i test every macro and it didn't work anymore with 9Dragon in windows Vista 64-bit

vamirexa
25th May 2009, 12:53
mhm....eny skill buff trainer last month or so?..

luizrunner
25th July 2009, 10:37
just can't use it, gameguad detect all the time! -.-
what i have to do?