[ALPHA] BG Auto Flag Return/Pickup menu

User Tag List

Page 4 of 10 FirstFirst 12345678 ... LastLast
Results 46 to 60 of 144
  1. #46
    blackxsx12's Avatar Member
    Reputation
    1
    Join Date
    May 2011
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Korea client doesn't work, korea flag is 깃발

    [ALPHA] BG Auto Flag Return/Pickup
  2. #47
    ~Unknown~'s Avatar Contributor
    Reputation
    193
    Join Date
    Jan 2009
    Posts
    211
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zelos666 View Post
    For me this works perfectly.
    I'm using the German client, just to let you know. It's finding the flag anyway.
    The problem with the Russian client might be those special characters.
    Currently, as the SVN code suggests, it searches for the word "Flag" in the name. If that is in the German name in any form that is why it works for you.

    Originally Posted by blackxsx12 View Post
    Korea client doesn't work, korea flag is 깃발
    My intention is to move toward a better solution via an injected CLR Host dll into wow and call onFrame pulses to make a better more accurate bot, but for the time being I might just add a textbox to specify the name of the flag.

  3. #48
    Zelos666's Avatar Sergeant
    Reputation
    19
    Join Date
    Dec 2010
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ~Unknown~ View Post
    Currently, as the SVN code suggests, it searches for the word "Flag" in the name. If that is in the German name in any form that is why it works for you.
    Oh, I didn't quite catch that.
    Yes, it's "Flagge", so I guess that's why it works.

  4. #49
    Mammalsauce's Avatar Master Sergeant
    Reputation
    10
    Join Date
    May 2011
    Posts
    97
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi. Quick question. I see you have the source available via SVN checkout. I'm familiar with svn and similar from some mucking about with mplayer, wine, and a couple other projects several years ago. Done a little c++ and java, perl that kinda thing. Not madskilled code monkey by any means, but i know my way around gcc.

    May be a stupid question, and probably the answer is no, since most projects compilable for both 32 bit & 64 bit cpu do so with more general code, rather than the specific memory editing of other processes in mind. However, just in case I am thinking it more complex than it is:

    Compiling your project for 64bit would not allow it to function on WoW's 64bit client, correct? I presume the wow client would use different offsets and such that an entirely different offset list would be required, rather than just compiling into a 64bit binary?

    Just kinda brainstorming, i like the pretty noticable performance gain I get using the 64bit client, particularly where ultra shadows & water are concerned, but I think the barrier of coding for the two clients is the problem, not something as simple as compilation. Just hopeful I'm wrong.

    Thanks a lot.

  5. #50
    Mammalsauce's Avatar Master Sergeant
    Reputation
    10
    Join Date
    May 2011
    Posts
    97
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh one other thing; for localization (and possibly making it pick up other things like dalaran higher learning books maybe? )
    would changing the string used in comparisons like:
    Code:
    if (temp.Name.Contains("Flag"))
    be sufficient to make it work with clients, such as the korean question above?

    e.g. changing "Flag" to "깃발" for a quick and dirty solution while you create a more elegant one?

    I suppose I'll test it out myself, and see if I can't make it look for something like the fool's gold node, since I can spawn that more or less at will to see.

  6. #51
    Zelos666's Avatar Sergeant
    Reputation
    19
    Join Date
    Dec 2010
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just a quick report from using this addon for some time now:
    It works absolutely great and I don't know why it doesn't have more publicity yet. I'm the first one to pick up the flag every single time.

    A suggestion:
    Just add a "Flag name" field so the user can change the name to whatever the object's name is in his language. Should work as you said that's the only thing preventing it from working for some people.
    Also - that way it should be able to right-click ANY game object, doesn't it?
    For example those event eggs that are currently in Razor Hill etc... would be really nice to have an automated clicker/detector for that.

    Keep up the good work.

  7. #52
    Rupson's Avatar Private
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zelos666 View Post
    A suggestion:
    Just add a "Flag name" field so the user can change the name to whatever the object's name is in his language. Should work as you said that's the only thing preventing it from working for some people.
    Also - that way it should be able to right-click ANY game object, doesn't it?
    For example those event eggs that are currently in Razor Hill etc... would be really nice to have an automated clicker/detector for that.

    Keep up the good work.
    Yess!! Need a way to replace the "Flag" name by the one of our country please !

  8. #53
    ~Unknown~'s Avatar Contributor
    Reputation
    193
    Join Date
    Jan 2009
    Posts
    211
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mammalsauce View Post

    Compiling your project for 64bit would not allow it to function on WoW's 64bit client, correct? I presume the wow client would use different offsets and such that an entirely different offset list would be required, rather than just compiling into a 64bit binary?
    As far as I know 64bit client would require some tweaking with offsets and such for running my program on a different client. I haven't researched much into doing so. If you'd rather use it on that client you can look at the code on the svn and try to tweak it for that client.

    Originally Posted by Mammalsauce View Post
    Oh one other thing; for localization (and possibly making it pick up other things like dalaran higher learning books maybe? )
    would changing the string used in comparisons like:
    Code:
    if (temp.Name.Contains("Flag"))
    be sufficient to make it work with clients, such as the korean question above?

    e.g. changing "Flag" to "깃발" for a quick and dirty solution while you create a more elegant one?
    .
    Yes, this is true. If the object you wish to click is a game object that value can be replaced with anything that has a name you know. I intended on putting a textbox for that, but have just been busy with schoolwork

    Originally Posted by Zelos666 View Post
    Just a quick report from using this addon for some time now:
    It works absolutely great and I don't know why it doesn't have more publicity yet. I'm the first one to pick up the flag every single time.
    that way it should be able to right-click ANY game object, doesn't it?
    For example those event eggs that are currently in Razor Hill etc... would be really nice to have an automated clicker/detector for that.

    Keep up the good work.
    I appreciate the response. It's people like you that get tools like this more publicity. Posting if it works well/bad/slow whatever. The feedback encourages more people to read it. It is also less popular because it is a very narrow tool. Now a days people want full fledged bots or something of this nature that solves the probably more efficiently. This program works fairly well, but not as good if I injected.

    Originally Posted by Rupson View Post
    Yess!! Need a way to replace the "Flag" name by the one of our country please !

    Incoming in the next release.



    *EDIT Updated bot to revision 27. Should have the requested features minus 64bit support.
    Last edited by ~Unknown~; 04-12-2012 at 11:05 PM.

  9. #54
    ogdutch's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wont attach =(
    redownloaded r25 for now

  10. #55
    ~Unknown~'s Avatar Contributor
    Reputation
    193
    Join Date
    Jan 2009
    Posts
    211
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ogdutch View Post
    wont attach =(
    redownloaded r25 for now
    Could you try putting that log on pastebin.com or something. We have to wait for moderators to approve attachments. I might have made some oversight since I didn't test it all that much


    *EDIT already on it. Forgot to have app running in legacy mode for Blackmagic since it was compiled in .net 2.0
    Last edited by ~Unknown~; 04-14-2012 at 01:08 PM.

  11. #56
    ogdutch's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [8:17:26 AM] Failed Attach to: 4512
    [8:17:26 AM] Attach First!
    [8:17:42 AM] System.IO.FileLoadException: Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information.
    at Magic.BlackMagic..ctor()
    at FlagReturn.Common.ObjectManager.Initialize(Process wowProc) in C:\Users\Rich\Documents\Visual Studio 2010\Projects\SVNFlagReturn\bg-auto-flag-return\Common\ObjectManager.cs:line 137
    [8:17:42 AM] Failed Attach to: 4512

    thats all it says =)

  12. #57
    ~Unknown~'s Avatar Contributor
    Reputation
    193
    Join Date
    Jan 2009
    Posts
    211
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ogdutch View Post
    [8:17:26 AM] Failed Attach to: 4512
    [8:17:26 AM] Attach First!
    [8:17:42 AM] System.IO.FileLoadException: Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information.
    at Magic.BlackMagic..ctor()
    at FlagReturn.Common.ObjectManager.Initialize(Process wowProc) in C:\Users\Rich\Documents\Visual Studio 2010\Projects\SVNFlagReturn\bg-auto-flag-return\Common\ObjectManager.cs:line 137
    [8:17:42 AM] Failed Attach to: 4512

    thats all it says =)
    Yep, Blackmagic was built for .net 2.0 for the one I was using. Check the newest release. That one should work. I hope anyway

  13. #58
    ogdutch's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    title says 27 so i didnt look down =)
    thx

    new one works great
    Last edited by ogdutch; 04-15-2012 at 09:09 AM.

  14. #59
    ogdutch's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    broke again =( stupid patch!

  15. #60
    ogdutch's Avatar Member
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sadface...

Page 4 of 10 FirstFirst 12345678 ... LastLast

Similar Threads

  1. Replies: 162
    Last Post: 12-30-2016, 01:51 AM
  2. [Selling] ★ Fortnite Alpha Keys ★ Auto Delivery ★ Easy Instant Delivery ★ BEST PRICE ★
    By Dynafix in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 03-24-2015, 07:52 PM
  3. WSG/TP Flag Returner
    By 240287 in forum WoW Bots Questions & Requests
    Replies: 5
    Last Post: 08-15-2011, 10:51 AM
  4. Auto Flag Return?
    By QtDemon in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 01-09-2011, 10:16 PM
  5. WSG Auto Flag Return/Click - Tool or Possible Plugin
    By doritarded in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 08-05-2010, 07:16 PM
All times are GMT -5. The time now is 01:52 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