Everything posted by Droidz
-
windows 11 and visual c++ 2010
Hello, for wotlk, you need to install 32bit version vcredist_x86.exe
-
Auto-hunting startup crash issue
Hello, What do you call "auto-hunting"? Is it the game that crashes? Do you download the game client from the server's website? (or is it an original game client)
-
Wrobot closes right on open
Hello, your problem should be resolved.
-
Unlock Licence for version
Hello, your problem should sovled
-
How to clean the move manager stuck count?
Hello, Direct access (simple but not ideal) : // You can reset the counter to 0 directly wManager.Wow.Helpers.StuckResolver.StuckCount = 0; Differential approach : // At the beginning of your recovery step, save the current value int initialStuckCount = wManager.Wow.Helpers.StuckResolver.StuckCount; // ... your recovery logic ... // After recovery, calculate how many new stuck events occurred int newStuckEvents = wManager.Wow.Helpers.StuckResolver.StuckCount - initialStuckCount; // Reset the counter to what it was initially plus any new events wManager.Wow.Helpers.StuckResolver.StuckCount = initialStuckCount; Local counter with events : var localStuckCounter = 0; wManager.Events.MovementEvents.OnPulseStuckResolver += cancelable => { localStuckCounter++; // cancelable.Cancel(); // if you want to cancel the automatic unstuck }; // Use localStuckCounter instead of StuckResolver.StuckCount // Reset localStuckCounter = 0 after your recovery
-
Passage des levels
Bonjour, Avez-vous ajouté le PNJ entraîneur (type WarriorTrainer ou autre selon votre classe) dans votre profil ou dans votre "NPC DB" (onglet "Tools").
-
Mounts problems
Hello, I think it's a case sensitivity issue. You need to enter the name exactly as it appears in-game. You also have many WoW addons installed, which can sometimes cause problems.
-
Server down?
Hello, Sorry, there have been some issues with the server over the past 48 hours, but the problem should now be resolved.
-
Firestorm The War Within
Hello, As bio33 mentions, support for The War Within will be added when the Midnight version is published.
-
Project Epoch wrobot doesn't work
Hello, Epoch uses a modified game client, which is why WRobot no longer works correctly. I apologize, but currently there is no support planned for this server or any other server with a modified game client.
-
How high is chances of getting detected on Warmane
Hello. Currently, WRobot is detected on this server: https://wrobot.eu/byme/CompatibilityReporting/server_details.php?id=3
-
Trouble loading fight classes
Hello, Do you have any active WoW addons? If so, please disable them all. Could you please share the full log file of the session where you encountered the issue? You can find instructions on how to post your log file here: https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/
-
Game Version Incorect (Whitemane Cata)
Hello, Try with a game client from the original version downloaded from a site other than the server's website.
-
How can I summon "Field Repair Bot 75B" to sell junk and repair gear?
Hello, Try with this plugin Main.cs : using System.Threading; using wManager.Wow.Class; using wManager.Wow.Enums; using wManager.Wow.Helpers; public class Main : wManager.Plugin.IPlugin { const int SpellId = 46457; const int NpcId = 50041; public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state is wManager.Wow.Bot.States.ToTown) { MovementManager.StopMove(); new Spell(SpellId).Launch(true); Thread.Sleep(5000); var npc = new Npc { ContinentId = (ContinentId)Usefuls.ContinentId, Name = "Field Repair Bot 75B", Entry = NpcId, Position = wManager.Wow.ObjectManager.ObjectManager.Me.Position, Type = Npc.NpcType.Repair, Faction = Npc.FactionType.Neutral }; NpcDB.ListNpc.RemoveAll(n => n.Active && n.Entry == npc.Entry && n.Type == npc.Type && n.ContinentId == npc.ContinentId && n.CurrentProfileNpc); NpcDB.AddNpc(npc, false, true); } }; } public void Dispose() { } public void Settings() { } }
-
How can I summon "Field Repair Bot 75B" to sell junk and repair gear?
Hello, When you use this spell, does an NPC or GameObject appear (if so, could you provide me with the entry ID)? Or do you directly get the sales window?
-
How to execute a task step for 30 minutes and then proceed to the next step?
Hello, the best is to use "Relogger" application. You can also try with the product "Schedule" (or "Quester" if you have good knowledge).
-
Q [UPGRADE] 1 sessions -> 3 sessions
Hello, For this type of request, it's best to send me a private message. You can find the invoice for your subscription upgrade here: https://wrobot.eu/clients/orders/
-
need to change billing information
https://wrobot.eu/forums/topic/15054-payment-option/?&_rid=1#findComment-70150
-
Payment option
Hello, Please provide me with the information you want to update via private message: https://wrobot.eu/messenger/compose/?to=1
- Good day, I don't receive a code by email. Help me contact the administration.
- Good day, I don't receive a code by email. Help me contact the administration.
-
How freeze bot while gatherer
Hello, You can execute your code in the product thread (gatherer) using, for example, the "OnBeforeCheckIfNeedToRunState" event. Sample : https://wrobot.eu/forums/topic/15429-plugin-for-robotsresponse-to-player-attack/?&_rid=1#findComment-69230
-
is there any Plugin for MailboxWhenBagsFull?
Hello, By default, when the bot goes to town, it starts by mailing items using the closest mailbox. The bot goes to town when the bags are full. Configure the mailing parameters in "Advanced Settings" and add a mailbox to your profile.
-
Server Connection Failed to Wrobot server
Hello, can you share your log file please
-
Log spam
Hello, Check in the main tab if the remote option is enabled; if it is, try disabling it. If that's not the issue, it's likely due to one of your plugins/profiles/fightclasses. Try disabling them one by one to find the source of the problem.