Page 1 of 2 12 LastLast
Results 1 to 15 of 30
  1. #1
    Wigleg's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    404
    Reputation
    38
    Thanks
    666
    My Mood
    Innocent

    Making Dayz Programs and Warez for Noobies.

    NOTE: I AM USING VISUAL STUDIO 2012, I AM COMPILING A FORM APPLICATION IN VISUAL BASIC
    Hey guys.

    Today I'm going to show all of you lovely people how to make Dayz Warez and Program's, You might be wondering, What is this? What will I be learning to make, before I start let me state what I'm going to show you how to do here. I'm going to show you:


    • How to make a Simple Dayz Key Changer.


    Making a Dayz Keychanger:



    What your Finished product will look like
    What your going to need.

    • Visual Studio 2012
    • Dayz (Of Course)
    • Administrator Rights


    First. Open up a fresh VB.net project, The language we are going to work in is going to be Visual Basic. When launched up you should see this.



    Your going to need a Textbox, A Label and a button.

    Change the name of the button to "Change CD Key". Then position it where you want, then put the textbox where the user enters there key just above that button, then put the label just above the Textbox, this will display your current CD Key.

    Where going to start with the easy thing first, which is showing your current CD Key, this is easy as it does not require much code.
    Dayz CD Keys are in a Hexadecimal arrangement, You have to tell Visual Studio 2012 to recognize this. This can be done like this:

    Code:
     Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
            Dim regkey As Byte()
            regkey = Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Bohemia Interactive Studio\ArmA 2 OA", "Key", Nothing)
            Dim byteArray As String = BitConverter.ToString(DirectCast(regkey, Byte()))
            Label4.Text = byteArray
    
    
        End Sub
    This is the complete GetKey Code, this can be used for other purposes.
    Code:
    Dim regkey As Byte()
    We have to class Regkey as a byte for the conversion to work.
    Code:
    regkey = Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Bohemia Interactive Studio\ArmA 2 OA", "Key", Nothing)
    Second Version:
    Code:
    regkey = Microsoft.Win32.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWARE\Bohemia Interactive Studio\ArmA 2 OA", "Key", Nothing)
    Defining what RegKey is = too. For this we make RegKey the Registry key we want to get, which in this case is a Dayz key.
    Code:
    Dim byteArray As String = BitConverter.ToString(DirectCast(regkey, Byte()))
    We make Visual Studio Convert the bits into a string.
    Code:
    Label4.Text = byteArray
    Then make our Label display our CD Key!
    If everything was followed correctly you should be seeing this!



    Now, We have to code the Change Key Method! Which is quite tricky! So Pay Attention!

    This is what the working code looks like.

    Code:
       Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    
            Dim data As String = TextBox1.Text
            Dim regk As Microsoft.Win32.RegistryKey
            regk = Microsoft.Win32.Registry.CurrentUser.CreateSubKey("HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Bohemia Interactive Studio\ArmA 2 OA")
            regk.SetValue("key", Byte.Parse(data), RegistryValueKind.Binary)
    
        End Sub
    Now, I'll explain each part.

    Code:
    Dim data As String = TextBox1.Text
    Tell VS that the date entered from textbox1.text is a String.
    Code:
    Dim regk As Microsoft.Win32.RegistryKey
    Telling VS that RegK is a Microsoft.win32.registrykey is a Registry Key, this is used for conversion.
    Code:
    regk = Microsoft.Win32.Registry.CurrentUser.CreateSubKey("HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Bohemia Interactive Studio\ArmA 2 OA")
    Telling VS to get the registry location.
    Code:
    regk.SetValue("key", Byte.Parse(data), RegistryValueKind.Binary)
    Setting the Data from the textbox1.text and making it into a Binary kind.

    Converting to Binary Kind is very important, Arma2OA Reads its hexadecimal key in Binary Form, if you don't convert it will fail to read it!

    Now your key has been changed into the correct format!



    You are done! You have created your first KeyChanger for Dayz! I hope your Happy with your self, now go outside and find something else to do.

    I'll do a tutorial for c# users later.
    Last edited by Wigleg; 02-02-2013 at 08:00 AM.

  2. The Following 5 Users Say Thank You to Wigleg For This Useful Post:

    Akiva123454 (02-08-2013),AndrezGalak (02-08-2013),hugio88 (02-01-2013),RyanH100 (02-08-2013),zombie1004 (02-02-2013)

  3. #2
    hugio88's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    9
    My Mood
    Inspired
    LOVE YOU,

    I needed this for a long time!!!

  4. #3
    Remember's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    Me mums basement
    Posts
    1,426
    Reputation
    31
    Thanks
    290
    Good Job man<3
    "I treat the camera like a person--I gaze into it."

  5. #4
    hugio88's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    9
    My Mood
    Inspired
    where is the code to get the cd-key? like label2.text =

    in label4.text it is in hex




    but how do I/we get it in the cd-key shape thing..
    Last edited by hugio88; 02-01-2013 at 10:48 AM.

  6. #5
    Wigleg's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    404
    Reputation
    38
    Thanks
    666
    My Mood
    Innocent
    Quote Originally Posted by hugio88 View Post
    where is the code to get the cd-key? like label2.text =

    in label4.text it is in hex

    but how do I/we get it in the cd-key shape thing..
    Rename the label4 to label1 if you only have one label, I was just using my forth label, and for both the codes, replace what is currently been Generated there.

  7. #6
    hugio88's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    9
    My Mood
    Inspired
    Quote Originally Posted by Wigleg View Post
    Rename the label4 to label1 if you only have one label, I was just using my forth label, and for both the codes, replace what is currently been Generated there.
    I still don't get it

    check my older reply, i added pictures
    Last edited by hugio88; 02-01-2013 at 11:40 AM.

  8. #7
    Wigleg's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    404
    Reputation
    38
    Thanks
    666
    My Mood
    Innocent
    Quote Originally Posted by hugio88 View Post
    I still don't get it

    check my older reply, i added pictures
    Oh, I see what your doing, i have not figured it out yet either :C

  9. #8
    Enthurn's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    94
    Reputation
    10
    Thanks
    98
    My Mood
    Confused
    Quote Originally Posted by Wigleg View Post
    Oh, I see what your doing, i have not figured it out yet either :C
    Because your leeching.
    4 and half years of experience in PHP, C++, HTML, .NET FRAMEWORK. Need help? PM.

  10. #9
    Wigleg's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    404
    Reputation
    38
    Thanks
    666
    My Mood
    Innocent
    Quote Originally Posted by Enthurn View Post
    Because your leeching.
    No, I'm not. Fuck you. Nobody likes you on these forums, Please die a horrible death.

  11. The Following User Says Thank You to Wigleg For This Useful Post:

    kaybenjamin (02-02-2013)

  12. #10
    Blah121's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Justin Bieber's house
    Posts
    265
    Reputation
    10
    Thanks
    30
    My Mood
    Doh
    I'm no good with codes and stuff. ;[. Seems nice though.
    [img]https://www.danasof*****m/sig/165704.jpg[/img]

  13. #11
    NicoIsABeast's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    California
    Posts
    111
    Reputation
    10
    Thanks
    5
    My Mood
    Paranoid
    Quote Originally Posted by Blah121 View Post
    I'm no good with codes and stuff. ;[. Seems nice though.
    That's why you practice and learn. (: ~nice work man
    Do you love me?.

  14. #12
    Blah121's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Justin Bieber's house
    Posts
    265
    Reputation
    10
    Thanks
    30
    My Mood
    Doh
    Quote Originally Posted by NicoIsABeast View Post
    That's why you practice and learn. (: ~nice work man
    Heheheh I'll practice when I can get off my lazy butt.
    [img]https://www.danasof*****m/sig/165704.jpg[/img]

  15. #13
    hugio88's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    9
    My Mood
    Inspired
    can anybody help me =0?

  16. #14
    Enthurn's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    94
    Reputation
    10
    Thanks
    98
    My Mood
    Confused
    Quote Originally Posted by Wigleg View Post
    No, I'm not. Fuck you. Nobody likes you on these forums, Please die a horrible death.
    Do you know me or do I know you?
    4 and half years of experience in PHP, C++, HTML, .NET FRAMEWORK. Need help? PM.

  17. #15
    zombie1004's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    In your house :3
    Posts
    657
    Reputation
    12
    Thanks
    2,526
    My Mood
    In Love
    Just a silly question doesn't that should be in the programming section




    I draw dis




     

    #2 Brony Fan ^^

Page 1 of 2 12 LastLast

Similar Threads

  1. Any one know a good book to study that can help me make dayz hack and bypass
    By The amazing in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 12
    Last Post: 01-18-2013, 05:40 PM
  2. [Info] dayz keys and bypass for sale.keys=3 pounds bypass=5 pounds skype=daddiodoug1
    By daddiodoug1 in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 3
    Last Post: 10-30-2012, 05:23 AM
  3. [WTS] dayz keys and bypass for sale.keys=3 pounds bypass=5 pounds skype=daddiodoug1
    By daddiodoug1 in forum DayZ Selling / Trading / Buying
    Replies: 9
    Last Post: 10-29-2012, 10:07 PM
  4. Replies: 1
    Last Post: 10-24-2007, 02:19 PM
  5. Need Values And Tips For Making Trainer
    By jokuvaan11 in forum WarRock - International Hacks
    Replies: 6
    Last Post: 06-06-2007, 11:37 AM