-
Posts
169 -
Joined
-
Last visited
Reputation Activity
-
saleh reacted to Droidz in official server Classic
Hello.
No, WRobot works and will work only on private servers. Current supported versions can be found here https://wrobot.eu/supported-wow-versions/
-
saleh reacted to Droidz in Put an item in the list not to sell
List<String> ItemNames = new List<string> { "First Item", "second Item", //etc }; foreach (string ItemName in ItemNames) { if(!wManager.wManagerSetting.CurrentSetting.DoNotSellList.Contains(ItemName)) wManager.wManagerSetting.CurrentSetting.DoNotSellList.Add(ItemName); }
-
saleh reacted to Droidz in Put an item in the list not to sell
Hello,
wManager.wManagerSetting.CurrentSetting.DoNotSellList.Add("item name"); But to avoid duplicate:
var itemName = "item name"; if (!wManager.wManagerSetting.CurrentSetting.DoNotSellList.Contains(itemName)) wManager.wManagerSetting.CurrentSetting.DoNotSellList.Add(itemName);
-
saleh reacted to Droidz in Train skill riding
Hello, use this c# code:
if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new robotManager.Helpful.Vector3(1, 2, 3), 12345)) // replace 1, 2, 3 by position, and 12345 by npc entry id { wManager.Wow.Helpers.Usefuls.SelectGossipOption(wManager.Wow.Enums.GossipOptionsType.trainer); wManager.Wow.Helpers.Trainer.TrainingSpell(); }
-
-
saleh reacted to Ordush in WROBOT - Code in Easy Quest Editor
Just search for whatever you need, then you can see the variable, you define that as true/false (If it's bool)
example: wManager.wManagerSetting.FlightMasterTaxiUse = false
-
saleh reacted to Ordush in WROBOT - Code in Easy Quest Editor
https://marsbars.gitlab.io/unoffical-wrobot-api-docs/api/index.html
It's in here. ?
Edit:
https://marsbars.gitlab.io/unoffical-wrobot-api-docs/api/wManager.wManagerSetting.html
Here to be more precise
-
saleh reacted to TheSmokie in WROBOT - Code in Easy Quest Editor
In profile , chick on save settings from profile.
-
saleh reacted to Ordush in How Using Wand ( Shoot ) in fightclass?
Looked at the extended edit i just made.
If "shoot" only works as hunter, then the above code that MikeMail posted won't work either, Because that is EXACTLY what it does. ?
-
saleh reacted to TheSmokie in How Using Wand ( Shoot ) in fightclass?
Tbh i havent really ever messed with editor, if you can message me the profile, i can put it into a dll file for you and add the shooting but i am clueless when it comes to FC editor
-
saleh reacted to TheSmokie in How Using Wand ( Shoot ) in fightclass?
public Spell wand = new Spell("Shoot"); if (wand.KnownSpell && wand.IsSpellUsable && ObjectManager.Me.ManaPercentage <= 5 && ObjectManager.Me.GetEquipedItemBySlot(wManager.Wow.Enums.InventorySlot.INVSLOT_RANGED) != 0) { wand.Launch(); Usefuls.WaitIsCasting(); return; } This is what i use in my fightclass. if you want anymore help join my discord : https://discord.gg/ppm8Ufc
im not always on here and i love helping people learn.
-
saleh reacted to lau99116 in wait for a few minutes to resurrect
This is a map that can fly to collect minerals and herbs. After being killed by the opposing faction, the soul doctor is revived. I need to wait 30 seconds to revive after being killed, not run to the corpse.
-
saleh reacted to Droidz in wait for a few minutes to resurrect
hello, try plugin like:
using System.Threading; using wManager.Wow.Bot.States; public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is Resurrect || state is ResurrectBG) { Thread.Sleep(1000 * 30); } }; } public void Dispose() { } public void Settings() { } }
Wait Resurrect.cs
-
saleh reacted to TheSmokie in wait for a few minutes to resurrect
Thread.Sleep(1000 * 30); // 1000 = 1 sec / * means X aka times and 30 means the number you're times the 1000 by
-
saleh reacted to TheSmokie in Auto Accept Trade
If wrobot has a Trade state , or you know how to make you're own state on C# you can write a plugin to auto use that script
-
saleh reacted to TheSmokie in Auto Accept Trade
there is no way to auto accept trade but there is a macro to take the trade
/script AcceptTrade();
-
saleh reacted to Droidz in Auction Get Error
Hello,
It is connection problem with auth server, if this don't close WRobot you can ignore it.
-
saleh reacted to Serrec in Mage food/drink
conjure stuff in the fighting profile and set the food/drink in the settings/in butler if you are using it
-
-
-
saleh reacted to TheSmokie in Party Leader Eat And Drink Order
i know but if you ever want to use them you can,
-
saleh reacted to thxgod1 in warrior FightClass
I would recommend @Enraged Warrior free fightclasses, it really does the job decently. (In case it still works, didnt bot on vanilla for quite sometime)
-
saleh reacted to Dreamful in Can't get Hunter to use Ranged Attack
Hey NiteKat,
On the Left site in Fightclass Editor you see General Settings change the point 'Range' to 25 or 30. That should work.
Have fun,
Dreamful
-
saleh reacted to NiteKat in Can't get Hunter to use Ranged Attack
Thank you, this sort of solved my problem. I had tried it before, but only to 8. Now if I set it to 28, the Hunter will stop at a decent distance... but if won't shot. Just stands there waiting for the mob. If I try using Auto Shoot as a spell, it *keeps* casting it, interrupting the attack, so a shot never gets off. I'm assuming I need to check if it's being used already, but I'm not sure what Auto Shoot is considered as (I'm guessing it isn't a buff?).
-
saleh reacted to Droidz in reloger Crash
Do you have try to install last version of Framework https://www.microsoft.com/en-us/download/details.aspx?id=48130 ?