Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    Gοku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    MPGH.net
    Posts
    1,527
    Reputation
    206
    Thanks
    1,043
    My Mood
    Cheerful

    My First Ever Multi Tool! has Some ERRORS..

    This is my first ever multi tool sorry about the colours guys (looks Irish). !!!STILL WORKING ON IT THOUGH!!!

    SS':
    [IMG]https://i1226.photobucke*****m/albums/ee416/puree123/PUREE123screeniesss.png[/IMG]

    [IMG]https://i1226.photobucke*****m/albums/ee416/puree123/PUREE123screeniesss22.png[/IMG]



    VIRUS SCAN1:
    VirusTotal - Free Online Virus, Malware and URL Scanner

    VIRUS SCAN2:
    Puree123's First Multi Tool.rar - Jotti's malware scan


    EDIT-
    VIRUS SCAN3 (Valkyrie Injector by Faith)- https://www.virustotal.com/file-scan/...acf-1301784646

    Valkyrie is a false positive so delete if u want but Yeah..

    Enjoy





    ATTACHMENT BELOW
    Last edited by Gοku; 04-02-2011 at 04:14 PM.

     







    500 Posts ✓
    750 Posts ✓
    1,337 Posts ✓
    2,000 Posts ×
    3,000 Posts ×

    Ex VIP
    Ex Resource Team Member
    Ex Wiki Editor

  2. #2
    djrubenmp3's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    In JackInDaBox
    Posts
    586
    Reputation
    10
    Thanks
    493
    My Mood
    Psychedelic
    Good job

  3. #3
    Gοku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    MPGH.net
    Posts
    1,527
    Reputation
    206
    Thanks
    1,043
    My Mood
    Cheerful
    Thanks dude.

     







    500 Posts ✓
    750 Posts ✓
    1,337 Posts ✓
    2,000 Posts ×
    3,000 Posts ×

    Ex VIP
    Ex Resource Team Member
    Ex Wiki Editor

  4. #4
    -Away-'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    At my house on my computer i live in C:/Users/-Away-/HACKS Post: 1,00,00,00
    Posts
    475
    Reputation
    -3
    Thanks
    32
    My Mood
    Sick
    Good job. /message to short

  5. #5
    vegatracks's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    29
    Reputation
    9
    Thanks
    2
    My Mood
    Angry
    Good Job dude.

  6. #6
    ☼ҒłœρaÐœρa☼™'s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    AnyWhere-Tha-Party-Is
    Posts
    328
    Reputation
    11
    Thanks
    196
    My Mood
    Cheerful
    gj braw :P
    ]

    All Credz To Susta1nz For My Awesome Siggy

    ҒłœρaÐœρa
    Never Forget To Press THANKS

  7. #7
    Victoria's Avatar
    Join Date
    Feb 2011
    Gender
    female
    Location
    Everywhere where love is♥
    Posts
    1,154
    Reputation
    -20
    Thanks
    94
    My Mood
    In Love
    Good job.
    But the dragon injector is detected.
    Put a new injector.
    Clicking here you can see working injectors: https://www.mpgh.net/forum/290-crossf...ndetected.html

  8. #8
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    Good job.
    approved.

  9. #9
    toobad's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Some where in middle of Heaven and hell
    Posts
    275
    Reputation
    9
    Thanks
    75
    My Mood
    Angelic
    Look cool , not over made like most of multi tools are

  10. #10
    SoWhat's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    1,268
    Reputation
    15
    Thanks
    59
    My Mood
    In Love
    good jobb!!!

  11. #11
    Gοku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    MPGH.net
    Posts
    1,527
    Reputation
    206
    Thanks
    1,043
    My Mood
    Cheerful
    Thanks Guys

    EDIT: I will Fix the Injector.

     







    500 Posts ✓
    750 Posts ✓
    1,337 Posts ✓
    2,000 Posts ×
    3,000 Posts ×

    Ex VIP
    Ex Resource Team Member
    Ex Wiki Editor

  12. #12
    Takari's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Cross Fire Section
    Posts
    11,889
    Reputation
    574
    Thanks
    1,966
    My Mood
    Cool
    If you want some help tell me.Want Auto clicker source code?Here it is.Thanks + Rep me
    Code:
    Public Class Form1
        Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
        Private Declare Sub mouse_event Lib "user32" (ByVal dwflags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cbuttons As Long, ByVal dwExtraInfo As Long)
        Private Const mouseclickup = 4
        Private Const mouseclickdown = 2
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Hotkeys.Tick
            Dim Hotkey1 As Boolean
            Hotkey1 = GetAsyncKeyState(Keys.F5)
            If Hotkey1 = True Then
                Clicks.Start()
    
            End If
            Dim Hotkey2 As Boolean
            Hotkey2 = GetAsyncKeyState(Keys.F6)
            If Hotkey2 = True Then
                Clicks.Stop()
    
            End If
        End Sub
    
        Private Sub Click_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Clicks.Tick
            Clicks.Interval = TextBox1.Text
            mouse_event(mouseclickdown, 0, 0, 0, 0)
            mouse_event(mouseclickup, 0, 0, 0, 0)
        End Sub
    
        Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
    
        End Sub
        Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label3.Click
    
        End Sub
    End Class
    Try to figure what you need to add by your self.
    Last edited by Takari; 04-02-2011 at 04:33 PM.
    [IMG]https://i1114.photobucke*****m/albums/k538/ImminentJM/takari.png[/IMG]




     
    Goal:
    10,000 Posts - 10/13/2011
    Become Minion - Not Done
    Become Donator - 07/29/2011
    1000 Thanks - Done - 07/25/2011
    2000 Thanks - Not Done
    Thanks Archangel for my 1,000 Thanks.
    Thanks Keroaplt for my Signature.

  13. #13
    Decobez's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    Graphics Section <3
    Posts
    411
    Reputation
    28
    Thanks
    113
    My Mood
    Twisted
    man looks aight...
    nice i guess...

  14. #14
    Яaphael's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Look a'ma flag, bro!
    Posts
    1,827
    Reputation
    6
    Thanks
    211
    My Mood
    Pensive
    Nice one
    Looks great

  15. #15
    FishBone-'s Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    probably somewere there :O
    Posts
    527
    Reputation
    12
    Thanks
    58
    My Mood
    Brooding
    gj i cant do better cuz ive forget all i learned about coding :P
    HELLO, I LIKE HELPING, HELPING IS FUN

Page 1 of 2 12 LastLast