Help finding a script on Monk healing sphere placement menu

Shout-Out

User Tag List

Page 2 of 7 FirstFirst 123456 ... LastLast
Results 16 to 30 of 103
  1. #16
    iispyderii's Avatar Contributor
    Reputation
    247
    Join Date
    Jun 2012
    Posts
    376
    Thanks G/R
    15/29
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New offsets for 17930, wish I could help more but I don't know much about working with VS other than recompiling stuff with updated offsets. I've never made a DLL before.
    Code:
     // x86
    	kTerrainClick = 0x789D71,
    	kGetGuidByKeyword = 0x89D169,
    	kConsoleregister = 0x8888A,
    	kExecuteLua = 0x45039C,
    	kClntObjMgrObjectPtr = 0x79A534,
    	kGetUnitPosition = 0x7BC484,
    	kPointerCheck = 0x5108B8,
    Code:
     	// x64
    	kTerrainClick = 0x140598650,
    	kGetGuidByKeyword = 0x140756AE0,
    	kConsoleregister = 0x140077AC0,
    	kExecuteLua = 0x140084840,
    	kClntObjMgrObjectPtr = 0x1405B1F20,
    	kGetUnitPosition = 0x1405EB840,
    	kPointerCheck = 0x1401AEDA7,

    Help finding a script on Monk healing sphere placement
  2. #17
    xjesterx's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How would we go about recompliling the already made DLL files? I have the DLLs that he made they just have the old offsets. How could we go about just editing them with new offsets?

  3. #18
    Trapbot's Avatar Member
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xjesterx View Post
    I pretty much got to the same point as Trapbot except I got past all the binary issues then it told me all the things in the file were screwed up. Like using namespace hadesmem; has an underline under all of them in the loader.cpp, so does process, boost, etc etc. Pretty much at a loss too. Would love a good detailed guide or someone that can whip this up real quick.
    That's where I am.

  4. #19
    Trapbot's Avatar Member
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If someone can just tell me how to propeller include the boost and hadesmem libraries into Visual Studio, I can get this done.


    See, I've got this: https://i.imgur.com/ww5dwaf.png

    And this is what happens: https://i.imgur.com/UlQhjzZ.png (Notice the header files are including just fine.)
    Last edited by Trapbot; 02-20-2014 at 06:39 PM.

  5. #20
    xjesterx's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Trapbot View Post
    If someone can just tell me how to propeller include the boost and hadesmem libraries into Visual Studio, I can get this done.


    See, I've got this: https://i.imgur.com/ww5dwaf.png

    And this is what happens: https://i.imgur.com/UlQhjzZ.png (Notice the header files are including just fine.)
    Maybe try this to get it to work in VS. I am at work or I would do it.

    http://www.ownedcore.com/forums/worl...brary-c-6.html (HadesMem - A Windows Memory Hacking Library for C++)

  6. #21
    Trapbot's Avatar Member
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Live update guys, I got boost and Hadesmem parsed correctly.

    Now to add the missing Process, Process_List, and Module_List files.

    Update in a moment.

  7. #22
    iispyderii's Avatar Contributor
    Reputation
    247
    Join Date
    Jun 2012
    Posts
    376
    Thanks G/R
    15/29
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did you fix the includes by putting them into C/C++ properties instead of VC++ Properties? Or did you follow xjesters post?

    Originally Posted by Trapbot View Post
    Live update guys, I got boost and Hadesmem parsed correctly.

    Now to add the missing Process, Process_List, and Module_List files.

    Update in a moment.
    You can get those from his repo under google code.
    But for your convenience i've uploaded it here: hadesmem
    Last edited by iispyderii; 02-20-2014 at 07:35 PM.

  8. #23
    Trapbot's Avatar Member
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by iispyderii View Post
    You can get those from his repo under google code.
    But for your convenience i've uploaded it here: hadesmem

    I already have them.

    Looks like VS knows what boost is now, and all calls related to boost. But classes that are under the hadesmem namespace are still unknown to VS. I've got all the header files in the right place, I'm guessing it wants the .cpp files too? Isn't that under the src file? How would I go about including it to the project?

    https://i.imgur.com/CMRHRur.png


    edit: I think I just noticed something important, one sec...

    Ok so it would make this whole thing immensely easier if I knew which version of hadesmem this guy used to make this dll -.-.

    I've been using a newer version this whole time and all the directory names are changed and files are missing on a large scale.
    Last edited by Trapbot; 02-20-2014 at 07:49 PM.

  9. #24
    Trapbot's Avatar Member
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So, does anyone know which version of hadesmem he used?

  10. #25
    iispyderii's Avatar Contributor
    Reputation
    247
    Join Date
    Jun 2012
    Posts
    376
    Thanks G/R
    15/29
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What files are you missing? That's why I uploaded mine. If you download the zip from google it's missing some of them.

  11. #26
    Trapbot's Avatar Member
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edit: Erased everything I said. Your folder contains everything I need. Sec.
    Last edited by Trapbot; 02-20-2014 at 08:20 PM.

  12. #27
    Trapbot's Avatar Member
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Stopping for tonight. Here's the updated progress: https://www.dropbox.com/s/h9d8lupkto...omplete%29.rar

    This is a ****ing headache.

  13. #28
    fincofei's Avatar Private
    Reputation
    1
    Join Date
    Feb 2014
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am trying to learn how to update it but no idea how long that will take.

  14. #29
    Sparklx's Avatar Member
    Reputation
    1
    Join Date
    Feb 2014
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I really hope someone can get this updated, I mean I'd do it myself but I don't know what I'm doing :c

    Thanks to everyone who have given it a shot so far anyway

  15. #30
    Sparklx's Avatar Member
    Reputation
    1
    Join Date
    Feb 2014
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is anyone going to be able to update this? >.< It makes healing sphere on my monk soo much easier :P

Page 2 of 7 FirstFirst 123456 ... LastLast

Similar Threads

  1. [Question] Help finding a scripts on 5.4.8
    By bananabomb in forum PE Support forum
    Replies: 0
    Last Post: 10-11-2015, 06:40 PM
  2. Healing Sphere Script/Bot [Request/Question]
    By Haxmonkey00 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 03-17-2013, 05:02 PM
  3. Help Finding Multi-Level Pointers....
    By Mutated Carpet People in forum World of Warcraft General
    Replies: 0
    Last Post: 03-05-2007, 12:31 AM
  4. Need help finding some textures...
    By sooos in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 12-24-2006, 02:25 PM
  5. Replies: 4
    Last Post: 09-18-2006, 06:38 PM
All times are GMT -5. The time now is 05:17 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search