Jump to content

Droidz

Administrators
  • Posts

    12431
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz got a reaction from PierreDeRosette in Gestion du focus ?   
    Pour lancer un sort sur les focus:
    // lua id: http://wow.gamepedia.com/UnitId var intimidatingShout = new Spell("Intimidating Shout"); if (intimidatingShout.KnownSpell && intimidatingShout.IsSpellUsable)//... { intimidatingShout.Launch(intimidatingShout.CastTime > 0, true, false, "focus"); // Si vous voulez gérer manuellement le lancement utiliser: SpellManager.CastSpellByNameOn(intimidatingShout.NameInGame, "focus"); } Pour obtenir le focus (en objet "WowUnit"), ajouter cette methode dans votre code:
    static WoWUnit GetFocus() { uint offsetFocus = 0xEAEF10; // offset wow 6.2.3.20886 var unit = new WoWUnit(0); try { var focusGuid = wManager.Wow.Memory.WowMemory.Memory.ReadInt128(wManager.Wow.Memory.WowMemory.Memory.RebaseAddress(offsetFocus)); if (focusGuid.IsNotZero()) { var obj = ObjectManager.GetObjectByGuid(focusGuid); if (obj.Type == WoWObjectType.Player || obj.Type == WoWObjectType.Unit) unit = new WoWUnit(obj.GetBaseAddress); } } catch (Exception e) { } return unit; } Et vous pouvez utiliser le code comme ca par exemple:
    var focus = GetFocus(); if (focus.IsValid) { var intimidatingShout = new Spell("Intimidating Shout"); if (intimidatingShout.KnownSpell && intimidatingShout.IsSpellUsable && focus.GetDistance < intimidatingShout.MaxRange + focus.CombatReach && !focus.HaveBuff("Intimidating Shout")) { intimidatingShout.Launch(intimidatingShout.CastTime > 0, true, false, "focus"); } }  
    PS: Je vais rajouter le focus directement dans WRobot dans les prochaines maj.
  2. Like
    Droidz got a reaction from molato in Complete meshes for Cata / MoP   
    Hello,
    WoD (offical server): http://download.wrobot.eu/wrobot/wod/meshes.zip 
    MoP: http://download.wrobot.eu/wrobotmop/meshes/meshes.zip 
    Cata: http://download.wrobot.eu/wrobotcata/meshes/meshes.zip
    Wotlk: http://download.wrobot.eu/wrobotwotlk/meshes/meshes.zip
  3. Like
    Droidz reacted to Pasterke in anyone got a thorium ore profile for silithus?   
    Select Gatherer.
    Product Settings
    Profile Creator
    Set Record Path on on. Minimize Window.
    Usefull addon : Gathermate2 and Gathermate2_data.
    In addon config  Gathermate2 choose import (check what you want to import)
    Open your map and put it in mini mode.
    You will see the ores on your map.
    Now fly araound making a circle (you end where you start)
    If you reach your startpoint again, maximize Profile Creator.
    Hit the save button, and give it a name.
    Close Profile Creator.
    Load your just created profile.
    Hit start.
    Realy easy to create your own profile.
  4. Like
    Droidz got a reaction from BetterSister in Shadow priest Void Tendrils help   
    Hello,
    You can use this lua code (put it in spell name and activate spell option "Not spell, is lua script"):
    local name = GetSpellInfo(108920); RunMacroText("/cast " .. name); MoveBackwardStart() C_Timer.After(2, function() MoveBackwardStop() end) API: http://wow.gamepedia.com/API_C_Timer.After (replace 2 by the number of second), http://wow.gamepedia.com/API_MoveBackwardStart, http://wow.gamepedia.com/API_MoveBackwardStop, http://wrobot.eu/forums/topic/1688-lua-and-multi-language-support/
  5. Like
    Droidz reacted to Loki1 in Furry Warrior Class Profile   
    Schmitt,
    Here is a pretty good fury warrior fight class, I use in my group and is always highest DPS.  Uses bloodthirst, slam (when slam! buff is up), whirlwind/cleave and execute--everything you asked for.  Let me know if you like it :)
    --Loki
    Warrior - Loki4.xml
  6. Like
    Droidz got a reaction from BetterSister in Tomorrow is the day!   
    Hi, Good config, you have the same CPU as me.
    And the SSD compared to the old HDD it is 
  7. Like
    Droidz reacted to BetterSister in Tomorrow is the day!   
    The day when my 500GB SSD and 32GB ram arrives No more issues related to ram too low or HDD being too slow
  8. Like
    Droidz got a reaction from jaladhjin in Tapatalk Support on forums (Android/IOS/BlackBerry)   
    Hello, problem resolved.
  9. Like
    Droidz got a reaction from Pudge in Snippets codes for quest profiles   
    Use item on hostile weakened mob
    Add step type "PickUp" (put quest name in parameter) Add step type "RunCode", in parameter put this code: Thread t = new Thread(() => { uint itemId = 62899; int questId = 28000; while (robotManager.Products.Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { if (!Quest.HasQuest(questId)) break; if (ObjectManager.Target.IsValid && ObjectManager.Target.IsAlive && ObjectManager.Target.HealthPercent <= 25) { ItemsManager.UseItem(itemId); } } Thread.Sleep(500); } }); t.Start();  (you need to have quest in your questlog, you can replace "62899" but the item id, "28000" by the quest id and "25" by the max target health)
    Add step type "Pulse" (put quest name in parameter) (use quest type kill or interact)
    Add step type "TurnIn" (put quest name in parameter)
    (sample if based on this quest: http://www.wowhead.com/quest=28000/do-the-imp-possible )
  10. Like
    Droidz reacted to Shinzon in Level 1-90 - Quest Profile Project Code Zed14   
    Hello everyone,
    I know there was a previous attempt at creating some leveling profiles 1-90 and due to personal life situations it got set back indefinitely. 
    So I am going to try and tackle this myself as I've enjoyed playing around with WRobot myself and I think it would be a fun challenge.
    I am going to dub it Project Zed 14 (From pulp fiction's "Zed's Dead Baby" and 14 races of WoW).
    I know the other one was planned to be an Alliance and a Horde profile, but as I've been putting this together I think it makes more sense to set it up as a class specific profile.
    So my plan is create the following:
    ALLIANCE:
    Human - Level 1-90 
    Dwarf- Level 1-90
    Gnome - Level 1-90
    Draenei - Level 1-90
    Worgen - Level 1-90
    Human - Level 1-90
    Pandaren - Level 1-90
    HORDE:
    Orc - Level 1-90
    Undead - Level 1-90
    Tauren - Level 1-90
    Troll - Level 1-90
    Blood Elf - Level 1-90
    Golbin - Level 1-90
    Pandaren - Level 1-90
    I have extensive game play, private server development and individual C++ and C# coding experience. So I am hopeful at completely this. Right now my timeline is as follows:
    STAGE 1
    Alliance: Human, Dwarf and Gnome (to be complete by end of April)
    Horde: Orc, Undead and Tauren (to be complete by end of April)
    STAGE 2
    Alliance: Draenei, Worgen, Human (to be complete by end of July)
    Horde: Troll, Bloodelf and Goblin (to be complete by end of July)
    STAGE 3
    ALL Pandaren (to be complete by end of September)
    I'm probably going to charge for the profiles, only because of the sheer amount of time required to compile them. I'm not yet sure whether I'll charge per race, per faction or package them all up in one zip file and do it as a bundle. So far I am at about level 24 in human and level 15 in orc. It takes time to plow through it all, but I am sure that I will get them tweaked perfectly eventually. Each day I am completing a series (say a block of five or ten levels), I am then running a couple QA tests to ensure that they are working smoothly still.
    Let me know your thoughts and what you'd like to see.
  11. Like
    Droidz got a reaction from cindarella in Some changes   
    Hello, following this news:
    I just remove the trial version of WRobot (so the products WRotation and Party are no longer free) (the trial version of WRobot for private server is still active and will remain).
    I have added WRobot subscription "2.99 € per 5 days" (to replace trial version).
    The monthly price is now at 6.99€ (instead of 5.99€), and lifetime price at 23.99€ (instead of 19.99€) (for normal WRobot subscription).
    This made a lot of changes, but my goal (it is better for me and for you) is in the future that WRobot become a semi-private bot.

    View full article
  12. Like
    Droidz reacted to dewjr in wrobot wont open   
    ok thanks.  I was able to run it with the preinstalled version.  It look like its just the Trend Micro stopping the update from downloading the file.  
     
    Website blocked by Trend Micro OfficeScan
    Malicious website blocked
    http://download.wrobot.eu/wrobot/bin/Bin/robotManager.dll
    Rating: Dangerous. Verified fraud page or threat source. What You Can Do:
    Contact your administrator about security settings on your network Copyright © 2015. Trend Micro™ Incorporated. All rights reserved. That is what I get when trying to download the link to the robotManager.dll
     
  13. Like
    Droidz got a reaction from KnightRyder in Some changes   
    Hello, following this news:
    I just remove the trial version of WRobot (so the products WRotation and Party are no longer free) (the trial version of WRobot for private server is still active and will remain).
    I have added WRobot subscription "2.99 € per 5 days" (to replace trial version).
    The monthly price is now at 6.99€ (instead of 5.99€), and lifetime price at 23.99€ (instead of 19.99€) (for normal WRobot subscription).
    This made a lot of changes, but my goal (it is better for me and for you) is in the future that WRobot become a semi-private bot.

    View full article
  14. Like
    Droidz got a reaction from eeny in Some changes   
    Hello, following this news:
    I just remove the trial version of WRobot (so the products WRotation and Party are no longer free) (the trial version of WRobot for private server is still active and will remain).
    I have added WRobot subscription "2.99 € per 5 days" (to replace trial version).
    The monthly price is now at 6.99€ (instead of 5.99€), and lifetime price at 23.99€ (instead of 19.99€) (for normal WRobot subscription).
    This made a lot of changes, but my goal (it is better for me and for you) is in the future that WRobot become a semi-private bot.

    View full article
  15. Like
    Droidz got a reaction from TheSmokie in Snippets codes for quest profiles   
    Snippets codes for quest profiles
     
    ps: Feel free to share your tips on this post. If your message is poorly presented or contains a question, it will be deleted.
  16. Like
    Droidz reacted to BetterSister in 335A Bot doesn't understand to go down in water without CTM (should use sit button)   
    I will try to get video of the problem.
  17. Like
    Droidz reacted to BetterSister in Does default license always reset to trial   
    there is alot to fix today
  18. Like
    Droidz got a reaction from BetterSister in Does default license always reset to trial   
    Hello, Thank you. I'll fix it today.
  19. Like
    Droidz got a reaction from Brian in Does default license always reset to trial   
    Hello, Thank you. I'll fix it today.
  20. Like
    Droidz got a reaction from Brian in 'Relogger' application is available   
    Hello, 
    'Relogger' application is now available.
    Update WRobot, the file 'Relogger.exe' will appear in your WRobot folder.
    PS: If you cannot run WRobot today (crash instantly), launch file "Update.exe" (you can found this in WRobot folder) and update WRobot to resolve problem.

    View full article
  21. Like
    Droidz got a reaction from eeny in 'Relogger' application is available   
    Hello, 
    'Relogger' application is now available.
    Update WRobot, the file 'Relogger.exe' will appear in your WRobot folder.
    PS: If you cannot run WRobot today (crash instantly), launch file "Update.exe" (you can found this in WRobot folder) and update WRobot to resolve problem.

    View full article
  22. Like
    Droidz got a reaction from BetterSister in 'Relogger' application is available   
    Hello, 
    'Relogger' application is now available.
    Update WRobot, the file 'Relogger.exe' will appear in your WRobot folder.
    PS: If you cannot run WRobot today (crash instantly), launch file "Update.exe" (you can found this in WRobot folder) and update WRobot to resolve problem.

    View full article
  23. Like
    Droidz got a reaction from weepz in 'Relogger' application is available   
    Hello, 
    'Relogger' application is now available.
    Update WRobot, the file 'Relogger.exe' will appear in your WRobot folder.
    PS: If you cannot run WRobot today (crash instantly), launch file "Update.exe" (you can found this in WRobot folder) and update WRobot to resolve problem.

    View full article
  24. Like
    Droidz got a reaction from Seumas in Work in progress   
    Hello,
    I post a small new for say that currently I work principly on "Relogger" application (you can look screenshot in this post).
    I took a little delay on the support (on the forum) and for fix the bugs on WRobot for private server, I'll catch up when "Relogger" is realesed (soon :)). After it, I'll start to work on Legion.
    Regards, Droidz.


    View full article
  25. Like
    Droidz got a reaction from eeny in Work in progress   
    Hello,
    I post a small new for say that currently I work principly on "Relogger" application (you can look screenshot in this post).
    I took a little delay on the support (on the forum) and for fix the bugs on WRobot for private server, I'll catch up when "Relogger" is realesed (soon :)). After it, I'll start to work on Legion.
    Regards, Droidz.


    View full article
×
×
  • Create New...