Jump to content

Droidz

Administrators
  • Posts

    12590
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

150420 profile views
  1. Hello, Sorry, there have been some issues with the server over the past 48 hours, but the problem should now be resolved.
  2. Hello, As bio33 mentions, support for The War Within will be added when the Midnight version is published.
  3. 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.
  4. Hello. Currently, WRobot is detected on this server: https://wrobot.eu/byme/CompatibilityReporting/server_details.php?id=3
  5. 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/
  6. Hello, Try with a game client from the original version downloaded from a site other than the server's website.
  7. 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() { } }
  8. 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?
  9. Hello, the best is to use "Relogger" application. You can also try with the product "Schedule" (or "Quester" if you have good knowledge).
  10. 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/
  11. https://wrobot.eu/forums/topic/15054-payment-option/?&_rid=1#findComment-70150
  12. Hello, Please provide me with the information you want to update via private message: https://wrobot.eu/messenger/compose/?to=1
  13. Hello, Your payment attempt failed (Stripe error "incorrect_number").
  14. 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
×
×
  • Create New...