Jump to content

Droidz

Administrators
  • Posts

    12415
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz got a reaction from iMod in How to get the UnitID out of the WoWUnit object   
    Hello, sorry you cannot get Lua UnitId from WRobot WowObject.
    I have found this UnitID:
    none player pet vehicle target focus questnpc mouseover raid1 raid2 raid3 raid4 raid5 raid6 raid7 raid8 raid9 raid10 raid11 raid12 raid13 raid14 raid15 raid16 raid17 raid18 raid19 raid20 raid21 raid22 raid23 raid24 raid25 raid26 raid27 raid28 raid29 raid30 raid31 raid32 raid33 raid34 raid35 raid36 raid37 raid38 raid39 raid40 raidpet1 raidpet2 raidpet3 raidpet4 raidpet5 raidpet6 raidpet7 raidpet8 raidpet9 raidpet10 raidpet11 raidpet12 raidpet13 raidpet14 raidpet15 raidpet16 raidpet17 raidpet18 raidpet19 raidpet20 raidpet21 raidpet22 raidpet23 raidpet24 raidpet25 raidpet26 raidpet27 raidpet28 raidpet29 raidpet30 raidpet31 raidpet32 raidpet33 raidpet34 raidpet35 raidpet36 raidpet37 raidpet38 raidpet39 raidpet40 party1 party2 party3 party4 partypet1 partypet2 partypet3 partypet4 nameplate1 nameplate2 nameplate3 nameplate4 nameplate5 nameplate6 nameplate7 nameplate8 nameplate9 nameplate10 nameplate11 nameplate12 nameplate13 nameplate14 nameplate15 nameplate16 nameplate17 nameplate18 nameplate19 nameplate20 nameplate21 nameplate22 nameplate23 nameplate24 nameplate25 nameplate26 nameplate27 nameplate28 nameplate29 nameplate30 nameplate31 nameplate32 nameplate33 nameplate34 nameplate35 nameplate36 nameplate37 nameplate38 nameplate39 nameplate40 boss1 boss2 boss3 boss4 boss5 arena1 arena2 arena3 arena4 arena5 arenapet1 arenapet2 arenapet3 arenapet4 arenapet5 npc spectateda1 spectateda2 spectateda3 spectateda4 spectateda5 spectateda6 spectateda7 spectateda8 spectateda9 spectateda10 spectateda11 spectateda12 spectateda13 spectateda14 spectateda15 spectatedb1 spectatedb2 spectatedb3 spectatedb4 spectatedb5 spectatedb6 spectatedb7 spectatedb8 spectatedb9 spectatedb10 spectatedb11 spectatedb12 spectatedb13 spectatedb14 spectatedb15 spectatedpeta1 spectatedpeta2 spectatedpeta3 spectatedpeta4 spectatedpeta5 spectatedpeta6 spectatedpeta7 spectatedpeta8 spectatedpeta9 spectatedpeta10 spectatedpeta11 spectatedpeta12 spectatedpeta13 spectatedpeta14 spectatedpeta15 spectatedpetb1 spectatedpetb2 spectatedpetb3 spectatedpetb4 spectatedpetb5 spectatedpetb6 spectatedpetb7 spectatedpetb8 spectatedpetb9 spectatedpetb10 spectatedpetb11 spectatedpetb12 spectatedpetb13 spectatedpetb14 spectatedpetb15 commentator but you cannot found all mobs with this.
     
    You can try to bypass problem with this code (not tested):
    public static int GetThreat(WoWUnit target) { int threatpct = 0; string luaCode = "local _, _, threatpct, _, _ = UnitDetailedThreatSituation('player', 'target'); return threatpct;"; try { if (!target.IsValid) return 0; if (target.IsMyTarget) { threatpct = Lua.LuaDoString<int>(luaCode); } else { var currentTarget = ObjectManager.Target.GetBaseAddress; Memory.WowMemory.LockFrame(); Interact.InteractGameObject(target.GetBaseAddress, !ObjectManager.Me.GetMove); threatpct = Lua.LuaDoString<int>(luaCode); if (currentTarget > 0) Interact.InteractGameObject(currentTarget); else Lua.LuaDoString("ClearTarget();"); } } catch { } finally { Memory.WowMemory.UnlockFrame(); } return threatpct; }  
  2. Like
    Droidz got a reaction from KevinVapes in WRobot not working with WoW 7.0.3 (22423)   
    Fixed
  3. Like
    Droidz got a reaction from Dlarge in WRobot not working with WoW 7.0.3 (22423)   
    Fixed
  4. Like
    Droidz got a reaction from Dlarge in WRobot not working with WoW 7.0.3 (22423)   
    I'll fix it
  5. Like
    Droidz got a reaction from da8ball in WRobot not working with WoW 7.0.3 (22423)   
    Update WRobot, he support now wow patch 22423
  6. Like
    Droidz got a reaction from Lord in WRobot not working with WoW 7.0.3 (22423)   
    Hello, I work on it
  7. Like
    Droidz got a reaction from eeny in WRobot not working with WoW 7.0.3 (22423)   
    Hello, I work on it
  8. Like
    Droidz got a reaction from da8ball in WRobot not working with WoW 7.0.3 (22423)   
    Hello, I work on it
  9. Like
    Droidz got a reaction from Dlarge in WRobot not working with WoW 7.0.3 (22423)   
    Hello, I work on it
  10. Like
    Droidz got a reaction from civicacid in How can I set Relogger for multiply wow.exe?   
  11. Like
    Droidz got a reaction from KevinVapes in patch   
    Hello, relaunch WRobot and accept update.
    Regards
  12. Like
    Droidz got a reaction from KevinVapes in patch   
    What is your current game version?
  13. Like
    Droidz got a reaction from Krack3n in WRobot for Wow Legion build 7.0.3.22396 ready   
    Hello,
    WRobot support now  Wow Legion pre-expansion patch (7.0.3.22396).
    If you play on european server, wait tomorrow to update WRobot (if you have updated WRobot, you can download old version of WRobot here).
     
    View full article
     
  14. Like
    Droidz got a reaction from Krack3n in how can i use a profile ?   
    Hello, move quest profiles files in folder "WRobot\Quester", in WRobot, select product "Quester" (tab main), in to tab "Product Settings" and select your profile.
  15. Like
    Droidz got a reaction from BetterSister in Snippets Lua and C# codes for Fight Classes   
    Snippets C# codes for Fight Classes: http://wrobot.eu/forums/topic/3573-snippets-c-codes-for-fight-classes/
    Snippets LUA codes for Fight Classes: http://wrobot.eu/forums/topic/1118-snippets-of-lua-codes-for-fightclass/
  16. Like
    Droidz got a reaction from Dlarge in Snippets C# codes for Fight Classes   
    Snippets C# codes for Fight Classes
     
    ps: Feel free to share your tips on this post. If your message is poorly presented or contains a question, it will be deleted.
  17. Like
    Droidz got a reaction from Dlarge in Frostmage Fightclass using Proccs/Buffs   
    http://wrobot.eu/forums/topic/3573-snippets-c-codes-for-fight-classes/?do=findComment&comment=16508
  18. Like
    Droidz got a reaction from Dlarge in Frostmage Fightclass using Proccs/Buffs   
    Hello, Like here: http://wrobot.eu/bugtracker/feral-casting-healing-touch-even-when-predatory-swiftness-is-not-present-r468/#comment-3141
    Your character get several buffs with the same name:
     
     
    The best way to resolve this problem, is to use "C Sharp Code" conditon with the code:
    wManager.Wow.ObjectManager.ObjectManager.Me.BuffStack(44544) >= 1  
  19. Like
    Droidz got a reaction from KevinVapes in Frostmage Fightclass using Proccs/Buffs   
    Hello, Like here: http://wrobot.eu/bugtracker/feral-casting-healing-touch-even-when-predatory-swiftness-is-not-present-r468/#comment-3141
    Your character get several buffs with the same name:
     
     
    The best way to resolve this problem, is to use "C Sharp Code" conditon with the code:
    wManager.Wow.ObjectManager.ObjectManager.Me.BuffStack(44544) >= 1  
  20. Like
    Droidz reacted to eeny in Fight Class Tutorial Video   
    Ok, this is a MASSIVE subject that cant be done justice in an 8 minute youtube video... but this should get some people started.
     
  21. Like
    Droidz reacted to BetterSister in Finally!!!!!!!   
  22. Like
    Droidz got a reaction from cindarella in luascript in is complete condition   
    Hello,
    You can use code like this in <is complete condition>  (not tested):
    int shipmentCapacity = wManager.Wow.Helpers.Lua.LuaDoString<int>("local name, texture, shipmentCapacity, shipmentsTotal, creationTime, duration, timeLeftString, itemName, itemIcon, itemQuality, itemID = C_Garrison.GetLandingPageShipmentInfo(); return shipmentCapacity;"); int shipmentsTotal = wManager.Wow.Helpers.Lua.LuaDoString<int>("local name, texture, shipmentCapacity, shipmentsTotal, creationTime, duration, timeLeftString, itemName, itemIcon, itemQuality, itemID = C_Garrison.GetLandingPageShipmentInfo(); return shipmentsTotal;"); return shipmentsTotal >= shipmentCapacity;  
    A few samples of lua usages:
    string luaValue = wManager.Wow.Helpers.Lua.LuaDoString("luaVarName = 'value text'", "luaVarName"); string luaValue2 = wManager.Wow.Helpers.Lua.LuaDoString<string>("return 'value text';"); bool luaValueBool = wManager.Wow.Helpers.Lua.LuaDoString<bool>("return 1==1;"); wManager.Wow.Helpers.Lua.LuaDoString("print('run lua code without return value');");  
  23. Like
    Droidz got a reaction from Krack3n in Relogger Bug   
    Can you try this version: http://wrobot.eu/bugtracker/relogger-wow-path-r472/?do=findComment&comment=3171
  24. Like
    Droidz reacted to eeny in Dungeon Profile creation tutorial video   
    Eeny_RFC.xml
  25. Like
    Droidz got a reaction from Krack3n in wow client just updated   
    WRobot support now wow build 22345, (re)launch WRobot and accept udpate.
×
×
  • Create New...