• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Wildstar

    Discussion in 'General Discussion Forum' started by gearheadalex, Aug 10, 2013.

    Thread Status:
    Not open for further replies.
    1. PhaseRoll

      PhaseRoll New Member

      Joined:
      Oct 29, 2012
      Messages:
      48
      Likes Received:
      0
      Trophy Points:
      0
      Will there be a Combat Assist bot? Sorta like LazyRaider?
       
    2. Gorm

      Gorm Member

      Joined:
      Jun 11, 2012
      Messages:
      234
      Likes Received:
      2
      Trophy Points:
      18
      Are you taking any beta testers? I also have a few suggestions for the bot coming from Demonbuddy.

      - Make a button to recompile a plugin individually. Recompiling on file change is very buggy and people don't necessarily want to recompile every file change. Restarting the bot is too slow.
      - Open source the C# stuff like the dungeon explorer so it can be improved on.
       
    3. Job2k9

      Job2k9 New Member

      Joined:
      Feb 11, 2010
      Messages:
      841
      Likes Received:
      3
      Trophy Points:
      0
      I've been playing it since launch, at lv 15 so far. It's pretty fun! I can see this being VERY good for botting. You guys will get so many sales from casual botters... you can buy a monthly sub with ingame gold!
       
    4. nucleotides

      nucleotides Active Member

      Joined:
      Jun 2, 2012
      Messages:
      1,060
      Likes Received:
      11
      Trophy Points:
      38
      I was going to get the game but not get to serious about it. Then this was announced....balls deep.
       
    5. Job2k9

      Job2k9 New Member

      Joined:
      Feb 11, 2010
      Messages:
      841
      Likes Received:
      3
      Trophy Points:
      0
      Yeah I'm playing for a bit of fun, but also some research into the game for botting :)
       
    6. Apoc

      Apoc Moderator Staff Member Moderator

      Joined:
      Jan 16, 2010
      Messages:
      2,790
      Likes Received:
      94
      Trophy Points:
      48
      More updates!

      We have a brand new ASM assembler in our libraries (one that supports x64! Say goodbye to FASM!). It works great, however, it's slower than FASM (by 10x). We're working on an "AsmCache" type thing. Most users/developers won't need to worry about any of it, it's just to help us with not re-assembling things constantly.

      I now have the ability to start the bot up in x64, attach to the game (again, in x64), and there are no crashes!

      Ok I lied, there's tons of crashes. But that'll be solved soon enough! (x64 calling convention is... tricky...)

      Just recently fixed our pattern finder to properly support x64, as well as relative address tracing (thanks to mov reg, cs:faraway_address)

      I'm still looking through movement and casting stuff. I'm fairly certain I can now dump info about active abilities, etc. However, more work to be done on that front.

      I spent a lot of time working on terrain stuff, which was well worth the effort, so I'm a bit behind on "other duties". Hopefully, we'll be ready to start implementing logic within a week. (Very... very basic logic)

      Oh, did anybody want some Lua event support?

      Code:
      				GameManager.Lua.Events.RegisterEvent("PlayedTime", HandlePlayedTime);
      				GameEngine.BotPulsator.RegisterForPulse(GameManager.Lua.Events);
      Or maybe you wanted some of your own custom stats on the UI?

      Code:
      	        var mySimpleLabel = StatisticsPanel.CreateLabel();
      	        StatisticsPanel.UpdateLabelText(mySimpleLabel, "Yay! Text!");
      But I know what you're saying... "I don't want to call that method every time I update the text!"

      Well, fine, how about some dynamic bindings?


      Code:
              class MyStatsClass : NotificationObject
              {
                  private int _value;
      
      
                  public int Value
                  {
                      get { return _value; }
                      set
                      {
                          if (value == _value) return;
                          _value = value;
                          NotifyPropertyChanged(() => Value);
                      }
                  }
              }
      
      
      Code:
      	        var stats = new MyStatsClass();
      			// Keep "myLabel" around if you want to remove it from the UI later.
      	        var myLabel = StatisticsPanel.CreateBoundLabel(StatisticsPanel.CreateBinding(stats, "Value"));
      
      
      	        stats.Value = "So you wanted easier updating to the UI?!";
       
    7. Gentoo

      Gentoo Active Member

      Joined:
      Apr 29, 2011
      Messages:
      1,364
      Likes Received:
      24
      Trophy Points:
      38
      Which part gave you problems, i'll dumb it down for ya.
       
    8. Molestia

      Molestia Member

      Joined:
      Nov 24, 2012
      Messages:
      438
      Likes Received:
      8
      Trophy Points:
      18
      You missed the point. Let ME dumb it down.
      WoW king of subscriptions, bottable.
      Rift f2p 1-500.000 max ( I am assuming, could be less ), non bottable.

      Despite all its shortcomings, it had huge potential ( or better, the most potential amongst the other ). But bots are needed to keep the market supply running, the gold sellers keep farming gold, etc etc. The ecosystem is in "relative" balance. Lazy Joe Smith can visit the AH and get the mats he needs for a reasonable price. If everyone farmed their own mats to sell, supply would be down, prices would be up. Excessive botting is bad, pvp botting is bad because it affects directly humans. Also, bots give the impression of more people to the uneducated masses, which might convince them that the game is good :p

      Sorry for some parts not having proper syntax, but my brain is running on fumes atm because of Wildstar. Level 32 and going up.

      Bonergasm activated. I keep throwing money on the screen, fingers crossed!
       
    9. Mathew

      Mathew New Member

      Joined:
      Jun 18, 2012
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      This game literally just came out calm your tays and let them work on something if they feel the need to.
       
    10. Ratz241

      Ratz241 Member

      Joined:
      Jan 15, 2010
      Messages:
      550
      Likes Received:
      6
      Trophy Points:
      18
      This game oozes gold farming potential that I haven't seen for a few years, perhaps since the release of diablo 3.

      Extremely excited to say the least.
       
    11. pookthetook

      pookthetook Member Buddy Store Developer

      Joined:
      Jan 28, 2012
      Messages:
      214
      Likes Received:
      21
      Trophy Points:
      18
      Apoc, I love you.
       
    12. aqh

      aqh Member

      Joined:
      Dec 11, 2011
      Messages:
      711
      Likes Received:
      0
      Trophy Points:
      16
      Thank you for the updates Apoc, PLEASE keep them up!
       
    13. NeophyteHC

      NeophyteHC Member

      Joined:
      Aug 30, 2013
      Messages:
      119
      Likes Received:
      0
      Trophy Points:
      16
      I've been hoping for this, hoping for this sooooo much. Thank you <3
       
    14. treeflash

      treeflash New Member

      Joined:
      Mar 18, 2013
      Messages:
      87
      Likes Received:
      0
      Trophy Points:
      0
      I officially have a new hero!!!
       
    15. under7

      under7 New Member

      Joined:
      Jun 11, 2012
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      Tnx for the updates. Cant wait to see this get released!
       
    16. wowsaleh

      wowsaleh New Member

      Joined:
      Jan 26, 2012
      Messages:
      25
      Likes Received:
      0
      Trophy Points:
      0
      awesome .. am waiting to pay for it :)
       
    17. PhaseRoll

      PhaseRoll New Member

      Joined:
      Oct 29, 2012
      Messages:
      48
      Likes Received:
      0
      Trophy Points:
      0
      Just a question, is it possible for this bot to have an Assist mode?

      I just dont find it possible seeing that some classes are a mix of just needing to stand still to cast a skill and moving - for instance, Spellslingers
       
    18. DaSoul

      DaSoul Well-Known Member

      Joined:
      Jan 15, 2010
      Messages:
      2,827
      Likes Received:
      47
      Trophy Points:
      48
      If the bot knows that a certain spell has to be cast while standing and another can be used while running it is absolutely no problem. I'm pretty confident we will see/get pretty sweet stuff here.

      I don't want to create a new thread, but share this awesome addons:


      TapThat

      TapThat - Miscellaneous - WildStar Addons - Curse

      TapThat will complete Client Side Interactions (CSIs) automatically when you start them.
      A CSI is a Rapid Tap, Press And Hold, Metronome, Memory, or Keypad event.

      [​IMG]
      [​IMG]


      ProcsHUD

      ProcsHUD - Buffs and Debuffs - WildStar Addons - Curse

      ProcsHUD is a more visible interface for the spells associated to a proc. Seeing your spell available in your Limited Action Set is tough during a fight.
      With ProcsHUD, you have an icon popping right now to your character reminding you that you can use your proc.


      CheatSimon

      CheatSimon - Miscellaneous - WildStar Addons - Curse

      This addon will automatically detect when a memory game is active and automate the process. In the default mode (fullauto) all input is done for you, just hit start and sit back and watch! If you turn off fullauto the addon will instead list all the inputs required in the order they are required, just enter the buttons manually.

      [​IMG]


      InstantQuestAccept

      InstantQuestAccept - Quests and Leveling - WildStar Addons - Curse


      Auto accept and complete any quest, skipping all NPC dialog.
      If there is a quest reward to choose, pauses the auto turn in to let the player pick their reward.


      TrackMaster & Trackmaster Objectives

      TrackMaster - Boss Encounters - WildStar Addons - Curse
      http://www.curse.com/ws-addons/wildstar/220939-trackmaster-objectives

      TrackMaster: Objectives allows you to easily track Quest, Path Mission & Challenge objectives by drawing a line to the next nearest objective.

      [​IMG]
       
      Last edited: Jun 5, 2014
    19. Mothr

      Mothr New Member

      Joined:
      Nov 1, 2012
      Messages:
      45
      Likes Received:
      0
      Trophy Points:
      0
      I definately approve of this :cool:! Looking forward to botting in WS as this game is fecking awesome! Its vanilla all over again I am loving it!
       
    20. saltychip

      saltychip New Member

      Joined:
      Jan 11, 2013
      Messages:
      556
      Likes Received:
      1
      Trophy Points:
      0
      I use the trackmaster addon for nodes its awesome!
       
    Thread Status:
    Not open for further replies.

    Share This Page