Results 1 to 12 of 12
  1. #1
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty

    Easy way of using addresses.

    Heres an easy way to use addresses instead of writing them for each button or something. Just makes your code look cooler and neater

    How to do it:
    Code:
        Enum Addresses As Integer
            Level = &H1DC02B8
            Prestige = &H1DC04C8
            Tokens = &H1DC2327
            CustomClasses = &H1DC232F
            WeaponsLevel = &H1DC02C0
            ProPerks = &H1DC1252
            Challenges = &H1DC1045
            Accolades = &H1DBF82C
            Emblems = &H1DC20EC
            Titles = &H1DC216C
            DoubleXP = &H1DC237D
            DoubleWeaponXP = &H1DC2385
            Score = &H1DC04D0
            Wins = &H1DC052C
            Losses = &H1DC0530
            Ties = &H1DC0534
            Kills = &H1DC04F8
            Deaths = &H1DBD480
            Assists = &H1DC0508
            Killstreak = &H1DC04FC
            Winstreak = &H1DC0538
            Headshots = &H1DC050C
            BarrackPlayTime = &H1DC0518
            LeaderboardPlayTime = &H1DC0524
        End Enum
    Usage:
    Code:
    WriteMemory(Addresses.Level, TextBox1.Text)
    Not very useful, just wanted to share.

  2. #2
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    ....Isn't everyone supposed to know about ENUMS as part of a programming language..?
    If so...why share this? :O

  3. #3
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Took you some time to finally understand how to use this, tried to tell you this before.


    But then again, this isn't an good way to do it
    It's "easy", but it's not that very handy when it comes to updating and such.

    And own class or so would be more then enough.
    Easy to update as well.

    Instead of having like:
    WriteMemory(Addresses.Level + (OR) - UpdateInteger, TextBox1.Text)

    While a class you could do like:
    ClassName Addresses = new ClassName(*Current XP Address);
    Addresses.Level


    (Then it would auto do the math stuff and so, and you would just have to enter the XP Address to update the trainer )

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  4. #4
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Quote Originally Posted by Jorndel View Post
    It's "easy", but it's not that very handy when it comes to updating and such.
    It's quite easy to update the addresses:

    Code:
        Enum Addresses As Integer
            Dim U As Integer = &H0 'Update offset.
            Level = &H1DC02B8 + U 
        End Enum
    ...and I knew this long ago, just sharing it now

    ---------- Post added at 09:45 AM ---------- Previous post was at 09:43 AM ----------

    Quote Originally Posted by Kenshin13 View Post
    ....Isn't everyone supposed to know about ENUMS as part of a programming language..?
    If so...why share this? :O
    Not everyone.

  5. #5
    Coper's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    BlackOps3.exe
    Posts
    449
    Reputation
    17
    Thanks
    3,648
    My Mood
    In Love
    geometrical are u working on VB net?

  6. #6
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Quote Originally Posted by Coper View Post
    geometrical are u working on VB net?
    I work with both VB.net and C# (but mostly VB.Net)

  7. #7
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic
    Quote Originally Posted by Geometrical View Post
    It's quite easy to update the addresses:

    Code:
        Enum Addresses As Integer
            Dim U As Integer = &H0 'Update offset.
            Level = &H1DC02B8 + U 
        End Enum
    ...and I knew this long ago, just sharing it now

    ---------- Post added at 09:45 AM ---------- Previous post was at 09:43 AM ----------



    Not everyone.
    ??
    Well, this is very basic knowledge. So everyone who do program should know.
    The rest is just wanna be :P (Or never seen the use of it )

    Quote Originally Posted by Geomatrical 0 View Post
    Rename the Custom Classes, classes 1-15. For version 1.9.453 on Steam.

    Custom Class 1: 1DBD7F8
    Custom Class 2: 1dbd85a
    Custom Class 3: 1dbd8bc
    Custom Class 4: 1dbd91e
    Custom Class 5: 1dbd980
    Custom Class 6: 1dbd9e2
    Custom Class 7: 1dbda44
    Custom Class 8: 1dbdaa6
    Custom Class 9: 1dbdb08
    Custom Class 10: 1dbdb6a
    Custom Class 11: 1dbdbcc
    Custom Class 12: 1dbdc2e
    Custom Class 13: 1dbdc90
    Custom Class 14: 1dbdcf2
    Custom Class 15: 1dbdd54
    Oki then :P
    Last edited by Jorndel; 12-13-2012 at 09:03 AM.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

  8. #8
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Quote Originally Posted by Jorndel View Post


    ??



    Oki then :P
    Some people won't know what to do with the offset, so rather give the addresses

  9. #9
    mwxplayer's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    hax
    Posts
    584
    Reputation
    10
    Thanks
    2,928
    My Mood
    Doh
    Quote Originally Posted by Geometrical View Post
    I work with both VB.net and C# (but mostly VB.Net)
    VB.NET is Quit useless I'd say.

  10. #10
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Quote Originally Posted by mwxplayer View Post
    VB.NET is Quit useless I'd say.
    78% of shit you see on this site is made in VB.Net

  11. #11
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Quote Originally Posted by Geometrical View Post
    78% of shit you see on this site is made in VB.Net
    ^All I gotta say xP

  12. #12
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Quote Originally Posted by Kenshin13 View Post
    ^All I gotta say xP
    Thats barely even relevant to the topic...

Similar Threads

  1. [Release] ZsZc SRO DB Bot v1 b2 How To - Downlaod & Easy way to use :)
    By NowaDaYs in forum Silkroad Online Hacks & Cheats
    Replies: 3
    Last Post: 10-09-2010, 02:41 PM
  2. Replies: 129
    Last Post: 09-27-2009, 02:21 PM
  3. Replies: 34
    Last Post: 03-16-2009, 09:16 AM
  4. trade easy way to play with hw ban and ip ban for working b bypass
    By mheeniac in forum WarRock - International Hacks
    Replies: 0
    Last Post: 05-17-2007, 07:08 AM
  5. any way to use wpe for damage editing?
    By zelda803 in forum WarRock - International Hacks
    Replies: 10
    Last Post: 02-09-2006, 02:33 AM