Jump to content

Pasterke

Members
  • Posts

    165
  • Joined

  • Last visited

Everything posted by Pasterke

  1. Why you should edit it ? Read what I posted, to load the routine, go to your fightclass folder, and in the search windows set show all files and you will see the .dll file. This is not an xml file, so you can't open it in fightclass editor.
  2. Version 1.0.7

    2545 downloads

    Probably the best feral routine you will get. Use the talents as shown in screenshot. If you want to use it for raiding, you can use Lunar Inspiration also, but remember, for all non-raid purpose, you should take the talents as shown. It was a painfull way to optimize the routine the way I wanted to getting max dps out of it. Use it and give feedback if you think you have better options. This is a .dll file, to load this routine, unpack it in your FightClass folder and open it like you load a .xml file. If you don't see the routine, make sure you enable show all files in the search window. Enjoy :) Tested in French Client and it's working as supposed.
  3. When I launch the bot, I got the message that my toon is already in use. Exit wow, retry, same error.
  4. You don't need an profile for that. Set bot Automaton, fly over the area, add the mobs you want to kill. Go to your start area, press start. Disable kill mobs so he only target the mobs you specified. Also disable use flying mount in the product settings and in the global preferences.
  5. Ok, saw it, before last update it worked. Will recompile it.
  6. If you use my combatlooter plugin, don't use it when you want to skin. It's not supported. The main goal was to loot mobs, not skin.
  7. You realy use that ? That must be a joke. What happens if you get out of moonkin form ? just die ? Because your check to cast Moonkin form is wrong. Realy, healing touch at 85 % ? with alot of mobs the only thing he does is casting healing touch, until mana is gone and then die. Solar beam on cooldown without a check ? Starfall with no astral power ? etc ....
  8. That's the point, the ID's are not changed in game, just wrobot return the wrong id's.
  9. [D] 09:43:25 - [Spell] Healing Touch (Id found: 5185, Name found: Healing Touch, NameInGame found: Healing Touch, Know = True, IsSpellUsable = True) [D] 09:43:25 - [Spell] Rejuvenation (Id found: 224526, Name found: Rejuvenation, NameInGame found: Rejuvenation, Know = False, IsSpellUsable = True) ???????????????????????????????????????????????????[D] 09:43:25 - [Spell] Regrowth (Id found: 224527, Name found: Regrowth, NameInGame found: Regrowth, Know = False, IsSpellUsable = True) ????????????????????????????????????????????????????? ID's are wrong should be : 774 and 8936 [D] 09:43:25 - [Spell] Efflorescence (Id found: 145205, Name found: Efflorescence, NameInGame found: Efflorescence, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Wild Growth (Id found: 48438, Name found: Wild Growth, NameInGame found: Wild Growth, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Swiftmend (Id found: 18562, Name found: Swiftmend, NameInGame found: Swiftmend, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Flourish (Id found: 197721, Name found: Flourish, NameInGame found: Flourish, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Ironbark (Id found: 102342, Name found: Ironbark, NameInGame found: Ironbark, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Lifebloom (Id found: 33763, Name found: Lifebloom, NameInGame found: Lifebloom, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Barkskin (Id found: 22812, Name found: Barkskin, NameInGame found: Barkskin, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Innervate (Id found: 29166, Name found: Innervate, NameInGame found: Innervate, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Rebirth (Id found: 20484, Name found: Rebirth, NameInGame found: Rebirth, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Moonfire (Id found: 8921, Name found: Moonfire, NameInGame found: Moonfire, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Sunfire (Id found: 93402, Name found: Sunfire, NameInGame found: Sunfire, Know = True, IsSpellUsable = True)[D] 09:43:25 - [Spell] Solar Wrath (Id found: 5176, Name found: Solar Wrath, NameInGame found: Solar Wrath, Know = True, IsSpellUsable = True) Realy annoying
  10. If you use the flight class creator, you can add the condition IsSpellOverlayed. Set Healing Touch and true.
  11. private Spell healingTouch = new Spell("Healing Touch"); If(healingTouch.IsSpellOverlayed) {....} //because healing touch spell on your castbar light up when you have Predatory Swiftness proc.
  12. You don't have paid routines here. You make your own with the fightclass creator. Easy to do if you know how to play your class. It's already 1 year I use this bot, and for now no bans anymore. I was also an HB user, but became sick of the banwaves and to start over again and again.
  13. You can't create an healing routine with the FightClass Creator. You need to code it in C#.
  14. Most of my hair is already grey, and iI think the rest is also become grey while coding an druid restoration fightclass. I always got null references errors when I started the fightclass. The evil one was Efflorescence after debugging alot. You have to check if you have a pet with the name Efflorescence and not for a wowobject, because the mushroom you plant with Efflorescence is seen by wrobot as an pet :) Another bug : wrobot don't see if you are in combat or not. Fight.InFight or ObjectManager.Me.Incombat always return false.
  15. private Spell catForm = new Spell("Cat Form"); If (!ObjectManager.Me.HaveBuff("Cat Form") && Fight.InFight) { catForm.launch(); }
  16. Just unpack it in your FightClass folder. If you choose it, make sure you enable all files, so you will see the dll. Just select it and it should run.
  17. Version 1.0.2

    1672 downloads

    Rapid fightclass for Druid Guardian. Will auto use Healing Tonic, Healthstone, Oralius' Whispering Crystal. Use talents as in picture. New version : LegionGuadrian_30082016.zip
  18. Sometimes it's difficult to check debuffs/buffs before casting a spell. Example : Druid Guardian, if you have Faerie Swarm talent, you need to cast Faerie Fire; because Faerie Swarm is unknown spell. If you need to check if debuff faerie swarm exists, then you have a problem, for those who don't have Faerie Swarm. To check the debuff I use following C# code : public bool debuffExixts(string debuff) { /*[F] 11:09:45 - check Aura: Growl: ID=6795, Stack=0, TimeLeft=1082 ms, Owner=00000000079D3B1E0834FC0000000000*/ List<Aura> t = ObjectManager.Target.GetAllBuff(); foreach (var aura in t) { string[] checkAura = aura.ToString().Split(':'); //Logging.WriteFight("check Aura: " + checkAura[0].Trim()); if (ObjectManager.Me.Guid == ObjectManager.Target.BuffCastedBy(checkAura[0].Trim()) && checkAura[0].Contains(debuff)) return true; } return false; } Faerie Fire and Faerie Swarm have 1 common text, Faerie. Then you can use debuffExists("Faerie") to check.
  19. Version 1.0.0

    730 downloads

    When I was farming Saberstalkers in Fang'rila I missed a lot of loots, because the lootable units disappeared before I was out of combat while fighting multiple elites. To resolve this problem I wrote this plugin. No configuration needed. Just unpack the file in your Plugin folder and in Wrobot just enable the plugin. Fixed null reference : CombatLooter2.zip Visual Studio Source Code for the plugin: CombatLooter_VS2015.zip Disabled combatlooter when in group (gives problem to greed/need) : CombatLooter3.zip new version 19-08-2016 : CombatLooter16082016.zip
  20. This is only possible with c# code. Set your current position and add 5 yards, then cast freezing trap at that postion. Easy stuff.
  21. Version 1.0.0

    380 downloads

    This is plugin to assist you to heal players not in your party. Try it out and let me know if it's working.
×
×
  • Create New...