View Poll Results: Did this Guide Help You?

Voters
33. This poll is closed
  • Yes, I think it did help/will help

    23 69.70%
  • No, This guide didn't have the information I was after

    10 30.30%
Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 57
  1. #31
    dadirty's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    68
    Reputation
    11
    Thanks
    44
    My Mood
    Amused
    TY! I was wondering how to delay the individual lines of my spammers. I would press the hotkey and it would rattle off 5 lines.

  2. #32
    iOwnage's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Aussie Aussie Aussie OI OI OI
    Posts
    118
    Reputation
    12
    Thanks
    58
    Quote Originally Posted by jimmydang09 View Post
    lol move this really to VB section btw best vb coder is explictt then user 1 then meee but since they got minion i might get into coding team for VB
    You suck ass at coding VB.
    You only copy 'n' paste from source and tutorials, you haven't actually learnt VB idiot.
    You sucked soo much that you think I was using VIP when I was using teamtags and wouldn't give it to you, and it was made using VB.

  3. #33
    dadirty's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    68
    Reputation
    11
    Thanks
    44
    My Mood
    Amused
    D - A - M - N

  4. #34
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Nice tutorial!

  5. #35
    n3m1s1s's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    Torontonomnomnomom
    Posts
    1,752
    Reputation
    34
    Thanks
    232
    My Mood
    Fine
    I dunno what the hell this is... Il try later...



  6. The Following User Says Thank You to n3m1s1s For This Useful Post:

    rawr2much (10-01-2009)

  7. #36
    User1's Avatar
    Join Date
    Jul 2009
    Gender
    female
    Location
    Above the influence
    Posts
    4,065
    Reputation
    61
    Thanks
    4,294,967,295
    My Mood
    Crappy
    Quote Originally Posted by iOwnage View Post
    You suck ass at coding VB.
    You only copy 'n' paste from source and tutorials, you haven't actually learnt VB idiot.
    You sucked soo much that you think I was using VIP when I was using teamtags and wouldn't give it to you, and it was made using VB.
    Was that directed at me? I copy source for tests but I usually change them a lot to fit my needs... Then again how can you avoide copying

    Code:
    Dim
    If
    When
    Public Sub
    Private Sub
    Private Include
    And so on? Those are all the basics lol
    Any donations would help


    Quote Originally Posted by Bombsaway707

    HOLY SHIT ITS USER1
    Quote Originally Posted by Blood

    HOLY SHIT ITS USER1
    Quote Originally Posted by Alby-kun


    HOLY SHIT ITS USER1
    Quote Originally Posted by Ali

    HOLY SHIT ITS USER1
    Quote Originally Posted by CodeDemon
    HOLY SHIT ITS USER1
    Quote Originally Posted by Jussofresh View Post
    HOLY SHIT ITS USER1!
    [21:13] CoderNever: HOLY SHIT ITS USER1!

  8. #37
    dadirty's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    68
    Reputation
    11
    Thanks
    44
    My Mood
    Amused
    Oh and to the OP I don't know why but you have it as GetKeyState and I think you were shooting for GetAsyncKeyState but I could be wrong.

  9. #38
    abou01's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    i dont know
    Posts
    387
    Reputation
    11
    Thanks
    24
    My Mood
    Bored
    Wow nice tut but i stop using this anyways thank

  10. #39
    abou01's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    i dont know
    Posts
    387
    Reputation
    11
    Thanks
    24
    My Mood
    Bored
    Quote Originally Posted by iOwnage View Post
    You suck ass at coding VB.
    You only copy 'n' paste from source and tutorials, you haven't actually learnt VB idiot.
    You sucked soo much that you think I was using VIP when I was using teamtags and wouldn't give it to you, and it was made using VB.
    Wdf are u talking about user1 is one of the best coder(For me idk anyone else) i've ever seen he help people alot ur the one who sucks nublet.


    Srry for double post.

  11. #40
    mrxchaching's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Location
    Mom's basement.
    Posts
    154
    Reputation
    10
    Thanks
    12
    nice tut..

  12. #41
    lalobon's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Lima - Peru
    Posts
    245
    Reputation
    10
    Thanks
    48
    My Mood
    In Love
    I didnt understand anything. but THNX xD!

  13. The Following 2 Users Say Thank You to lalobon For This Useful Post:

    imaco (09-23-2009),reggie (09-23-2009)

  14. #42
    mariofan901's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hanging in CA section/Helping.
    Posts
    768
    Reputation
    13
    Thanks
    290
    Quote Originally Posted by User1 View Post
    OK Guys. Enough VB questions and basic stuff. I have made this awesome guide for you folks to enjoy and read and I will be pointing here probably later on to help anyone that did not bother reading my post.

    Most Useful Site ever: MSDN: Microsoft Development, MSDN Subscriptions, Resources, and More

    THIS IS A VISUAL BASIC.NET GUIDE NOT A VB6 GUIDE ALTHOUGH SOME STUFF MIGHT RELATE.

    So here we start:

    Part 1 - Detecting Keypresses/Hotkeys

    Obviously for any hack hotkeys/D3D9 menu's will be the most convenient thing to use. Since D3D9 implantation is relatively hard compared to hotkeys, lets just start with hotkeys.

    The thing to use is GetKeyState() (Thank you xFaith!)

    In VB you declare it like this:
    Code:
    Private Declare Function GetKeyState Lib "user32" (ByVal vKey As Long) As Integer 'Declares GetKeyState
    And you use it like this:
    Code:
    GetKeyState(KeyCode)
    It will return a value that you can experiment with in my example program that will be attached after fixing it up a bit...

    Use it to detect keypresses so you can detect when a user has pressed a certain key, then it can maybe change a variable's value to start a code. This is probably the most simple way you can use hotkeys. Otherwise you can register hotkeys which is annoying and stuff...

    Complete Key Code Listing here: Key Code Constants for Visual Basic 6.0 Users (Save a copy on your hard drive incase you ever need it while programing on the go)

    Part 2 - Spam Bots

    This will teach you how to make spam bots. Very simple way of making spam bots!

    First of all you have to have intervals, I use Sleep() which is really useful... I also use a Timer to loop around...

    Declare for Sleep:
    Code:
    Private Declare Sub Sleep Lib "kernel32" (ByVal dwmilliseconds As Long) 'Declares for Sleep
    Use:
    Code:
    Sleep(Miliseconds to wait)
    Very simple stuff. This will help avoid Nexon's message flood protection.

    Next is SendKeys.SendWait, I use SendWait because It just works better for me for some reason, don't know why. Its simple to use:

    Code:
    SendKeys.SendWait("Text Here")
    Now you will also need a random thing inbetween words to make sure you don't get caught repeating stuff. Simple code:

    Code:
    SendKeys.SendWait("Text") 'Spam message
    SendKeys.SendWait("{Enter}") 'Enter button
    SendKeys.SendWait(Rnd()*100) 'Code to write a random number
    Sleep(3000) ' Wait 3 seconds
    Example code can be found in the attached example project.

    Part 3 - Text File Editing and All the other Fun Stuff

    Saving files can be useful for remembering CA directory from user input, useful for injectors to remember where the .dll to inject was located, write logs, and other ideas you can create!

    I am just going right down the code and hopefully it will be self explanitory.

    Note: VB does NOTHING for you. If your directory dosen't exsist, it will give an error, if the file your writing to is not yet created, it won't make that file for you, if your file is still being made (That step takes a while) it will return an exception. And other stuff. Post here for help on that...

    Create Directory:

    Code:
    My.Computer.FileSystem.CreateDirectory("C:\New Directory") 'Creates Directory
    Create File:

    Code:
    System.IO.File.Create("C:\New Directory\New File.txt") 'Creates the files...
    Write To File

    Code:
    My.Computer.FileSystem.WriteAllText(TextBox1.Text & TextBox4.Text, TextBox2.Text, False) 'writes text to the textfile, It will overwrite all existing text
    The false sets it to over-ride mode. If it is true, it will just amend.

    Read From File:

    Code:
    My.Computer.FileSystem.ReadAllText("C:\New Directory\New File.txt") 'Reads text from file
    Delete File:

    Code:
    My.Computer.FileSystem.DeleteFile(TextBox1.Text & TextBox4.Text) 'Deletes file...
    Thank you for reading, This is all so far. I will post back more stuff like Memory Hacking (Need to test a few thing first...) and D3D9 Hooking (I just started...) with VB.net

    I WILL BE UPLOADING THE EXAMPLE PROJECT UP A BIT LATER!

    Example Project is up, feel free to look, just give me creds

    Virus Scan: Virustotal. MD5: 54603994b4dae525fc04082b6e9d5aaa
    You know there a 'vb' section

  15. #43
    User1's Avatar
    Join Date
    Jul 2009
    Gender
    female
    Location
    Above the influence
    Posts
    4,065
    Reputation
    61
    Thanks
    4,294,967,295
    My Mood
    Crappy
    You know you don't have to quote everything. And this is to stop all the people who ask for help on VB in the CA section.
    Any donations would help


    Quote Originally Posted by Bombsaway707

    HOLY SHIT ITS USER1
    Quote Originally Posted by Blood

    HOLY SHIT ITS USER1
    Quote Originally Posted by Alby-kun


    HOLY SHIT ITS USER1
    Quote Originally Posted by Ali

    HOLY SHIT ITS USER1
    Quote Originally Posted by CodeDemon
    HOLY SHIT ITS USER1
    Quote Originally Posted by Jussofresh View Post
    HOLY SHIT ITS USER1!
    [21:13] CoderNever: HOLY SHIT ITS USER1!

  16. #44
    mariofan901's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hanging in CA section/Helping.
    Posts
    768
    Reputation
    13
    Thanks
    290
    Just tell them to look in VB section? lulz.

  17. #45
    DylanOwnsYou's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    In the air, rising higher and higher as I watch you crash.
    Posts
    379
    Reputation
    19
    Thanks
    82
    My Mood
    Cynical
    thanx user1 you are the VB king...

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [TUT]How to use Injectors:Gn3tool and PerX
    By krishna in forum CrossFire Hacks & Cheats
    Replies: 4
    Last Post: 09-06-2009, 02:18 PM
  2. could use some hacks and help with CA
    By Gunnerdevil in forum Combat Arms Hacks & Cheats
    Replies: 0
    Last Post: 12-26-2008, 02:28 PM
  3. How to use (RELEASE) Charms and Wall) on Vista. Walkthu.
    By LivetoDie in forum Combat Arms Hacks & Cheats
    Replies: 15
    Last Post: 09-01-2008, 09:38 PM
  4. Kipe with combat arms?
    By zander145 in forum Combat Arms Hacks & Cheats
    Replies: 10
    Last Post: 08-18-2008, 12:10 PM
  5. Help with combat arms
    By RJWlll93 in forum General Hacking
    Replies: 1
    Last Post: 07-23-2008, 01:20 PM