Developers assistance
You have problem for create Quest profile? Custom Profile? Plugin? Product? C# or VB.net FightClass? This forum is for you.
537 topics in this forum
-
One month ago i create a Rogue, a fabulous one , and try to use the different rogue fight profile from the site Several problem occurs and i was not very satisfied by the dps. Something i noticed, i was not able to refresh Revealing Strike correctly, it was fine on dummy but not in raid. So i decided to create my on c# profile and use the [_Pasterke_] dk to begin (thxs to him). And again i was not able to refresh Revealing Strike correctly, it was fine on dummy but not in raid again. I try many solutions, thxs to this site there is plenty of example here. !CurrentTarget.HaveBuff(84617) revealingStrike.TargetBuffTimeLeft==0 and Lua.LuaDoString("print…
- 1 reply
- 2k views
-
So, I know you can do this string name = Lua.LuaDoString<string>("name = UnitAura('player', 'BUFF_NAME'); return name; "); string rank = Lua.LuaDoString<string>("name,rank = UnitAura('player', 'BUFF_NAME'); return rank; "); string icon = Lua.LuaDoString<string>("name,rank,icon = UnitAura('player', 'BUFF_NAME'); return icon; "); //etc.. for all Is there a better way to return all the different properties of UnitAura into c# variables?
- 3 replies
- 2.6k views
-
Hi, i'm sure i have the answer but i cant find it lol How can i in C# test the Cooldown Time Left on Vanish or killing spree for example. Nothing usable in private Spell killingSpree; or ObjectManager.Me but i'm sure i already done that before :(
- 7 replies
- 2.9k views
-
Hello Je voulais savoir si le focus est maintenant pris en charge ? Car je n'y ai vu aucune mention dans le ChangeLog. Ty :)
- 2 replies
- 1.5k views
-
Currently when i use this to drink it will usually drink twice or more (i don't know how cuz i can't do that manually) and then doesn't wait till mana is full if (ObjectManager.Me.ManaPercentage > 40 || ObjectManager.Me.InCombat || ObjectManager.Me.HaveBuff("Drink")) { Logging.WriteDebug("drinking false"); return false; } Logging.WriteDebug("drinking now"); ItemsManager.UseItem(RestoDruidSettings.CurrentSetting.Drinking); while (ObjectManager.Me.HaveBuff("Drink") && ObjectManager.Me.ManaPercentage < 100) { Logging.WriteDebu…
-
- 26 replies
- 5.6k views
-
-
Hello Bon je commence a mettre les mains la dedans, j'ai encore besoin de comprendre comment marchent certaines choses, j'aurai 2 questions si c'est possible d'avoir un petit retour pour m'aider a démarrer : Question 1 Donc en c# et dans un plugin est il possible de changer de produit (et les options du produit en question) ? bon pour le produit je pense avoir réussi pour le produit via : Products.LoadProducts("Quester"); le produit est bien changé dans l'onglet "In game" et le log indique "Auction loaded" (par contre dans Main et Product Settings il reste sur le produit initial, il me manque peut être une étape? Bon pour l'UI c'est pas …
-
- 1 reply
- 1.7k views
-
-
What are the possible parameters i can use? i'm having huge problems at quester skipping stuff because the first endwhile line ends the very first while in profile that it shouldn't do
-
- 3 replies
- 1.4k views
-
-
Bonjour Je reviens ici pour demander 2 conseils car je planche un peu : 1/ Comment verifierait tu combien de monstres et combien de joueurs ciblent un allié ? Il existe bien IsTargetingMe mais si on s'interresse a un allié ? 2/ Comment verifierait tu combien de charges d'un sort on Dispose ? Comme par exemple "Force de la nature - 102693" ou le nombre de charges de "Thé de Mana" ou de charges d "Elusive brew" un monk dispose ? Merci beaucoup d'avance :)
-
- 4 replies
- 1.5k views
-
-
WIth these you will get all skills trained from class trainer. Someone bored can use these to get class trainers working without official fix /script SelectGossipOption(1) /run LoadAddOn"Blizzard_TrainerUI" f=ClassTrainerTrainButton f.e = 0 if f:GetScript"OnUpdate" then f:SetScript("OnUpdate", nil)else f:SetScript("OnUpdate", function(f,e) f.e=f.e+e if f.e>.01 then f.e=0 f:Click() end end)end
-
- 0 replies
- 1.8k views
-
-
When adding a NPC to blacklist, it requires a restart of wRobot to take effect. Is there anyway to change this? I am assume it's impossible from my end (requires update to wRobot), because there are many bugged mobs around warmane so I plan on making an addon add a target to blacklist if it evades x times, or if a timer gets to large when trying to interact with a unit, but without npc blacklist refreshing without a wRobot restart, I wouldn't bother because it would be useless. Also, I think npc blacklisting is a bit bugged, I added a npc that is below the ground to the blacklist, restart wrobot/wow, and the bot still tried to attack it. (I confirmed the mob was in the …
-
- 0 replies
- 1.6k views
-
-
-
Basicly currently the problem is that it follows tank in combat and all if going too far doing fine but if tank goes out of line of sight (behind tree, hill or something) it'll just stand there like mushroom in shit. Any ideas how to improve this? For some reason with MovementManager.MoveTo(tank) it requires straight line to the target without anything on its way #region Tank too far bool tankfar() { WoWPlayer tank = getTanks().First(); while (tank.GetDistance > 15) { MovementManager.MoveTo(tank); } MovementManager.StopMove(); return false; …
- 4 replies
- 1.9k views
-
How do i tell the bot to do *something* if there is Elite nearby? currently: #region Wrath bool Wrath() { if (!_wrath.KnownSpell) return false; if (!_wrath.IsSpellUsable) return false; if (ObjectManager.Me.ManaPercentage > 50) { WoWPlayer tank = getTanks().First(); WoWUnit target = tank.TargetObject; if (ObjectManager.GetWoWUnitHostile().Count(u => u.Position.DistanceTo(tank.Position) <= 8 && UnitCanAttack.CanAttack(u.GetBaseAddress, tank.GetBaseAddress)) >= 3 || ObjectManager.Target.IsElite) //to improve with…
- 2 replies
- 1.5k views
-
i've been trying to improve druid heal profile but my skills aren't enough at this point. Could someone help me with this? it is in C#
- 7 replies
- 2.6k views
-
Bonjour Petite curiosité : Je construit une liste incluant tout les hostiles, qu'ils soient Monstres, Player de faction adverse, player de la meme faction en duel ou arene, ainsi que les totems de soin et champignons magiques adverses hostiles. Pour la partie player de la meme faction, j'utilise ceci : public static List<WoWUnit> GetAdversaires() { List<WoWUnit> Adversaires = new List<WoWUnit>(); List<WoWUnit> AdvPve = ObjectManager.GetWoWUnitHostile(); foreach (var pve in AdvPve) { if (pve.IsValid && pve.IsAlive && pve.Reaction <= Reaction.Unfriendly) …
-
- 2 replies
- 1.2k views
-
-
Bonjour Pourrais tu m'eclaircir ces deux points : 1/ L'extension .IsSpellUsable : Tient elle compte du GCD (c'est a dire est elle false pendant qu on est en GCD) ? Qu'est ce que prend en compte exactement IsSpellUsable. 2/ Le monk MistWeaver (Healer donc) a besoin de canaliser un sort et d'en lancer en meme temps pendant qu'il canalise afin d'effectuer ses soins (Particularité du monk) Je ne sais pas comment on ecrirait cela sous wrobot. Car avec wrobot, quand on lance un sort permettant la canalisation, on ne peut tout en maintenant la canalisation, en lancer un second. exemple : Brume apaisante doit etre canalisee afin de pouvoir lancer i…
-
- 1 reply
- 1.2k views
-
-
Bonjour 1/ Te serait-il possible de m'ecrire en C# un moyen de verifier si on est a portee du rayon d'action du "Champignon Magique (145205)" ? Le fonctionnement me semble identique aux totems mais j'en suis pas sur. 2/ Existe t il un moyen de verifier si on est en Arene, en Bg, en donjon, en ville, en zone sanctuaire ou dehors ? (Question pas importante, zappe la si c'est prenant ^^) 3/ Il y a un bug en pet battle qui fait que si on a selectionne 3 pets identiques et coché "Automatically choose the best pet", le bot s'arrete simplement de fonctionner et reste indefiniment bloqué (mais pas figé, on peut encore faire manuellement la selectio…
- 7 replies
- 2.4k views
-
is there ever going to be a 64 bit version with full win 10 support
-
- 1 reply
- 1.2k views
-
-
List<Object> party = new List<Object>(); var p = new WoWPlayer(0); var obj = ObjectManager.Me; if (obj.IsValid && obj.Type == WoWObjectType.Player) { p = new WoWPlayer(obj.GetBaseAddress); party.Add(p); } return party; If i try with List<WoWUnit> or List<WoWplayer> always the same result : wManager.Wow.ObjectManager.WoWPlayer
- 13 replies
- 6.9k views
-
Bonjour cher dieu du botting Je visitais tranquillement le contenu que tu a rajouté ces derniers mois. Il y a des fonctions qui semblent tres interressantes mais je n'ai pas vu de topo dessus. Par exemple : SpeedMoving : ? Rotation : Se dit de qqun qui effectue une rotation ou l'angle par rapport a nous de la position de la cible IsAuctioneer : ? CanInterruptCasting : Est ce que c'est true quand une cible fait une technique canalisée qui n'est pas un sort, donc pas interruptible avec arcane torrent mais kickable ? Ou est ce que ca concerne uniquement les sort impossible a interrompre des boss ? CombatReach : ? Fleeing : Une cible pv…
-
- 2 replies
- 1.1k views
-
-
Hello Is there have any document or API list or some simple demo can show it the some main function ? for the plugin part only support c#?
-
- 1 reply
- 2.2k views
-
-
Hello Anyone can code the Mobile Guild Banking and Battle Standard Dropp ? this much helpful
-
- 1 reply
- 1.1k views
-
-
Hello Anyone know how to random the path? like HB they have function can random the X Y Z. So for the one profile can get some random path. This is very important for someone have more then 10 account use the same profile. something in C# Random rn = new Random(); int rnb= rn.Next(1, 10) switch (rnb) { case 1: <Vector3 X="607.8696" Y="1595.938" Z="377.7314" /> break; case 2: <Vector3 X="607.8686" Y="1595.939" Z="377.7318" /> break; ..... } or just random the x,y,z by percentage
-
- 1 reply
- 1.4k views
-
-
Hi Droidz, It seems ObjectManager.Me.InCombat works a little different from => Lua.LuaDoString<bool>("return UnitAffectingCombat(\"player\")"); could you implement this alternative version of InCombat into the api please ? Best regards, surfer
-
- 2 replies
- 1.8k views
-
-
hi there, like the title says i would like to instantiate a Windows.Form object in a Custom Profile. i tried it in an backgroundworker thread but it still freezes the wrobot and crashes. any idea how i could do this ? best regards
-
- 1 reply
- 1.7k views
-