-
Posts
12587 -
Joined
-
Last visited
Content Type
Forums
Articles
Bug Tracker
Downloads
Store
Everything posted by Droidz
-
[LUA Fightclass] UnitDebuff + BuffStackTarget
Droidz replied to Jupken13's topic in Fight Classes assistance
Hello, try to replace if count and count =< 6 then by if count and count <= 6 then- 2 replies
-
- lua
- fightclass
-
(and 1 more)
Tagged with:
-
Can you share your log with new setting/profile
-
Hello, you can also, in grinder profiles editor add zones, in all zones put the min/max level in "For character level 'x' to 'x'". WRobot will change zone automaticly.
-
Using Party mode out of party?
Droidz replied to aeolian's topic in WRobot for Wow Cataclysm - Help and support
Hello, sorry you cannot use party bot out of party -
Help WRBOT CRASH
Droidz replied to Nikrom2's topic in WRobot for Wow Mists of Pandaria - Help and support
Hello, this version is obsolete. -
Bonjour, vous pouvez regarder ce guide http://wrobot.eu/forums/topic/3560-fight-class-tutorial-video/ et lire http://download.wrobot.eu/wrobot/guides/WRobot guide FR.pdf . Editer également de fightclass qui existe déjà (pour wotlk ou cata) afin de voir comment utiliser les sorts.
-
ps: you can also replace if (itemId > 0) ItemsManager.UseItem(itemId); // if it is item if (spellId > 0) SpellManager.CastSpellByIdLUA(spellId); // if it is spell by Lua.LuaDoString("ExtraActionButton1:Click()");
-
When you run in your wow chat /cast Ysera's Wrath this works?
-
Do you have try to reinstall WRobot in new folder? if you can share your full log files.
-
Ok, in the "action" column add text: lua: ServerHop_HopForward()
-
Hello, Try to disable option (in advanced general settings tab "Path-finding") "Blacklist Npc/Node if unable to make full path to reach it". If this don't works, in your profile, after kill step add step to clear blacklist (step type runcode): wManager.wManagerSetting.ClearBlacklistOfCurrentProductSession();
-
Hello, yes WRobot mount up only if target distance is greater than distance (or if it is loop path).
-
smelting Not Smelting
Droidz replied to vladdus's topic in WRobot for Wow The Burning Crusade - Help and support
Yes sorry, you don't need to add items names (this feature is rarely used, i had forgotten how to use it). You need to add in your NPC DB (tab 'tools') (or in your profile) npc type "Smelting" (WRobot read only position of this npc, in game select npc near smelting zone). -
Hello, Use quest type "InteractWithNpc", add position and stolem rams id, in "Macro when interact" put: RunMacroText("/whistle")
-
Add support for Monk Zen Flight
Droidz replied to ivicask's topic in WRobot for Wow Mists of Pandaria - Help and support
Hello, http://wrobot.eu/bugtracker/548-zen-flight-is-not-recognized-as-a-proper-flying-mount-r358/ -
Hello, before this quest, run this c# code in a step: wManager.wManagerSetting.CurrentSetting.BlackListTrainingDummy = false; wManager.BlackListSerializable.AddBlackListToWRobotSession(); And use spell type 'UseSpellOn'.
-
c# - Search in Bags and change settings
Droidz replied to Bugreporter's topic in Developers assistance
Hello, var foodName = Lua.LuaDoString<string>(@" local foodId = {113509,80610,80618,65499,43523,43518,34062,22019,65517,22895,65516,8076,65515,8075,65500,1487,1114,1113,5349} local cid = 0; local maxCount = 0; for i, id in ipairs(foodId) do local c = GetItemCount(id); if c > maxCount then maxCount = c; cid = id; end end if cid <= 0 then return ""; end local name = GetItemInfo(cid); return name; "); if (!string.IsNullOrWhiteSpace(foodName)) { wManager.wManagerSetting.CurrentSetting.FoodPercent = 60; wManager.wManagerSetting.CurrentSetting.FoodName = foodName; } -
Hello, use grinder product and add fox id in the list of mob to attack (in grinder product wrobot gather also nodes).
-
Bonjour, pouvez vous partager votre fightclass actuelle
-
Hello, try this c# code: var nearHostile = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitHostile()); if (nearHostile.IsValid) { wManager.Wow.Helpers.ClickOnTerrain.Spell(218594, new Vector3(nearHostile.Position)); Thread.Sleep(1000); }
-
Hello, to AOE spell/item, you need to use: wManager.Wow.Helpers.ClickOnTerrain.Pulse(new Vector3(724.7518, 5318.563, 57.52559));
-
Do you have try without wow addon? Can you past here your list of item at milling
-
I have added feature to dump gameobjects to add these to the meshes files. But this take time. I'll add gameobjects (doors, ...) in next meshes update.
-
Like here: http://wrobot.eu/forums/topic/2681-snippets-codes-for-quest-profiles/?do=findComment&comment=12204 try with this code: Thread t = new Thread(() => { uint itemId = 62899; uint spellId = 62899; int questId = 28000; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive) { if (itemId > 0) ItemsManager.UseItem(itemId); // if it is item if (spellId > 0) SpellManager.CastSpellByIdLUA(spellId); // if it is spell ClickOnTerrain.Pulse(new Vector3(ObjectManager.Target.Position)); // for AOE spell/item } } Thread.Sleep(500); } }); t.Start();