Screenshot Thread menu

User Tag List

Page 4 of 116 FirstFirst 1234567854104 ... LastLast
Results 46 to 60 of 1734
  1. #46
    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)
    VB / C, The menu bar is actually very blatant and gives it away.


    Screenshot Thread
  2. #47
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bumping thread of awesome ^

    New screens! Started playing with WPF recently still has quite some bugs and annoying features though...






    Unfortunatly, no pikachu's were found.


    @ Unknowned: awesome pathing project, looking forward for updates/releases

    Seeing as model-manipulation has been mentioned in this thread before, could anyone enlighten me on the CGUnit_C::UpdateModel() method? I had some bogus attempts at calling it.
    Relevant ASM:

    Code:
    wow.Asm.AddLine("mov ecx, 0x"+o.ToString("X")); //o being the playerbase
    wow.Asm.AddLine("push 1");
    wow.Asm.AddLine("push 1");
    wow.Asm.AddLine("call 0x67B2E0");
    wow.Asm.AddLine("retn");
    On a sidenote, there's a method in Bobbysing's WOWX's player structure called CGLocalPlayer_C::RepopMe(), are these related/identical?

    EDIT: Got UpdateModel() working , above ASM is fixed.


    Can you change the display ID of items in the same way as you can with models? (I did not see any display ID in the ITEM_FIELD descriptor though.)

    On-the-fly model-editing has potential!
    Last edited by Robske; 01-12-2009 at 05:25 PM.
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  3. #48
    luciferc's Avatar Contributor
    Reputation
    90
    Join Date
    Jul 2008
    Posts
    373
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So what your doing is change the path for your players model then update the Model?

  4. #49
    lanman92's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2007
    Posts
    1,033
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol, Cypher has done all of this and I'm sure that kynox and others have, too. He shared his code on GD. Kinda obvious that it has potential LOL. Now, something good would be editing the map in-process so that you don't have to edit it outside of WoW. Not sure if you can do that though...

  5. #50
    arigity's Avatar Banned
    Reputation
    49
    Join Date
    Dec 2007
    Posts
    548
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lanman92 View Post
    Lol, Cypher has done all of this and I'm sure that kynox and others have, too. He shared his code on GD. Kinda obvious that it has potential LOL. Now, something good would be editing the map in-process so that you don't have to edit it outside of WoW. Not sure if you can do that though...
    yes thats possible.

  6. #51
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by luciferc View Post
    So what your doing is change the path for your players model then update the Model?
    Morph/Scale Hack - Game Deception - Forums

    CypherMorph!

    CGUnit_C::UpdateModel(int DontCare1 = 1, int DontCare2 = 1)
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  7. #52
    hypnodok's Avatar Member
    Reputation
    19
    Join Date
    Nov 2007
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    RepopMe probably means acceping a ressurection-dialogue (like /script RepopMe().
    Whats in the Lua tab?

  8. #53
    RawrSnarl's Avatar Member
    Reputation
    14
    Join Date
    May 2008
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Rob, what does your blacklist function do?

  9. #54
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by RawrSnarl View Post
    Rob, what does your blacklist function do?
    throw new Exception("Not Yet Implemented");

    Work in progress :'(
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  10. #55
    RawrSnarl's Avatar Member
    Reputation
    14
    Join Date
    May 2008
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I decided to completely recode my application. My original code was messy, and the GUI looked like absolute crap. So far, I've only recoded one of my main modules, but I have almost all of my memory functions re-written.

    Here's a look at what I have so far:



    The top image is the main menu that allows you to select which module you want to load, and contains settings that impact all of the modules as a whole (such as the GUI theme/skin).

    The bottom image is my status watcher, which is a small window that always stays on top of other windows to provide some quick information while WoW is minimized (due to Glider).

  11. #56
    luciferc's Avatar Contributor
    Reputation
    90
    Join Date
    Jul 2008
    Posts
    373
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cool So it loads a .dll or a .cs and then runs it correct?

  12. #57
    RawrSnarl's Avatar Member
    Reputation
    14
    Join Date
    May 2008
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Not yet, but that's my plan eventually.

  13. #58
    Cephalopod's Avatar Member
    Reputation
    5
    Join Date
    Sep 2008
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Basic multiboxing program which implements very basic memory reading at this stage (I have code to do more, but I want to learn to write my own so I'm taking a step back).



    Scripts tab runs very basic scripts. It's very basic, this program has been made primarly to teach myself c#. I use the scripts for a few things, basic healbot, managing my aspects on my 5-boxing hunter team.

    Quick example of viper script:
    Code:
    define caspecthawk[5] false
    
    [start]
    if ($mana < 40 & caspecthawk^ == true) { send aspectviper | set caspecthawk^ false}
    if ($mana > 80 & caspecthawk^ == false) { send aspecthawk | set caspecthawk^ true}
    [end]
    It's pretty slow, but it's quick enough for what I need and it allows me to create quick setups on the fly without needing to go back into c#.

    Initially it was going to be a public release wow-rule abiding boxing tool, but the multiboxing guys wouldn't help beta test so now it's private.

    Hope to implement a skinning bot, fishing bot, grinding bot & maybe a basic instance grinding bot but these plans are way off, still need to smash through my two asm books and my reverse engineering books.

  14. #59
    RawrSnarl's Avatar Member
    Reputation
    14
    Join Date
    May 2008
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice. How are you handling voice bindings? That sounds like a pain in the ass.

  15. #60
    Cephalopod's Avatar Member
    Reputation
    5
    Join Date
    Sep 2008
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's the biggest pain in the arse I've ever encountered.

    They use the Microsoft Speech Object Library. They work well I guess, but if I map say "Mount" it'll detect Mount 99.9% of the time, but its not strict enough. It'd pick up "Mouse" and link it to "Mount" but if I mapped both "Mount" and "Mouse" it'd differentiate between the two with 99.9% accuracy.

    The code is simple, very simple. One of the easiest things I implemented but I don't know how to make it stricter so for now, they're on the back burner till I get the basic scripting done and a bit more efficient.

    You can only use voice for basic things like opening the map and such, as it is slower. I can press multiple keys in the same amount of time that I can say one word so I've got the following mapped:
    Mount -> Obviously mounts.
    Map Open -> Opens map.
    Map Close -> Closes map.

    Then I've got a few dynamic binds which are based on the toons name:
    <name> eat -> eats.
    <name> drink -> drinks.
    <name> summon food -> summons food.
    <name> summon drink -> summons drink.

    ETA: Private isn't strictly private. Once the code is respectable, I'd consider releasing it to people who appear to be trustworthy (that is source code.) Right now there is some source code in there I was given that I can't release though, so once I rewrite the memory writing from my own knowledge I can.
    Last edited by Cephalopod; 01-19-2009 at 01:27 PM.

Similar Threads

  1. Screenshot Thread for Diablo 3
    By UnknOwned in forum Diablo 3 Memory Editing
    Replies: 136
    Last Post: 09-03-2018, 01:06 PM
  2. Aion Screenshot Thread
    By JD in forum Aion Exploits|Hacks
    Replies: 0
    Last Post: 11-17-2009, 11:19 AM
  3. Screenshot Thread for AoC
    By Cryt in forum Age of Conan Exploits|Hacks
    Replies: 0
    Last Post: 05-23-2008, 07:32 AM
  4. Why my server is better than yours (a screenshots thread)
    By Liania in forum World of Warcraft General
    Replies: 15
    Last Post: 02-14-2007, 11:00 PM
All times are GMT -5. The time now is 06:19 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