cleanCore menu

Shout-Out

User Tag List

Thread: cleanCore

Page 1 of 5 12345 LastLast
Results 1 to 15 of 65
  1. #1
    caytchen's Avatar Contributor
    Reputation
    138
    Join Date
    Apr 2007
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    cleanCore

    A C# WoW framework. Its not really 'clean', but its better than what it replaced.
    Features include your typical ObjectManager and object access, CTM, Traceline, Events, LUA script, some (untested) AuctionHouse stuff and a teleporter. Also included is a neat little test application to teleport around that hooks into CTM and will teleport instead of walking to your clicked location.
    The teleport internals come from bobbysings stuff, it also uses the Marshal-wrapper library WhiteMagic from Apoc.

    I didn't have much time to extensively test it; it does come with patterns, so you won't have to update offsets for as long as they keep working.

    Not included is an injector and some extra libraries to host the CLR and execute assemblies, but you can find all the necessary information by searching in this very forum. (hint: Apocs domain manager and CLR hosting)

    For everything else, see https://github.com/caytchen/cleanCore/
    If you wish to make changes, fork the repository on github and send pull requests as needed.

    cleanCore
  2. #2
    Viano's Avatar Active Member
    Reputation
    37
    Join Date
    May 2008
    Posts
    172
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for that, this is pretty much everything one needs for an injected bot (maybe except for navigation), +rep. I love the patterns for enumVisibleObjects and so on.
    Viano

  3. #3
    racoon1993's Avatar Private
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im to stupid to work with it...
    i even dont know how to make it works in my projects...
    cleancore.objectmanager.initialize();//error
    cleancore.offsetes.initialize();//error

    i cant understand how to make it works

  4. #4
    Scorpiona's Avatar Active Member
    Reputation
    17
    Join Date
    Mar 2009
    Posts
    42
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by racoon1993 View Post
    im to stupid to work with it...
    i even dont know how to make it works in my projects...
    i cant understand how to make it works
    Then why make a post about it?

    This forum has all the information you need to understand how to use this.

  5. #5
    outcast's Avatar Member
    Reputation
    4
    Join Date
    Oct 2006
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice work, although i cannot seem to find a single method that's commented xD + rep

  6. #6
    net7's Avatar Private
    Reputation
    1
    Join Date
    Jan 2010
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, just a quick question, but a little background info first. I've been working with out of process botting. I have a quite functional gather/combat/travel/etc bot which is pretty safe at the moment. I've not been in the WoW scene too long my self, but I do have few years experience in creating bots for various other games.

    Anyhow -If I were to inject the library using conventional methods, would that perhaps set off any warden flags, especially with all the detours/hooks going on.

    Thank you in advance!

  7. #7
    adaephon's Avatar Active Member
    Reputation
    76
    Join Date
    May 2009
    Posts
    167
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Had a quick look over and this looks awesome, a lot of good work. Forked it to have a play around with. Cheers

  8. #8
    Bananenbrot's Avatar Contributor
    Reputation
    153
    Join Date
    Nov 2009
    Posts
    384
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Only a minor issue: You should consider to use IntPtr entirely in your Pattern code instead of messing with uints/longs. IntPtr has an overloaded + operator since .net 4.0.

  9. #9
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1515
    Join Date
    May 2008
    Posts
    2,433
    Thanks G/R
    81/336
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Very very nice work! +Rep

  10. #10
    Megamike55's Avatar Active Member
    Reputation
    23
    Join Date
    Oct 2010
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great work!
    Keep it up +rep

  11. #11
    thebluefish's Avatar Sergeant
    Reputation
    15
    Join Date
    Aug 2010
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by net7 View Post
    Hey, just a quick question, but a little background info first. I've been working with out of process botting. I have a quite functional gather/combat/travel/etc bot which is pretty safe at the moment. I've not been in the WoW scene too long my self, but I do have few years experience in creating bots for various other games.

    Anyhow -If I were to inject the library using conventional methods, would that perhaps set off any warden flags, especially with all the detours/hooks going on.

    Thank you in advance!
    I've injected smaller programs into WoW before (mainly a small multi-hack and a bot that I was playing around with), and they never set off Warden, so I would imagine it's safe.

  12. #12
    net7's Avatar Private
    Reputation
    1
    Join Date
    Jan 2010
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thebluefish View Post
    I've injected smaller programs into WoW before (mainly a small multi-hack and a bot that I was playing around with), and they never set off Warden, so I would imagine it's safe.
    Thank you. I've been using the library for the past 2 days now, working on it. It's working very nice.

  13. #13
    ddebug's Avatar Contributor
    Reputation
    114
    Join Date
    Sep 2010
    Posts
    117
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    caytchen,

    1 word: amazing.

  14. #14
    galpha's Avatar Member
    Reputation
    5
    Join Date
    Nov 2007
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice library. I think it's a much cleaner way to handle Lua calls with the loadbuffer + luapcall then with the callback way. Also, one small critic is that all you patterns are in code. The downside is that if your patterns are not good anymore, you have to change them and it requires a recompilation of the project. I prefer using a XML file. Good job!

  15. #15
    Threk's Avatar Member
    Reputation
    1
    Join Date
    Oct 2010
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Problem solved
    Last edited by Threk; 01-25-2011 at 01:48 PM.

Page 1 of 5 12345 LastLast

Similar Threads

  1. CleanCore CastSpell Issue Resolved.... Sort of....
    By counted in forum WoW Memory Editing
    Replies: 2
    Last Post: 10-02-2012, 02:54 AM
All times are GMT -5. The time now is 05:42 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