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
-
First i'll just link to what i'm working on. It's a fightclass for Feral Druids (leveling atm, thought it'd be fun to try this out while leveling) https://gist.github.com/Lillecarl/22b3c8170c1070873ca4dfcc607b98ac Both Spell and SpellInfo classes contain very little information, i'd love to get the power (mana) requirements from spells by their names in some easy fashion. Can this be done in some way, i skimmed through wManager with dnSpy, but i didn't find anything of use there. Best Regards Carl
-
- 8 replies
- 3.9k views
- 1 follower
-
-
Hi! When creating a spell like new Spell("Regrowth", false) it'll get the first rank of the spell. So i thought id list all spellid's and iterate through tem and get the highest one by checking KnownSpell, but it seems to always be returning true. Is this intended behavior? This is kinda related to the Mana issue i faced in another thread. (I've implemented reading DBC files extracted from the client, so i can get all spellinfo available, but now i must know the highest rank (spellid) known to the player) When this starts to look like something somewhat useful i'm thinking that i'll opensource this and make a fightclass (hopefully together with other people…
- 7 replies
- 4k views
- 1 follower
-
as in title, is that possible? if yes, then how?
- 10 replies
- 2.7k views
-
Hey guys, I am searching for a Profession Level Condition. Like if Tailoring skill is =>100, then the quest is complete. I searched for the *ObjectManager* but couldn't find what I am looking for. (I already thought about KnowsSpell, but that's too vague, as I need the exact level of skill.) Could anybody help me out with this please? Thank you. :)
- 2 replies
- 1.9k views
- 1 follower
-
Hello, is it possible to register "COMBAT_LOG_EVENT_UNFILTERED" with its parameter like guid, spellname etc? i already tried it with EventsLuaWithArgs.OnEventsLuaWithArgs but it doesn't contain the event nor its parameters and EventsLua.AttachEventLua isn't what im looking for.
- 17 replies
- 8.2k views
-
Have some problem to complete a quest that I first need an item then use it on an object. I want to end part one with the "Is complete condition". What code should I use? Would really appreciate some assistance here.
- 4 replies
- 2.7k views
-
Hello everyone, I'm making a full questing profil for 1-6 Cold Ridge Valley (Gnome/Dwarf starting area) for Vanilla/TBC. I have an issue with the quest "A Refugee's Quandary" (http://db.vanillagaming.org/?quest=3361) : - The quest require to gather 3 differents item (unique object). - To do this, i have splitted the quest in 4 EasyQuest, 1 for PickUp/TurnIn, and 1 for each item to gather - All work fine for the 2 first items (Box and Chest) but the bot dont want to gather the 3th (Bucket) - The bot go on the good hotspot (X="-6479.465" Y="507.0748" Z="385.8915") but just dont gather the bucket (the bucket is here, in front of him) I really dont g…
-
- 0 replies
- 1.1k views
-
-
What exactly does ObjectManager.GetUnitAttackPlayer(List<WoWUnit>); method does? Simple one is obvious: rets list of attacking our player mobs, but whats about that list passing into? Im seeking a way to handle sort of "tanking" profile, and want to get mobs which are not aggroed by me, but someone from party to get them off from other party members. I thought this method is a key, casted Party to WoWUnit list, and getting empty list after call after return in any cases, even when party member got aggro.
-
- 1 reply
- 1.3k views
-
-
Hello! So for some reason starting two weeks ago, WRobot won't let me run it...at all. I'm running WoW on 32 Bit, Updated Wrobot & WoW and all of that. I also updated Windows 10 and restarted the computer (turned it off and on, etc) - and it STILL just freezes, says "not responding" then the system gives me the message I've attached. I'm like 5 steps below a script kitty - but these may be important things: - this is on a partitioned Windows 10 on a 2008 Macbook Pro. (holy shit, right?) - It's a slow and not a high qualiy rendering computer, but its gets the job done as a secondary computer for my WRobot to run as I'm playing another a…
-
- 4 replies
- 1.8k views
-
-
Hi, I'm making a FC in c# with the exemple there Everythink is ok except for settings when i click on settings, the box show settings but without default settings an when i try to save settings it only save the last data. [Serializable] public class ShamanSettings : Settings { [Setting] [DefaultValue(true)] [Category("GHOST WOLF SETTINGS")] [DisplayName("Ghost Wolf")] [Description("Use Ghost Wolf")] public bool UGW { get; set; } [Setting] [DefaultValue(4)] [Category("GHOST WOLF SETTINGS")] [DisplayName("Use after X secondes")] [Description("Use Ghost Wolf after X secondes out of combat")] public int TGW …
- 3 replies
- 1.6k views
-
Heya, this is related to vanilla. I'm working on my buff routine which includes creating a Mana Agate and its equivalents. The issue is that when my bags are full it tries creating it over and over again. Is there a way to check whether inventory is full? Thanks Seminko EDIT: also, is there a way to check if another action is in progress? What happens is that when I cast Evocation, the bot will cast a buff and screw up the Evocation.
- 4 replies
- 2.1k views
-
Heya, i have put together a quick custome profile from bits and pieces around the forum. It doesn't give any error but does not buff me at all. Any ideas? using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel; using System.Diagnostics; using System.Threading; using robotManager.Helpful; using robotManager.Products; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class CustomProfile : Custom_Profile.ICustomProfile { private bool isRunning; private static WoWLocalPlayer Me = ObjectManager.Me; public void Pulse() { while (is…
- 8 replies
- 2.5k views
-
How to make a plugin/profile code to ignore all player attacks ? I have tried to do it in a Fightclass, if target is player then wManager.wManagerSetting.CurrentSetting.AddBlackList(ObjectManager.Me.TargetObject.Guid, 999999, true); but this doesn't help at all, nothing changes.
-
- 3 replies
- 1.3k views
-
-
Pls, create this plugin finaly "Clear session Blacklist" automatically, It is very important and will solve a lot of problems !! Thx.
- 13 replies
- 5.1k views
-
Hi all, i gues this should be fast to answer... i try to improve my fight profiles with c#. Yet i cant get this simple code to work. Goal is to check for Buff ID 974 on Party Member 1. !wManager.Wow.ObjectManager.ObjectManager.Party1.HaveBuff(974) It works fine with "Party1" changed to "Me". !wManager.Wow.ObjectManager.ObjectManager.Me.HaveBuff(974) As i learned from the Forum, i should be able to switch "Me" with "party"/"target" ect....but if im changing to party1 it just gives a huge error when starting the fightclass. Any Help? :) P.S.: is it possible to get a setting entry for player na…
-
- 1 reply
- 1.4k views
-
-
I've fought with this, and tried seemingly everything, but I can't solve this problem. When I'm fighting a mob, or a group of mobs, and I am not getting hit (nothing is targeting me), the BOT will just turn off Auto Attack after a few seconds, and stop casting detrimental spells. My character is still in combat (the combat flag is on my player frame). It was suggested that it might be caused by an addon, so I disabled all addons in game, but the issue is still there. Is there something that I might be doing in my Fight Class that could cause the bot to turn off auto attack? Is there a setting somewhere that I might have missed that could cause the bot…
-
- 5 replies
- 1.9k views
-
-
Hi, I made my own grinder profile for farming linen cloth, but the bot collects everything from the loot. Is it possible to specify specific items to pick up? So that only Linen Cloth is picked up? Thanks
-
- 1 reply
- 1.2k views
-
-
Hello guys, i want to get startet in creating my own Questing profile. I just started a simple profile. (Quest pickup -> pulse -> turnin) My problem: I get the quest with the onclick-event on the npc. When I use "Action type: PulseAllInOne" then the bot is in the PickUp State forever because it does not recognize the accepted quest. In the "Quests order editor", when i select Action-type "IfHasQuest" what should i write in the Action parameter textbox? Lua Code, C# Code or just the Questname from the selectionbox when i select Action type "Pulse" ?
-
- 3 replies
- 1.7k views
-
-
Bonjour Bon il n'y a pas de secret on sait mesurer la quantité de Pv d'un personnage (Health et HealthPercent). Mais qu'en est-il du bouclier (prêtre et barbare avec dur au mal- Id 190456). Peut on le mesurer afin par exemple de relancer le sort des qu'on arrive sous une certaine quantité ? Un peu comme on fait avec les Pv pour les soigner : On relance un soin des qu'on arrive a une certaine quantité de Pv) Merci encore Droidz
-
- 1 reply
- 1.1k views
-
-
Hey there. Can anyone please tell me how do I make bot to fly in custom profile? GotoTask only makes bot hover above the ground rather than normal flying to a certain location. Thanks.
-
- 1 reply
- 1.3k views
-
-
Hello, Is there a way to add/remove a character target in the automaton "npc to kill" list using a C# line ? If yes, does the bot have to be stopped or can i add the target then restart it ?
-
- 5 replies
- 3.2k views
-
-
Hello again, did you miss me ? Anyway. I recently began to mess up with the party chat command plugin from droidz, to study the way the bot can work with user input from the game itself. It turned out the bot can do a crazy tons of things with this plugins. So i began making a quest profile that use the custom commands to make the bot do simple things like grind a mob or gather some stuff around him. With this system, the player can play his character while being assissted by the bot. example: "go take out thoses bunnies around my farm" - NPC - just target a bunny, use a macro, and the bot will grind the bunnies as long has the user tell him to…
-
- 3 replies
- 2.1k views
-
-
Hi I am coding a profile where i have got the bot to go in to the dungeon but where can i find an iscomplete condition for killing a mob that is not a boss in the dungeon?
- 2 replies
- 1.6k views
-
1. how i can put filename instead of code? 2. its possible to put multiple .cs in that node? to attach multiple .cs 3. path relative to "Quester" folder or script ?
- 4 replies
- 3.5k views
-
i made some usefull cs helpers classes for travel/world quests/scenario and im wonder, how i can use it in profiles without adding this class to profiles? its possible thru plugin ? if yes, how i can check in quester profile that plugin installed and enabled/running ?
-
- 7 replies
- 3.4k views
-