Page 1 of 3 123 LastLast
Results 1 to 15 of 35
  1. #1
    qddW$#%^jtyjtyj's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    721
    Reputation
    7
    Thanks
    148
    My Mood
    Mellow

    [HELP]Guitar hero 3 bot(Color searcher)

    Well what i want it to do is search for the specific color from the COLORCODE at a LOCATION
    and if it notices the COLOR in the LOCATION then it Presses the gh3 color button i configed and the down arrow

  2. #2
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    so.. whats the problem? :X
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  3. #3
    ɑrtemis's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    arun's urethra
    Posts
    260
    Reputation
    24
    Thanks
    17
    My Mood
    Amused
    So he can impress people when he didn't do it. Doubt it's possible to make.

  4. #4
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Explain the problem !!

  5. #5
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107
    i think get wants to make a "color aimbot"(thats the only way i could put it) and have it press a key when the color shows up at a certain spot.

  6. #6
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Quote Originally Posted by trevor206 View Post
    i think get wants to make a "color aimbot"(thats the only way i could put it) and have it press a key when the color shows up at a certain spot.
    colors are not exactly needed.. they wont change... all you would need for that kind of "aimbot" would be "screen positions"...

    Anyway it does not look like a really good solution.
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  7. #7
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    Quote Originally Posted by ɑrtemis View Post
    So he can impress people when he didn't do it. Doubt it's possible to make.
    :O it's totally possible to make!

    It's a lot harder than it looks/seems though, trust me.

  8. #8
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Well it all just depends if there's other colors the same on the screen, because you'd have to filter it out and only accept the correct GH colors. You'd also need to reduce the scan area to just the fret so it presses exactly at the right moment. It'd probably take some tweaking. I can post a source I made (I had help from google as well for parts, not claiming credit for the whole thing) if you really want.

    EDIT: Okay here's the source 'cos I gtg and I cbf waiting for a reply :P

    Declarations:

    [php]
    Private Declare Function GetPixel Lib "Gdi32.dll" (ByVal hdc As IntPtr, ByVal x As Integer, ByVal y As Integer) As Integer
    Private Declare Function CreateDC Lib "Gdi32.dll" (ByVal driverName As String, ByVal deviceName As String, ByVal output As String, ByVal lpInitData As IntPtr) As IntPtr
    Private Declare Function DeleteDC Lib "Gdi32.dll" (ByVal dc As IntPtr) As Boolean
    Private Declare Function GetAsyncKeyState Lib "User32" (ByVal vkey As Int32) As Int16

    Dim ScreenDC As IntPtr
    [/php]

    Add this to form1_load:

    [php]
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    ScreenDC = CreateDC("DISPLAY", Nothing, Nothing, CType(Nothing, IntPtr))
    End Sub
    [/php]

    This gets the device context of the screen display.

    Now you need to deleteDC at formclose or you'll end up on shits creek

    [php]
    Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
    DeleteDC(ScreenDC)
    End Sub
    [/php]

    Next you need a pixel scanner function so here's one I made, with a bit of help from google:

    [php]
    Function PixelScan(ByVal startX As Integer, ByVal startY As Integer, ByVal toX As Integer, ByVal toY As Integer, ByVal sColor As System.Drawing.Color)

    Dim y As Integer
    Dim thisPixel As Integer
    Dim PixelColor As System.Drawing.Color

    For x As Integer = startX To toX
    For y = startY To toY
    thisPixel = GetPixel(ScreenDC, x, y)
    PixelColor = ColorTranslator.FromOle(thisPixel)

    If PixelColor = sColor Then
    'do whatever you want when the color is found here.
    End If

    Next
    Next

    Return Nothing

    End Function
    [/php]

    Then to use it just do this:
    [php]
    PixelScan(0, 0, 1366, 768, Color.Blue) '<- this will scan my entire screen (resolution 1366x768) for the color "blue"
    [/php]


    And that's about all you need. Now it's a matter of making it do whatever you want.

    Last edited by Jason; 08-12-2010 at 12:42 PM.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  9. The Following 2 Users Say Thank You to Jason For This Useful Post:

    Blubb1337 (08-12-2010),Hassan (08-12-2010)

  10. #9
    Irony's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    MPGH where else?
    Posts
    5,969
    Reputation
    285
    Thanks
    539
    My Mood
    Busy
    J-Deezy is too pro for mpgh.

  11. #10
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    Quote Originally Posted by Vocal View Post
    J-Deezy is too pro for mpgh.
    no, too pro for VB, he should move on to C++


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



  12. #11
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by mnpeepno2 View Post
    no, too pro for VB, he should move on to C++
    Haha I'm actually learning a bit of C++ on the side, but I prefer OOP personally, although the power of C++ IS tempting. Also, if you've been to a forum like VBforums you'll realize I'm actually a real beginner in VB. I joined that forum last night for more challenging and engaging VB discussion and realized exactly how much more I have to learn. The people there are real pros and their questions are advanced ones, it's a good learning resource though.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  13. #12
    qddW$#%^jtyjtyj's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    721
    Reputation
    7
    Thanks
    148
    My Mood
    Mellow
    @J-Deezy thank you (I got bigger screen than you (1980x1080)Try to pwn me xD)

  14. #13
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by techial2 View Post
    @J-Deezy thank you (I got bigger screen than you (1980x1080)Try to pwn me xD)
    I use a laptop lol, don't need a big screen

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  15. #14
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Great Work Jason. You are moving to the pro side. I think you joined the same forum I joined a week ago.

  16. #15
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by Xscapism View Post
    Great Work Jason. You are moving to the pro side. I think you joined the same forum I joined a week ago.
    It makes me feel really nooby there, I have a loooong way to go :P

    Thanks Hassan

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

Page 1 of 3 123 LastLast

Similar Threads

  1. [Help Request] Help with all bots.
    By coldkiller66 in forum Vindictus Help
    Replies: 2
    Last Post: 07-27-2011, 02:32 AM
  2. [REQUEST] Guitar Hero 3 Xbox360 Bot
    By calvinc14 in forum Hack Requests
    Replies: 0
    Last Post: 09-19-2009, 12:26 AM
  3. Fuck Guitar hero :@
    By Gourav2122 in forum Flaming & Rage
    Replies: 39
    Last Post: 01-25-2008, 06:58 PM
  4. Guitar hero
    By Gourav2122 in forum General
    Replies: 20
    Last Post: 12-22-2007, 09:26 AM
  5. South Park Guitar Hero
    By arunforce in forum General
    Replies: 5
    Last Post: 11-14-2007, 04:54 PM