Results 1 to 5 of 5
  1. #1
    poedeltje's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    817
    Reputation
    10
    Thanks
    454
    My Mood
    Psychedelic

    Exclamation Injector features

    Hey MPGH,

    I'm making my first VB.net program, and I don't know what features I can add to it.

    (Don't know if this is the good section for it.)

    Screen:

    I'm not a designer or something.

    Poedeltje.
    (Fuck my English.)




  2. #2
    poedeltje's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    817
    Reputation
    10
    Thanks
    454
    My Mood
    Psychedelic
    wtf the posts keep getting removed?




  3. #3
    alaska321's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    Look behind you ;)
    Posts
    797
    Reputation
    14
    Thanks
    253
    My Mood
    Sleepy
    Add hotkeys for manual inject or for making SS?





  4. #4
    poedeltje's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    817
    Reputation
    10
    Thanks
    454
    My Mood
    Psychedelic
    Quote Originally Posted by alaska321 View Post
    Add hotkeys for manual inject or for making SS?
    Good idea!
    Hotkey is not hard to make, but screenshot is not easy :P.




  5. #5
    Raow's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Location
    47°37′39″N 122°14′32″W
    Posts
    2,720
    Reputation
    140
    Thanks
    594
    Quote Originally Posted by poedeltje View Post


    Good idea!
    Hotkey is not hard to make, but screenshot is not easy :P.
    Screenshot's are easy to do.
    Sizeable SS
    Code:
    Form2.Hide()
    
    Dim area As Rectangle
    
    Dim capture As System.Drawing.Bitmap
    
    Dim graph As Graphics
    
    area = 'Insert area here. If you want to make it easier, make a semi transparent blank form and make the area Form2.Bounds
    
    capture = New System.Drawing.Bitmap(Bounds.Width, Bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)
    
    graph = Graphics.FromImage(capture)
    
    graph.CopyFromScreen(area.X, area.Y, 0, 0, area.Size, CopyPixelOperation.SourceCopy)
    
    'Just handle capture now, like put it in a picture box and save it from there or do whatever you like.
    Full Screen SS
    Code:
    'For this one, add a module in, name it whatever you'd like.
    Public Class screenshot
    Public Shared Image As Image
    Public Shared Bounds As Rectangle
    Shared Function GetDesktopImage(Optional ByVal Width As Integer = 0, Optional ByVal Height As Integer = 0, Optional ByVal ShowCursor As Boolean = True) As Image
    Dim W As Integer = Screen.PrimaryScreen.Bounds.Width
    Dim H As Integer = Screen.PrimaryScreen.Bounds.Height
    Dim DesktopBitmap As New Bitmap(W, H)
    Dim g As Graphics = Graphics.FromImage(DesktopBitmap)
    g.CopyFromScreen(0, 0, 0, 0, New Size(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height), CopyPixelOperation.SourceCopy)
    If ShowCursor Then Cursors.Default.Draw(g, New Rectangle(Cursor.Position, New Size(32, 32)))
    g.Dispose()
    If Width = 0 And Height = 0 Then
    Image = DesktopBitmap
    Return DesktopBitmap
    
    Else
    Dim ScaledBitmap As Image = DesktopBitmap.GetThumbnailImage(Width, Height, Nothing, IntPtr.Zero)
    DesktopBitmap.Dispose()
    Image = ScaledBitmap
    Return ScaledBitmap
    End If
    End Function
    End Class
    
    'Use screenshot.GetDesktopImage To get a fullscreen ss. Then handle it how you'd like.
    'Example: PictureBox1.Image = screenshot.GetDesktopImage

Similar Threads

  1. Black Dragon Injector 2.1 [New Features]
    By guza44_44 in forum Combat Arms Spammers, Injectors and Multi Tools
    Replies: 50
    Last Post: 06-09-2012, 01:15 AM
  2. Injector Features
    By Solo in forum WarRock Hack Source Code
    Replies: 1
    Last Post: 10-10-2010, 07:54 AM
  3. FaithDEV Injector Features
    By Faith in forum Combat Arms Discussions
    Replies: 15
    Last Post: 05-10-2010, 08:48 PM
  4. [Release] Advanced xSyR1Ng3x injector build 1.0 (Unique Features)
    By -XpliCitt- in forum Combat Arms Hacks & Cheats
    Replies: 22
    Last Post: 11-06-2009, 03:18 PM
  5. What features do you want in an injector?
    By That0n3Guy in forum Combat Arms Discussions
    Replies: 30
    Last Post: 09-04-2009, 05:12 PM

Tags for this Thread