[OpenSource] MMOwned Bot! menu

User Tag List

Page 1 of 4 1234 LastLast
Results 1 to 15 of 53
  1. #1
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [OpenSource] MMOwned Bot!

    UPDATED SOURCE: 01/26/08 : MEGAUPLOAD - The leading online storage and file delivery service

    No changelog. Lastest source: nFarion bot Release v0.01e Build 62

    ----

    MEGAUPLOAD - The leading online storage and file delivery service


    NOTE: To use the baseY address from the Output, use DECIMAL to BINARY conversion, DECIMAL to HEX converter, Decimal to Hexadecimal convertor To use it, Type in the Decimal string from the outputbox, and the Hex address will be provided.


    Changelog v0.01e build 62:
    Added func.vb
    Updated main.vb
    Updated mem.vb
    Updated UI

    main.vb
    - Player Struct added
    - Cleaned up code
    - Added support for Health and Mana/Power
    - Added support for Level

    mem.vb
    - Removed some functions and moved some to func.vb

    func.vb
    - Added Func.vb to store most bot calculation functions
    - Experience and Percentage functions added

    User Interface
    - Added Health and Mana/Power bars
    - Added Level text
    - Added Experience bar

    ------

    Changelog v0.01c build 29:
    Updated main.vb
    Updated mem.vb

    main.vb
    - Experience added.

    mem.vb
    - Byte to Float function added.
    - Float to Radius function added.

    Updated 09/12/07 1:02 PST

    Code:
    Hello everyone. I would firstly like to tell you that you read the title correctly. This will be a post dedicated to open-source MMOwned Bot being developed by me in the .Net 2.0 Environment under Visual basic 8.0 (2005). In the coming weeks I will posting updates and such.
    
    But for this first post, I thought I would like to kick it off with a very small piece of code but a piece of code that will probably make this bot probable. It's the scan method for the player base.
    
    In the provided source, you will find a simple code that will tell you your XYZR from a dynamic address, and the base Y Dynamic address in Decimal form. The scan takes roughly 0.2-0.6 seconds to complete. Load up the pre-compiled .exe from the nFarion/Bin/Debug folder, OR compile the source. Then press the "Report" button. This will output the data.
    
    
    I will provide explanations later with later releases, but here it is.
    Last edited by suicidity; 01-26-2008 at 04:21 PM.


    [OpenSource] MMOwned Bot!
  2. #2
    T1B's Avatar Elite User
    Reputation
    369
    Join Date
    Apr 2006
    Posts
    656
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Virus scan plz

  3. #3
    tttommeke's Avatar Banned
    Reputation
    1
    Join Date
    Jul 2007
    Posts
    613
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's save, I got the source and their is no malware/Keylogger in it.

  4. #4
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That includes the source with it, but I will provide a virus scan..


    EDIT: VirusTotal - Free Online Virus and Malware Scan - Result
    Last edited by suicidity; 12-08-2007 at 07:31 AM.


  5. #5
    Gothian's Avatar Member
    Reputation
    249
    Join Date
    Jul 2006
    Posts
    496
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    open source bot huh, Ill have to take a looksee

    Interesting, an overly watered-down version of my WoWMemoryReader Test App it appears.

    You know, it would be easier if you did it somethin like this (how I do floats with WoW Memory Reader Test) But whatever's clever :P

    Code:
        Public Declare Function ReadProcessMemory Lib "kernel32" (ByVal hProcess As Integer, _
        ByVal lpBaseAddress As IntPtr, _
        ByRef lpBuffer As Single, _
        ByVal nSize As Integer, _
        ByRef lpNumberOfBytesWritten As Integer) _
        As Integer
    
        Public Function MemReadFloat(ByVal proc as Process, ByVal address As Integer, ByVal bytes As Integer) As String
            Dim floatvalue As Single
            ReadProcessMemory(proc.handle, address, floatvalue, bytes, 0)
            Return CStr(floatvalue)
        End Function
    
        Public Sub DOSTUFF()
           Log.Report(MemReadFloat(XADDRESSHERE, 8))
           Log.Report(MemReadFloat(YADDRESSHERE, 8))
           Log.Report(MemReadFloat(ZADDRESSHERE, 8))
        End Sub
    By the way, it appears if youve gotten the ReadProcessMemory to byte array method from my guild on Reading Strings with VB.NET, if such is true, Itd be nice to have come credit
    Last edited by Gothian; 12-08-2007 at 07:55 AM.

    Soon you can find my projects at: www.termight.info

  6. #6
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No, sorry gothian. Until now I knew nothing of your program or guide.

    This is actually my test function for scanning and most the stuff is just output stuff right now, all for debugging. As i'm currently using no cheatengine or anything...


  7. #7
    tttommeke's Avatar Banned
    Reputation
    1
    Join Date
    Jul 2007
    Posts
    613
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Gothian, this program doesn't read from the static addresses but search for the player his dynamic address. From this address you can get alot more and it is the basic of a bot.

  8. #8
    Gothian's Avatar Member
    Reputation
    249
    Join Date
    Jul 2006
    Posts
    496
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by suicidity View Post
    No, sorry gothian. Until now I knew nothing of your program or guide.

    This is actually my test function for scanning and most the stuff is just output stuff right now, all for debugging. As i'm currently using no cheatengine or anything...
    As I said IF you used my guide to aid you, Credits would be nice. Since not, then no need to :P.

    Originally Posted by tttommeke View Post
    Gothian, this program doesn't read from the static addresses but search for the player his dynamic address. From this address you can get alot more and it is the basic of a bot.
    Ahh didnt notice that bit :P

    Originally Posted by cripling View Post
    BAM gothian assraped, about this program i have no utter idea on how to use these at all lol. Even though it seems to be the fastest way up to contrib i think, by making wow hacks and all.
    Assraped eh? Did you not read my post? Post reported
    Last edited by Gothian; 12-08-2007 at 09:34 AM.

    Soon you can find my projects at: www.termight.info

  9. #9
    tttommeke's Avatar Banned
    Reputation
    1
    Join Date
    Jul 2007
    Posts
    613
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cripling View Post
    BAM gothian assraped, about this program i have no utter idea on how to use these at all lol. Even though it seems to be the fastest way up to contrib i think, by making wow hacks and all.
    Don't post if you have nothing to say...

  10. #10
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated Source, added changelog and download link to first post.

    I believe writing this is going good, just got a trial account to use tonight so things should be moving smoother, if you have any input or can help by posting Code, please do so.

    I am all ears.


  11. #11
    unknwon's Avatar Member
    Reputation
    13
    Join Date
    Nov 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what version of visual studio did you compile this with..?

  12. #12
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    "Teh Unknwon"? lol

    You can find out what VB.net to use by the solution Icon.


  13. #13
    klirklangklong's Avatar Banned
    Reputation
    16
    Join Date
    Nov 2007
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice Very, very nice! thank you!

  14. #14
    Wonderland's Avatar Member
    Reputation
    8
    Join Date
    Jun 2007
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Chances of being caught since we know warden isn't actually looking for this particular bot most likely

  15. #15
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Wonderland View Post
    Chances of being caught since we know warden isn't actually looking for this particular bot most likely

    waht? (filler.)


Page 1 of 4 1234 LastLast

Similar Threads

  1. [OpenSource] WoW Bot Project C++
    By ejt in forum WoW Memory Editing
    Replies: 27
    Last Post: 03-14-2013, 05:41 AM
  2. mmowned wiki under bots attack
    By VX2 in forum Suggestions
    Replies: 1
    Last Post: 06-21-2011, 07:51 AM
  3. MMowned ingame bot spam?
    By kgribbe in forum World of Warcraft General
    Replies: 4
    Last Post: 05-21-2008, 03:15 PM
  4. Step-By-Step Create Your Own AFK Bot! MMOwned Exclusive!
    By =sinister= in forum World of Warcraft Guides
    Replies: 6
    Last Post: 07-26-2006, 09:04 PM
All times are GMT -5. The time now is 11:03 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search