Jump to content

Pasterke

Members
  • Posts

    165
  • Joined

  • Last visited

Posts posted by Pasterke

  1. If you like me, and you don't like the Curse Twitch client, I have made an replacement for it. You can get it from :

    https://github.com/polenplein/WoW-AddonInstaller

    It's totaly free and published under the GNU-GPL3 license. Source code also there if you want to compile yourself.

    To compile the source code you need QT >= 5.9 and QtCreator installed. (it's also complete free to download if you choose the community release.)

     

     

    fig1.jpg

    fig2.jpg

    fig3.jpg

  2. Hi guys,

    I have my banned account back and for the moment I don't have any computer with windows installed. I play on my iMac or under Linux. wRobot works only under windows.

    I made an account with a battle-chest and botted a while on that account. I had a new working restoration routine that worked very fine until lvl 90. After an HD crash I didn't replace the windows HD because I realy don't need it, I only used windows to play

    WoW. And playing WoW in a virtual guest don't work well.

    Maybe I will install windows again, but that's not an priority for the moment. I can play WoW manualy and thats enough. Further I wait for the next ban wave, don't want to loose my new account. If wrobot is'n affected, maybe I will play again with it. I only

    botted on that battle chest account and only did dungeons, no materials farming and afk botting. See if this one survive an ban wave.

    So, don't ask me to update fight routines for the moment. Just waiting for now. I only play the druid class and I had working routines for every spec.

    Hope to survive the ban wave (think it's coming soon) and maybe I will back again then.

    My main program language is C++ and I have alot of work as freelancer, that's why I dont need Windows.

     

  3. not the wrong section. Right clicking an target still trigger auto attack, even now. I just say that's a bad behavior for range classes. If you only have melee as starting skills, you need to set the range correct.

    say you have range skill at level 4 then you put :

    public float Range { get { return ObjectManager.Me.Level < 4 ? 5 : 35; } }

    That way for the first 3 levels the range will be 5, from level 4 on the range will be 35.

  4. Just put the range at the right distance. I recommend 35 instead of 40, and this for moving targets.

    You don't need to activate auto shot, it's auto triggerd when you start combat. Never right click an target to attack, that's the worst thing you can do. Just use cobra shot or concussive shot to enter combat. Right clicking an target is a bad behavior for a range class.

  5. 4 hours ago, Reaper666 said:

    bot will never top in dps unfortunately. I wish it could. There is a slight delay between each ability and the bot also goes in a rotation. It doesn't know when to skip a spell to get you the surge you want unfortunately.

    I wonder how i'm topping the dps with wrotation in raids and dungeons. You will not top dps if you use the fight class editor, but with a pure C# you will. Before you can top dps with wrotation, you need to know your class. If you top dps manualy, then you can have better dps with wrotation.

  6. Use WoWUnit instead of WoWPlayer, then it can be used on both, enemy players or mobs.

    Remove the unit.IsValid => gives problems

    What is CheckBS(player) ?

    Missing a return true statement in your if (unit1 != null ....

    Don't make new spells all the time, define it global.

    private Spell moonfire = new Spell("Moonfire");

    private Spell sunfire = new Spell("Sunfire");

    Then call your bool with :

    public bool DotListTest(Spell spell)   //DoListTest(moonfire);

    {

     

    }

    remove the line Spell spell = new Spell("Moonfire");

    That way you can use it for any check ex Sunfire

     

  7. 15 hours ago, kersh said:

    Hello im new here.

     

    I would like to know if you can buy subscription to the "regular" wrobot and use it for a private tbc server? Under products, there is one called wrobot and wrobot for private servers.

    The one for private servers is 20€ while the other has multiple sub options, cant i just use 1 month sub and still use it on a private server?

    Download the bot. Unzip it. Then you can update it. Choose your private server version and update.

    Change the name of the folder to macth your private server version.

    Then you can unpack the zip file again, and update it for another version of wow, etc...

    So basically you can have mutltiple versions of wrobot. Just rename the folders with the version you updated. wrobotLK, wrobotTBC, wrobotLegal ....

    Then just start the wrobot.exe in the folder you need for the game you play.

     

  8. 58 minutes ago, Brian said:
    
    string name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, isStealable, 
    shouldConsolidate, spellId = Lua.LuaDoString<string>("BuffStatus('target','Hunter's Mark')"); 

    You can try :

    string[] result = Lua.LuaDoString<string>("local name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, isStealable, shouldConsolidate, spellId=what you want to check",0);

    then result[0] should contains name, result[1] rank etc ...

  9. 1 hour ago, eeny said:

    Probably your fight class... Healing touch should be written no-where unless your resto.

    Realy ? And what with Predatory Swiftness procs ?

    If you want to heal yourself make sure in condtions Combat Only is set to false.

    Then add condition to the spell MeInCombat = false.

    Then he will use the Healing Touch spell to heal yourself when you are not in combat and you checked is spell in food settings.

×
×
  • Create New...