Jump to content

Droidz

Administrators
  • Posts

    12432
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz got a reaction from HighlineTV in Relogger doesnt Select the right WoW#ACCNUMBER and logs in to main account   
    Hello, in Wow login window uncheck "Remember Account Name"
  2. Like
    Droidz got a reaction from Fisher Man in Increase range for "Attack before being attacked"   
    Changed Status to Confirmed
    Changed Version to All
  3. Like
    Droidz got a reaction from ScripterQQ in Character moving/rotating while Sapped   
    Hello, I have taken note.
    To wait you can try this plugin Main.cs (not tested):
    using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.MovementEvents.OnPulseStuckResolver += MovementEvents_OnPulseStuckResolver; } public void Dispose() { } public void Settings() { } WoWLocalPlayer m { get { return ObjectManager.Me; } } private void MovementEvents_OnPulseStuckResolver(System.ComponentModel.CancelEventArgs cancelable) { try { if (m.IsStunned || m.Rooted || m.Confused || m.HaveBuff("Concussive Shot")) // complete list ... cancelable.Cancel = true; } catch { } } }  
  4. Thanks
    Droidz got a reaction from Razzue in Profile Creation Hotkey   
    Hello, use grinder or quester profile if you want to use hotspots.
  5. Like
    Droidz got a reaction from ScripterQQ in Trying to attack Spirit of Redemption/Divine Intervention targets   
    Wait next update
  6. Thanks
    Droidz got a reaction from Findeh in [Vanilla] Pathfinding Silithus   
    Hello, please wait tomorrow for the map update.
  7. Thanks
    Droidz got a reaction from Findeh in [Vanilla] Pathfinding Silithus   
    Changed Status to Fixed
    Changed Version to All
  8. Like
    Droidz got a reaction from Mattrix in FollowPath with Target Entry   
    Hello, you cannot 
  9. Thanks
    Droidz got a reaction from pravicovy in Gather resources while in quest profile   
  10. Sad
    Droidz got a reaction from pravicovy in Gather resources while in quest profile   
    Hello, in advanced general settings try to increment le min/max latency
  11. Like
    Droidz got a reaction from y2krazy in [Vanilla] Deeprun Tram not updating correctly in ObjectManager   
    Hello, wait next update
  12. Like
    Droidz got a reaction from Matenia in [Vanilla] Deeprun Tram not updating correctly in ObjectManager   
    Hello, wait next update
  13. Like
    Droidz got a reaction from Matenia in [Vanilla] EquippedItems.GetEquippedItem(WoWInventorySlot.Waist) broken   
    I'll remove GetEquippedItem, this method is useless and broken.
  14. Like
    Droidz got a reaction from Matenia in [TBC] WoWItem is missing property MaxDurability   
    wait next update
  15. Like
    Droidz got a reaction from Dreamful in WoW window position and size   
    Hello, this feature works (tested now). Try to disable your antivirus (or clear wow cache)
  16. Like
    Droidz got a reaction from Matenia in EventsLuaWithArgs.OnEventsLuaWithArgs not firing some events   
    It is that I think, Event id change frequently, and when you compile DLL, compiler put id in dll (not the enum name).
    To fix it, try to (by sample) replace:
    if (id == LuaEventsId.MIRROR_TIMER_START) by
    if (id.ToString() == "MIRROR_TIMER_START")  
  17. Like
    Droidz got a reaction from Matenia in Error since last update 1.12   
    problem resolved, update again wrobot.
  18. Like
    Droidz got a reaction from funkybeatz in Dismount befor skinning   
    Yes I see that I have fixed this problem also (and for looting also).
  19. Like
    Droidz got a reaction from Dreamful in Player got Teleported, and still relogging   
    Changed Status to Confirmed
    Changed Version to All
  20. Like
    Droidz got a reaction from Matenia in EventsLuaWithArgs.OnEventsLuaWithArgs not firing some events   
    Hello, run this lua code and check if you have "SPELLCAST_STOP" in wow chat:
    local frame = CreateFrame('Frame') frame:RegisterAllEvents() frame:SetScript('OnEvent', function() DEFAULT_CHAT_FRAME:AddMessage(tostring(event)) end ) This seem to be in wow bug: http://forum.nostalrius.org/viewtopic.php?t=12765&f=38
  21. Thanks
    Droidz got a reaction from Seminko in Fishing bot - Bobber click delay   
    Hello, I'll not add this feacture, but you can create plugin for that (and use wrobot event "wManager.Events.InteractEvents.OnInteractPulse")
  22. Thanks
    Droidz got a reaction from reapler in PathFinder.Pather.FindZ(); NullReferenceException   
    Hello, you need to call 
    wManager.Wow.Helpers.PathFinder.GetZPosition(new Vector3(1, 2, 3));  
  23. Like
    Droidz got a reaction from y2krazy in Attacking Friendly Hunter Pet? (WotLK 1.8.3 - 29574)   
    Hello, this happen frequently? Option ( in advanced general settings) "Ignore combat with all pets" is activate?
  24. Like
    Droidz reacted to y2krazy in Attacking Friendly Hunter Pet? (WotLK 1.8.3 - 29574)   
    That option is enabled now! I didn't realize it was unchecked - will report back after starting the profile near a pet to see if that resolved the issue.
  25. Thanks
    Droidz got a reaction from Trustjah in [TBC] Auction doing wrong calculations   
    Changed Status to Fixed
×
×
  • Create New...