Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    ThreadOP's Avatar
    Join Date
    Jul 2014
    Gender
    female
    Posts
    23
    Reputation
    10
    Thanks
    91

    ExileBot v3.0 [Fully Optimized]

    I am now working with background worker and I've optimized all of my code and fixed a lot of things.

    New MainThread Method
    Code:
     Sub Background_DoWork(sender As System.Object, e As System.ComponentModel.DoWorkEventArgs) Handles BackGround.DoWork
            While (Not BackGround.CancellationPending) AndAlso (isRunning)
                RunCodeWith(e.Argument(0), e.Argument(1))
            End While
        End Sub
        Sub RunCodeWith(ByRef Lines As String(), ByVal isChecked As Boolean)
            If Lines.Count > 0 And isRunning Then
                For Each strLine As String In Lines
                    arr = {}
                    arr = strLine.Split(Space)
                    Select Case arr(Zero)
                        Case ClickCmd
                            Try
                                If isChecked Then
                                    Select Case RND.Next(Zero, Five) 'Now the range is 0-4, it was 0-3 previously
                                        Case Zero : Windows.Forms.Cursor.Position = New Point(arr(One) + One, arr(Two))
                                        Case One : Windows.Forms.Cursor.Position = New Point(arr(One) - One, arr(Two))
                                        Case Two : Windows.Forms.Cursor.Position = New Point(arr(One), arr(Two) + One)
                                        Case Three : Windows.Forms.Cursor.Position = New Point(arr(One), arr(Two) - One)
                                        Case Four : Windows.Forms.Cursor.Position = New Point(arr(One), arr(Two))
                                        Case Else : Console.WriteLine("Unhandled BriefCase...")
                                    End Select
                                Else
                                    Windows.Forms.Cursor.Position = New Point(arr(One), arr(Two))
                                End If
                                mouse_event(LEFTDOWN, Zero, Zero, Zero, One)
                                Delay(RND.Next(Zero, arr(Three)))
                                mouse_event(LEFTUP, Zero, Zero, Zero, One)
                                Delay(RND.Next(Zero, arr(Four)))
                            Catch ex As Exception
                            End Try
                        Case EndCmd : isRunning = False : CancelWork()
                        Case Else : Console.WriteLine("Wh8 whut...")
                    End Select
    
                Next
            Else
                CancelWork()
            End If
        End Sub

    Old MainThread Method
    Code:
        Public Sub RunCode()
    
            While isRunning = True
                For Each strLine As String In RichTextBox1.Lines
                    Dim arr() As String = strLine.Split(" ")
                    Select Case arr(0)
                        Case "CLICK"
                            Try
                                If CheckBox1.Checked = True Then
                                    DirVar = RND.Next(0, 4)
                                    If DirVar = 0 Then
                                        Windows.Forms.Cursor.Position = New Point(arr(1) + 1, arr(2))
                                    ElseIf DirVar = 1 Then
                                        Windows.Forms.Cursor.Position = New Point(arr(1) - 1, arr(2))
                                    ElseIf DirVar = 2 Then
                                        Windows.Forms.Cursor.Position = New Point(arr(1), arr(2) + 1)
                                    ElseIf DirVar = 3 Then
                                        Windows.Forms.Cursor.Position = New Point(arr(1), arr(2) - 1)
                                    ElseIf DirVar = 4 Then
                                        Windows.Forms.Cursor.Position = New Point(arr(1), arr(2))
                                    End If
                                Else
                                    Windows.Forms.Cursor.Position = New Point(arr(1), arr(2))
                                End If
                                mouse_event(LEFTDOWN, 0, 0, 0, 1)
                                Delay((RND.Next(arr(3))) / 1000)
                                mouse_event(LEFTUP, 0, 0, 0, 1)
                                Delay((RND.Next(arr(5))) / 1000)
                            Catch ex As Exception
                            End Try
                        Case "END"
                            isRunning = False
                            
                    End Select
                    arr = Nothing
                Next
            End While
        End Sub
    Basically throughout my entire code I've fixed things up, and optimized what I can like the click listbox Mouse Coordinates to Textbox feature

    Code:
    Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
    
            Dim word As String = ListBox1.SelectedItem.ToString
            Dim wordArr As String() = word.Split(",")
            Dim result As String = wordArr(1)
            Dim Result2 As String = wordArr(0)
            TextBox1.Text = Result2
            TextBox2.Text = result
        End Sub
    Code:
      Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
            Dim wordArr As String() = ListBox1.SelectedItem.ToString.Split(",")        'Dim word As String = ListBox1.SelectedItem.ToString
            TextBox1.Text = wordArr(0)        ' Dim Result2 As String = wordArr(0)
            TextBox2.Text = wordArr(1)        ' Dim result As String = wordArr(1)
        End Sub

    I also got rid of my timers which were also causing lag. With all of my optimizations and running it through BGW I've managed to keep the script from "Lagging" to the point that you may miss a turn during battle. I have not ran this all night using this new method so I'm not too sure how well it wil work but from what I've done so far it seems to work great. It also shouldn't stay running in the Task manager, it will all properly be handled now so the thread shuts down with the application.

    Screenshot


    Scans
    https://virusscan.jotti.org/ru/scanre...cdac16ad31cf76
    https://www.virustotal.com/en/file/c...is/1408373235/

    Increase a click delay to about 10000 to avoid "freezing"(unable to use mouse), if you run the program for a long time it eventually the SWF will cause the thread to back up and it will be forced to complete what is hasn't already and what its being told to do next. So when this happens the only way to stop it is to disconnect your connection so your SWF shuts off allowing the thread to sync so you can shut the program off, or whatever you want to do.
    <b>Downloadable Files</b> Downloadable Files
    Last edited by ThreadOP; 08-18-2014 at 10:26 AM.

  2. The Following 47 Users Say Thank You to ThreadOP For This Useful Post:

    alvind26 (10-17-2014),amm2100 (11-04-2014),AragornSun (11-13-2014),aryan220011 (02-25-2015),ash22232 (03-06-2015),astold48 (08-20-2014),bleedingstar45 (10-13-2014),Bruticus Maximus (04-12-2015),Chaosknight187 (10-09-2014),Cruzido (01-30-2015),CTbuilders (12-21-2014),Donnark (12-22-2014),drakosuli (08-22-2014),FlamesOfHatred (10-03-2014),frknlm34 (01-16-2015),Gudiofor (10-14-2014),hermeticlock (11-28-2014),iLloydie (10-11-2014),jp07 (10-11-2014),kamird (05-29-2015),kirux (10-23-2014),lopas123456 (12-06-2014),mircea22222 (10-09-2014),ognezar (10-24-2014),palmolar (05-02-2015),Perrbob222 (05-07-2015),Pewdz (08-22-2014),Pony Christ (12-07-2014),ptk3224 (11-09-2014),RagnarX3 (11-03-2014),safah3c5 (08-25-2014),schiffer111 (09-23-2014),shadowfare (03-02-2015),shubh220011 (03-08-2015),sir chendestroy (10-05-2014),sofa26 (10-10-2014),sunrise3b (08-23-2014),superkill999 (01-10-2015),surugoiaba (11-30-2014),T20- (12-19-2015),timur95 (12-05-2014),tinglykung123 (10-15-2014),Vahlokriid (02-16-2015),warman56qw (10-11-2014),WOFTN (11-15-2014),xtinus123 (12-22-2014),X_Hyper_x (11-22-2014)

  3. #2
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    File appears safe.
    /Approved


    MPGH Staff History:
    Minion: 02-12-2013 - 6-28-2013
    Former Staff: 6-28-2013 - 7-14-2014
    Minion: 7-14-2014 - 1-3-2015
    Minion+: 1-3-2015 - 6-1-2015
    Moderator: 6-1-2015 - 10-2-2016
    Global Moderator: 10-2-2016 - Current

    Current Sections:
    DayZ Mod & Standalone Hacks & Cheats
    BattleOn Games Hacks, Cheats & Trainers
    Minecraft Hacks
    Other Semi-Popular First Person Shooter Hacks
    Blackshot Hacks & Cheats
    Need For Speed World Hacks
    Other First Person Shooter Hacks
    CounterStrike: Global Offensive Hacks
    Garry's Mod Hacks & Cheats


    Donating:
    If you want to donate money to me I take Bitcoin & Paypal, PM me for either of these if you're interested and thanks.
    Top Donators: (Awesome People)
    FanticSteal $75.00
    smurf_master $58.00 <- Best DayZ Gear Seller
    Fujiyama $25.00
    [MPGH]Black $10.00
    [MPGH]Hova $10.00
    xJudgez $4.54
    [MPGH]Normen's Sheep $3.50
    eminemlover $1.50


    Brony?
    https://www.mpgh.net/forum/groups/1728-mpgh-bronies.html

  4. #3
    alfredosauce212's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    bro can u teach me how to use this? it looks awesome!

  5. #4
    ThreadOP's Avatar
    Join Date
    Jul 2014
    Gender
    female
    Posts
    23
    Reputation
    10
    Thanks
    91
    Quote Originally Posted by alfredosauce212 View Post
    bro can u teach me how to use this? it looks awesome!
    Hover your mouse over a place you want to click, such as the 1v1 button or the attack button, then press F1 and it will save the coordinates.
    Now click the coordinates in your listbox it will send it to the X / Y textboxes.
    Then you add the Post Click Delay which is the delay before it goes to the Next Click position.
    Finally you can add a "Note" to let your self know what's what. You should go by the Default Script, that is a good guide line on what you need to account for to Bot ED.

  6. #5
    Jim's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Summoner's Rift
    Posts
    4,250
    Reputation
    860
    Thanks
    1,556
    My Mood
    Psychedelic
    Awesome release OP.
    Need a friend? Private Message
    Need a Middleman? Add me on Skype: HERE or Copy & Search >> 'aussie_sniperx'
    ---------------








    Ex-sections:
    DayZ
    OFPS
    OMMORPG
    M.A.T
    OSPFPS
    Battleon

  7. #6
    ewrc's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    Steel is my body, and fire is my Blood
    Posts
    819
    Reputation
    154
    Thanks
    300
    My Mood
    Relaxed
    So is this ever going o be continued?
     
    Fuck off you scum

  8. #7
    Jim Morrison's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Canterlot, Equestria
    Posts
    12,444
    Reputation
    1090
    Thanks
    3,336
    Quote Originally Posted by ewrc View Post
    So is this ever going o be continued?
    Considering he's banned I'm not to sure.


    MPGH Staff History:
    Minion: 02-12-2013 - 6-28-2013
    Former Staff: 6-28-2013 - 7-14-2014
    Minion: 7-14-2014 - 1-3-2015
    Minion+: 1-3-2015 - 6-1-2015
    Moderator: 6-1-2015 - 10-2-2016
    Global Moderator: 10-2-2016 - Current

    Current Sections:
    DayZ Mod & Standalone Hacks & Cheats
    BattleOn Games Hacks, Cheats & Trainers
    Minecraft Hacks
    Other Semi-Popular First Person Shooter Hacks
    Blackshot Hacks & Cheats
    Need For Speed World Hacks
    Other First Person Shooter Hacks
    CounterStrike: Global Offensive Hacks
    Garry's Mod Hacks & Cheats


    Donating:
    If you want to donate money to me I take Bitcoin & Paypal, PM me for either of these if you're interested and thanks.
    Top Donators: (Awesome People)
    FanticSteal $75.00
    smurf_master $58.00 <- Best DayZ Gear Seller
    Fujiyama $25.00
    [MPGH]Black $10.00
    [MPGH]Hova $10.00
    xJudgez $4.54
    [MPGH]Normen's Sheep $3.50
    eminemlover $1.50


    Brony?
    https://www.mpgh.net/forum/groups/1728-mpgh-bronies.html

  9. #8
    sir chendestroy's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    39
    Reputation
    27
    Thanks
    3
    Does this bot run in the background? Can I use my mouse when I use this bot?

  10. #9
    TheGloriousRance's Avatar
    Join Date
    Sep 2014
    Gender
    male
    Location
    #UNBAN RANCE-SAMA 2014
    Posts
    212
    Reputation
    50
    Thanks
    70
    Somebody should fix the load SWF code so it'd work on OverSoul.

  11. #10
    Jim's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    Summoner's Rift
    Posts
    4,250
    Reputation
    860
    Thanks
    1,556
    My Mood
    Psychedelic
    Quote Originally Posted by TheGloriousRance View Post
    Somebody should fix the load SWF code so it'd work on OverSoul.
    Fix it yourself.
    Need a friend? Private Message
    Need a Middleman? Add me on Skype: HERE or Copy & Search >> 'aussie_sniperx'
    ---------------








    Ex-sections:
    DayZ
    OFPS
    OMMORPG
    M.A.T
    OSPFPS
    Battleon

  12. #11
    ptk3224's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    There is any way to minimize the bot?

  13. #12
    AngryLeech's Avatar
    Join Date
    Sep 2014
    Gender
    female
    Posts
    32
    Reputation
    10
    Thanks
    160
    Quote Originally Posted by ptk3224 View Post
    There is any way to minimize the bot?
    It's continued as GamePlayerBot

  14. #13
    imjimbob's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Location
    ( ͡° ͜ʖ ͡°)
    Posts
    39
    Reputation
    10
    Thanks
    5
    My Mood
    Drunk
    Could someone please update this?

  15. #14
    lopas123456's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    yeah, black screen -.-

  16. #15
    drakosuli's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    0
    My Mood
    In Love
    just change the address on the top it is "epicduelcdn.arti*****m/OmegaLoader2.swf" you should change the number 2 to 11 so you will get "epicduelcdn.arti*****m/OmegaLoader11.swf"

    NO MORE BLACK SCREEN

Page 1 of 2 12 LastLast

Similar Threads

  1. New PM fully undected
    By csd900 in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 4
    Last Post: 09-03-2009, 03:39 PM
  2. [AD]StealthMS - 850x EXP|1500x Mesos|10x Drop|v.62|Full Pirates|NON-HAM|Fully Custom
    By epicfail in forum MapleStory Hacks, Cheats & Trainers
    Replies: 2
    Last Post: 03-13-2009, 08:05 PM
  3. ok,here is my trainer fully working{detected,need bypass]
    By cjg333 in forum WarRock - International Hacks
    Replies: 3
    Last Post: 06-26-2007, 04:59 AM
  4. ill trade fully working bypass for a hack
    By dan978 in forum WarRock - International Hacks
    Replies: 10
    Last Post: 05-18-2007, 06:55 AM
  5. Optimize Memory
    By 1h1a1i in forum Hardware & Software Support
    Replies: 35
    Last Post: 08-03-2006, 07:31 AM