9Dragons Skill/Buff trainer (working one lol)

03/15/2008 04:27 pvpgawdapker#91
man where you download it give me the web plz
03/15/2008 08:48 xXjaapXx#92
Is this going to become a spamm thread?
because there is no working skill trainer public.
otherwise it would have been posted already.
03/15/2008 12:07 Rafcik#93
Quote:
Is this going to become a spamm thread?
because there is no working skill trainer public.
otherwise it would have been posted already.
So look at this page: [Only registered and activated users can see links. Click Here To Register...] (i hope that i won't get warn because of it :) )

Look at first theard. It says :
Quote:
9Dragons Bots - Working buff trainer (March 2008)
basic one...but it works at least
However i can't see this topic, in cause that i don't have premium account there. So that is why I'm asking people about that. So, if someone have premium account there, please share it with us :) .
03/15/2008 12:32 Searinox1986#94
I have the Source of pinnacle bot.... but i cant make a program.... if anyone can do it :D tell me
03/15/2008 16:04 elco2100#95
Quote:
Originally Posted by Searinox1986 View Post
I have the Source of pinnacle bot.... but i cant make a program.... if anyone can do it :D tell me

Then you shut post it here there are users ho ask for it.:rolleyes:
03/15/2008 20:26 Searinox1986#96
Quote:
Originally Posted by elco2100 View Post
Then you shut post it here there are users ho ask for it.:rolleyes:
;************************************************* ****************************
;* This program is free software: you can redistribute it and/or modify *
;* it under the terms of the GNU General Public License as published by *
;* the Free Software Foundation, either version 3 of the License, or *
;* (at your option) any later version. *
;* *
;* This program is distributed in the hope that it will be useful, *
;* but WITHOUT ANY WARRANTY; without even the implied warranty of *
;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
;* GNU General Public License for more details. *
;* *
;* You should have received a copy of the GNU General Public License *
;* along with this program. If not, see <http://www.gnu.org/licenses/>. *
;************************************************* ****************************

;************************************************* ****************************
;* AFK Skill Trainer Bot for 9Dragons *
;* Author: [Only registered and activated users can see links. Click Here To Register...] *
;************************************************* ****************************
#include <GUIConstants.au3>


;************************************************* ****************************
;* Setup some keybindings for operating the trainer. *
;************************************************* ****************************
HotKeySet( "{ESC}", "_EXIT"); Shutdown the Script.
HotKeySet( "{F11}", "_START");Start botting, WOHOOO!!!!
HotKeySet( "^{F11}", "_PAUSE");"Pause" the execution, in fact the script keeps running in the loop without actually doing anything
HotKeySet( "{F10}", "_NEXT");Select next skill

;************************************************* ****************************
;* Define Constants used with the skill array. *
;************************************************* ****************************
Global Const $_NAME = 0
Global Const $_KEY = 1
Global Const $_DELAY = 2
Global Const $_VECOST = 3

Global $activeSkill = 0;set the default active skill.
Global $ve = 770; Edit this to set up how much VE your character has, or how much you want to use before meditating.


;************************************************* ****************************
;* Define skills. *
;************************************************* ****************************
Global $skill[10][4];Setup an array of 10 skills. That should be enough since you cant have more of them on the bar ingame.

$skill[0][$_NAME] = "Demonic Healing of Blood The Sky" ; This is what will be shown in the toolwindow
$skill[0][$_KEY] = 7 ; Which key do you have this skill on?
$skill[0][$_DELAY] = 5000 ; How long should we wait before "pressing" the key again?
$skill[0][$_VECOST] = 12 ; How much VE does this skill cost?

$skill[1][$_NAME] = "Demonic Spirit of Madness"
$skill[1][$_KEY] = 8
$skill[1][$_DELAY] = 5000
$skill[1][$_VECOST] = 20

Dim $iArraySize = 2;Set the array size, for our next skill function.

Dim $hWnd, $hlSkill, $hlVE;Define our window and control handlers
Dim $pause = 0;Initialize the pause

;************************************************* ****************************
;* Setup "easy" cell creation within window controls *
;************************************************* ****************************
Opt("GUICoordMode",2)

;************************************************* ****************************
;* Crude way of making the bot stop its skill mashing. I just couldnt think *
;* of a better way at the moment. *
;************************************************* ****************************
Func _PAUSE()
$pause = 1 - $pause
if $pause Then
GUICtrlSetColor($hlVE, 0xFF0000)
Else
GUICtrlSetColor($hlVE, 0x00FF00)
EndIf
EndFunc

;************************************************* ****************************
;* Start botting. *
;************************************************* ****************************
Func _START()
GUICtrlSetColor($hlVE, 0x00FF00)
While 1
$curVE = $ve
Do; Lets repeat the skillmashing as long as we have VE for it.
if $pause = 0 Then
Send($skill[$activeSkill][$_KEY])
Sleep ($skill[$activeSkill][$_DELAY])
$curVE -= $skill[$activeSkill][$_VECOST]
GUICtrlSetData($hlVE, $curVE)
EndIf
Until $curVE < $skill[$activeSkill][$_VECOST]

; Time to meditate.
Send("{p}")
Sleep (30000)
WEnd
EndFunc


;************************************************* ****************************
;* Exit the trainer. *
;************************************************* ****************************
Func _EXIT()
Exit 0
EndFunc

;************************************************* ****************************
;* Switch to the next skill in the list *
;************************************************* ****************************
Func _NEXT()
$activeSkill += 1;
$activeSkill = Mod($activeSkill, $iArraySize)
GUICtrlSetData($hlSkill, $skill[$activeSkill][$_NAME])
EndFunc

;************************************************* ****************************
;* Our Main function, where all the non-data initialization will take place. *
;* Here we create the the toolwindow and fill it with initial data. *
;************************************************* ****************************
Func _MAIN()
$hWnd = GUICreate("9Dragons Skill Trainer", 250, 30, 750, 15, -1, BitOR($WS_EX_TOPMOST, $WS_EX_TOOLWINDOW))
$hlSkill = GUICtrlCreateLabel($skill[$activeSkill][$_NAME], 10, 10, 200)
$hlVE = GUICtrlCreateLabel($ve, 0, -1, 30)
GUISetState()
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc


_MAIN()
03/16/2008 14:19 HellConnen#97
damn damn damn daaaaaaamn its not working what am i suposed to dooo.....when i alt tab the game its ok...when i start the trainer its ok , but when i insert the first value for meditation it just frozes !!! wtf does it want me to do . Thats not fair:(:(:(:(:(:(:mad::mad::mad::mad::mad:
03/16/2008 14:25 HellConnen#98
Quote:
Originally Posted by Guenton View Post
For those who are still confused about this matter.
This is the situation as it is now.

Up to January 4th the program called "Pinnacle.exe" was it Game Guard's White list. Meaning it was classified as harmless. For this reason any trainer that was made before that date could be renamed to "Pinnacle.exe" and Game Guard would have failed to detect it as a Macro.

Now however since their recent Rev 1105 Update (Came together with 9D's update 33 on January 4th) this is not Possible anymore.
Right now Game Guard actually checks the driver code of it's white listed programs to verify if they are legit.

So what we have to do now is figure a more sophisticated way to trick Game Guard into thinking that whatever program that you're using is Legit. I've been trying my best to find a way around it myself, but it's quite hard to trick the updated Game Guard version.

I'm thinking it's gonna be easier to find a way to klone Game Guard itself into running a version lower then the last update when launching the game. But then again. That's quite tricky too.

Sorry Guys, I'm doing my best but I can't find a solution to the matter right now either :(
Thx man .....but it still isnt fair. :(. Aren't there any gameguard hackers , that oughtta be a solution. But i dont know what to think, i saw just today a cheater using this thing :confused: waht should i do , install a previous version ? hmm that should work :D:D:D:D:D Thanks again for the post
03/16/2008 14:29 xXjaapXx#99
well before we can use the pinnacle thing.
we should first find a bypass for the current gg.

i will google it and try to find anything.
ofcourse i will post it if i find something usefull.

[edit]after some time googeling.
i couldnt find anything.
maybe someone can make a bypass???[/edit]
03/16/2008 20:16 Rafcik#100
It is imposible to bypass gameguard in 9Dragons in cause that game is checking your GG ver. I tried this alredy and i got DC every time.

What's more your Pinnacle code don't work anyway, and it was not working usuall. Pinnacle was working only in cause that file named "Pinnacle.exe" was white-listed by GG.

There is an existing macro. I posted link to it few posts ago. However one need premium to look at that theard.

Quote:
So look at this page: [Only registered and activated users can see links. Click Here To Register...] (i hope that i won't get warn because of it :) )
03/24/2008 03:29 bdragon#101
i tried to run it and a black screen just came up :/
03/24/2008 15:03 S-PSP N00B#102
Nice ^^
Looks like U did it

TY
03/25/2008 04:41 bdragon#103
but idk what to do lol it's just a black screen XD nothin happens
03/25/2008 07:43 Dizzydbd#104
I'll make and post a new one asap. Just reinstalled 9D and tested a few things... hopefully it will work
03/25/2008 18:39 elco2100#105
Quote:
Originally Posted by Dizzydbd View Post
I'll make and post a new one asap. Just reinstalled 9D and tested a few things... hopefully it will work
Cool nice to see that you work on it..:D