Jump to content

Droidz

Administrators
  • Posts

    12415
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Droidz reacted to Womble in Anticipation Buff Stacks - Not Working   
    Alright, amidst the chaos I managed to have a '>' instead of '<' which I also pasted into several key abilities thus breaking my rotation.
     
    Problem solved for now.
     
    I have a couple of issues from doing a full siege clear that need ironing out and an aoe problem (again) but I'll make a new post for these problems. Otherwise the profile is looking golden so I should be able to get a release shortly!
  2. Like
    Droidz reacted to Bugreporter in Kick it (a solution for Rogue)   
    Same usage of a LUA-Script as described
     
    A (Combat) Rogue has at last 4 spells to interrupt spells: Kick, Blind, Gouge, Kidney Shot. Not all are usable in all situations, but all have the same conditions to try a try:
      the target must not be friendly its cast must be a interruptable spell our spell must be ready to use and the target must be in range. (added) If the spell not interruptable, cast feint (and hope the best) Kick need a high priority, feint a low, so I removed it with this information we could combine this 4 spells to one cast, which
    make our fight class profile smaller, make the settings clearer gives a info of the spell, which is interrupted allow us to do changes in the source once, not four times Hint: With the talent "Dirty Tricks" the cost of blind and gouge are 0 energie (like Kick)

            <FightClassSpell>       <SpellName>--Kick Spells</SpellName>       <FightClassConditions>         <FightClassCondition>           <ContionType>LuaScript</ContionType>           <Param xsi:type="FightClassConditionLua">             <LuaScript>local kicked=0 if UnitExists("target") and not UnitIsFriend("player", "target") then     local spell, rank, displayName, icon, startTime, endTime, isTradeSkill, castID, interrupt = UnitCastingInfo("target");     if (interrupt==false) then --[[                    (cheapest first)                        Kick,Blind,Gouge, Kidney Shot --]]                                local idSpells={1766,2094,1776,408}                 local now=GetTime()         for i=1, 4 do             if (kicked==0) then                 local start, duration, enabled = GetSpellCooldown(idSpells[i])                 if (duration==0) then                     local spellname=GetSpellInfo(idSpells[i])                     if (IsSpellInRange(spellname, "target")==1) then                         CastSpellByName(spellname)                         kicked=idSpells[i]                         print(spell.." kicked by "..spellname)                     end                 end             end         end     end end result=(kicked~=0)</LuaScript>             <VarRet>result</VarRet>             <ValueRet>true</ValueRet>           </Param>         </FightClassCondition>       </FightClassConditions>       <Priority>29</Priority>       <CheckIfKnowUsableDistance>false</CheckIfKnowUsableDistance>       <AddToSettings>true</AddToSettings>       <NotSpellIsLuaScript>true</NotSpellIsLuaScript>       <DescriptionSpell>Kick &gt; Gouge &gt; Kidney Shot for interruptable spells</DescriptionSpell>     </FightClassSpell> based on WoW 5.4.2.
     

  3. Like
    Droidz got a reaction from Bear T.O.E. in Tapatalk Support on forums (Android/IOS/BlackBerry)   
    Tapatalk
     
    Description
    Navigating online discussion forums has never been easier with Tapatalk.

    Discover robust online communities and stay connected with your favorite forums on-the-go with this award-winning mobile app. Tapatalk is the only mobile app combining over 50,000 internet communities in a streamlined mobile experience. Fast and accessible features allow you to read posts, share photos, and keep updated on private messages in all your forum communities within a single mobile app. 

    Tapatalk aggregates content from a network of communities that cover a wide variety of interests, from automotive to parenting, gardening to hiking - You will find a forum that matches your interests full of fellow enthusiasts that share your passion.
     

     

     

  4. Like
    Droidz reacted to Networkz in I Need help lol.   
    Okay Thanks, Will Go further on and use the same Process, TY !
  5. Like
    Droidz reacted to Networkz in Tutorials - *English Voice   
    Hey guys, I will Currently Be Working on a List of Tutorials, That i will get at slowly over time. I have the First Video Here which is
     
    Getting the Bot downloaded, Setup and installed as well as go through a slight rundown of installation
    and setting up wow into 32 bit mode.
     
    I hope you enjoy = )
     
    #1 ) Download and Installation / Wow 32 Bit setup
     
    http://www.youtube.com/watch?v=xXtnaMKds78&feature=youtu.be
     
    #2) Bot Features Windows / application rundown * NOT RELEASED
  6. Like
    Droidz got a reaction from Womble in Anticipation Buff Stacks - Not Working   
    For it:
     
    Lua Script:
    local nameSpell = GetSpellInfo(114015); local name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, isStealable, shouldConsolidate, spellId = UnitBuff("player", nameSpell); ret = 0; if count < 5 then ret = 1 end Return value research: 1
    Return value var: ret
     
    in lua code replace "if count < 5 then ret = 1 end" ligne by "count <= 3" for smaller or egal at 3, "count < 2" for smaller at 2, "count > 1" for bigger at 1, ...
  7. Like
    Droidz reacted to Networkz in How to Video   
    Haha okay, i will go through your videos and make some exactly as your just with * English Voice,
     
    If anyone wanted to make some in Deutch / French / Any other language we have roaming around this bot and forum that would maybe be a cool idea.
  8. Like
    Droidz reacted to Bugreporter in All Buffs at once (a solution)   
    I use the spell option "Not a spell, is lua script" to use a fantasy spell name.
     
    A timer wouldn't work because
     
    the duration/cd could be changed, because of items (i.e http://ptr.wowhead.com/item=102292) or other buffs the buffs have CD the buffs should be available at fight start.  
    And the solution above do a good job
  9. Like
    Droidz reacted to Womble in Anticipation Buff Stacks - Not Working   
    I'll try when I get home later, thanks for the assistance.
  10. Like
    Droidz reacted to Networkz in Character keeps mounting and unmounting   
    Try and use the Profile with a true mount instead of using your forms (Could be a minor Bug that has to be fixed)
     
     Atleast if that fixes it you can use that until someone can figure something out,
     
    Post a Log and someone will check it out once they see it, Make sure you run the bot and it does the dismounting before you send log, You want
    all of that to be recorded = )
     
    Thanks, Networkz. (Dustin)
  11. Like
    Droidz reacted to Bugreporter in Cannot Get AOE To Work   
    Here are two of my AoE spells. Maybe it help
    <FightClassSpell> <SpellName>Crimson Tempest</SpellName> <FightClassConditions> <FightClassCondition> <ContionType>ComboPoint</ContionType> <Param xsi:type="FightClassConditionNumber"> <Type>Bigger</Type> <Value>4</Value> </Param> </FightClassCondition> <FightClassCondition> <ContionType>HostileUnitNear</ContionType> <Param xsi:type="FightClassConditionUnitNear"> <Number>4</Number> <Type>Bigger</Type> <Radius>8</Radius> </Param> </FightClassCondition> <FightClassCondition> <ContionType>Buff</ContionType> <Param xsi:type="FightClassConditionStringBool"> <Name>Stealth</Name> </Param> </FightClassCondition> </FightClassConditions> <Priority>34</Priority> <CombatOnly>false</CombatOnly> <CheckIfView>false</CheckIfView> <AddToSettings>true</AddToSettings> <AOESpellMePos>true</AOESpellMePos> <DescriptionSpell>AoE. Used on 4 or more hostile. Disabled in Groups</DescriptionSpell> </FightClassSpell> <FightClassSpell> <SpellName>Blade Flurry</SpellName> <FightClassConditions> <FightClassCondition> <ContionType>Buff</ContionType> <Param xsi:type="FightClassConditionStringBool"> <Name>Blade Flurry</Name> <Need>true</Need> </Param> </FightClassCondition> <FightClassCondition> <ContionType>HostileUnitNear</ContionType> <Param xsi:type="FightClassConditionUnitNear"> <Number>7</Number> <Type>Bigger</Type> <Radius>10</Radius> </Param> </FightClassCondition> <FightClassCondition> <ContionType>IsSpellUsable</ContionType> <Param xsi:type="FightClassConditionStringBool"> <Name>13877</Name> <Need>true</Need> </Param> </FightClassCondition> </FightClassConditions> <Priority>33</Priority> <CombatOnly>false</CombatOnly> <CheckIfKnowUsableDistance>false</CheckIfKnowUsableDistance> <CheckIfView>false</CheckIfView> <AddToSettings>true</AddToSettings> <DescriptionSpell>AoE. Off if more then 7 hostile. Disabled in Group</DescriptionSpell> </FightClassSpell>
  12. Like
    Droidz reacted to Networkz in 1-90 already there?   
    It is Possible, You can Get Profiles From Honorbuddy and you can Get questin gDetails from Zygor guides, But you still have to
     
    a) Go through their Profiles and Make Fixes/edits to the coding that is misconfigured. It does a good job but not 100%
    b) You must go through, Get / Collect Hotpots and Questing Data for teh quests still.
    c) You must go and get Enemy ID's, Trainer Id,s All ID's are not configured for this when you import a profile
    d) You still have to go through and Blacklist Hotspots because 90% of the questing Profiles out their right now currently have bugs because people are trying to go for 1-90 full afk with Autoloading ( Which btw is a huge mistake, because your not going to want to try and bot from 40-70 without and consecutive breaks, So making profiles in sections and using them that way is alot safer in my honest opinion, But thats the way its working right now on other forums.
     
     
    *I missed lots, To tired atm
  13. Like
    Droidz reacted to Womble in "NEED" to be able to replace Backstab infront of a target.   
    Resolved it myself. My profile has a crazy amount of conditions and abilities to best simulate the optimal rotation - so I just had to wrap my head around it. It's crazy!
     
    Almost ready to release.
  14. Like
    Droidz reacted to Networkz in Networkz QProfiles Bugs & Questions   
    :D NETWORKZ HORDE QUESTING :D
     
    Hey guys, My name is (Dustin Andruchow <--- Not Chinese*) Also Known as *Networkz on HERE =D, Owned Core, Honorbuddy, Crawlerbots. I am new here But i am in the Process of Developing Questing Profiles For Horde. ( Might get to alliance *Never played it)
     
    :ph34r: Bit about myself :ph34r:
     
    - My Process will Be overall Fairly Slow. I have a Fulltime Job @ Copperline Excavating working 12 Hour days 6 days a week,
    when i come home i mabey get a 2-3 hours of profiling in a night, On a day off i like to enjoy my cofee do a bit of coding and game development as well as make some profiles for the communties that i enjoy supporting.
     
    -When i say that this is a beta it means it will be glitchy and there will be bugs, I will work on Profiles slow and i will get them as correct as i possibly can, If there are any bugs please notify me and i will do my best to take care of them and update the profiles in a timely and proffesional fassion.
     
    B) * A Bit about the Profiles i am aiming to create * B)
     
    -I am aiming for around 100% AFK
    -Full Vendor / Repair / Mailbox Support
    -1-20 *All Races and Classes *Next Few Months Hopefully.
    -NO Class QUESTS* Sorry =`( *From Level 1 - 90 )
     
    -If Necessary and There is alot of hate towards this i might try and get them going
     
     
    BELOW IS NOT FULL ACTIVE, DO NOT POST UNTIL I HAVE ADDED PROFILES TO THIS SECTION
     
    :blink: CLASSIC :blink:
     
    HORDE  - 1-20 - *No Boa *All Classes *No Class Quest *Mailbox/Vendor Support
    *LEVEL 20+ GUILD!
    ____________________________________________________________________________________________________________________
     
    ORC (1 - 8) *Roughly 1-8 *With Lvl 20+Guild  (COMPLETE) 
     
    ORC (8 - 13) *IN PROGRESS*
    _____________________________________________________________________________________________________________________
     
    BloodElf (1-5)  * No Guild Necessary ( TESTING )
     
    Blood Elf (5 - 12) *IN PROGRESS*
     
    Thanks Dustin = )
    A.k.A. Networkz :ph34r: 
    _________________________________________________________________________________________________
     
    *PLEASE USE THIS POST FOR BUG REPORTS AND QUESTIONS ONLY ! THIS IS A NEW RULE PLEASE FOLLOW !
     
    !!!!!!PROFILE DOWNLOADS :    
    Orc 1-8.xml
  15. Like
    Droidz got a reaction from Inspyr in [How To] Easy quests editor - Base   
    Easy Quests Editor
     
    For create profile with "Easy quests editor", select quester product, click on "Start" and click on button "Easy profiles creator".
     
    Tools:
    Quests editor: Here you can found quests information and what objectives WRobot need to executes (quest id, mobs position, object at pickup). Quests order editor: Here is steps of your profile, (quete1 > Pickup quest | quete2 > Pickup quest | quete2 > Pulse objective | queste1 > Pulse objective | quete1 > Turin quest | ….) NPC quests giver editor: List of Npc where you finish/start quests, this contains information about Npc (position, quests start, quests end). Others tools is optional. How works quests profile?
    I'll do a summary. So profiles are in 3 parts (Quests / Npc quests givers / list of steps order).
    WRobot reads as:
    Reading quests order |Read « Quest1>Pickup » (step 1). Search quest in list of quests | Take id of Quest1. Search in Npc quests giver which Npc starting Quest1 by quest id. WRobot go to Npc and accept Quest1. Next step, reading quest order | Read « Quest1>Pulse » (step 2). Search quest in list of quests | Pulse objective of Quest1. …. I hope it will help you to better understand how works quests profile and WRobot.
    Next tutorial:
    For continued this tutorial watch this video: http://wrobot.eu/forums/topic/3323-quest-profile-creation-video-tutorial/ (old video: http://youtu.be/NtX9WYeFwhk )
     
    If you want more information or you have a problem with a quest, post a message on MMORobot forum, tutorials more full should happen.
     
    You can found profile sample
  16. Like
    Droidz reacted to nonstop1005 in Ore and only golden lotus.   
    you could also uncheck gather herbs and add the id of the golden lotus to the harvest box
  17. Like
    Droidz reacted to Seumas in Ore and only golden lotus.   
    Black list the ID's of the unwanted herbs.
  18. Like
    Droidz reacted to Womble in Maximum Conditions   
    Nevermind I found a solution regardless.
     
    Stealth is actually up once Subterfuge begins and ends, never actually realised that until now. I assumed breaking out of stealth and triggering Subterfuge cancelled stealth but it remains so, yup lol problem solved!
  19. Like
    Droidz got a reaction from Networkz in Tapatalk Support on forums (Android/IOS/BlackBerry)   
    Tapatalk
     
    Description
    Navigating online discussion forums has never been easier with Tapatalk.

    Discover robust online communities and stay connected with your favorite forums on-the-go with this award-winning mobile app. Tapatalk is the only mobile app combining over 50,000 internet communities in a streamlined mobile experience. Fast and accessible features allow you to read posts, share photos, and keep updated on private messages in all your forum communities within a single mobile app. 

    Tapatalk aggregates content from a network of communities that cover a wide variety of interests, from automotive to parenting, gardening to hiking - You will find a forum that matches your interests full of fellow enthusiasts that share your passion.
     

     

     

  20. Like
    Droidz got a reaction from hiroptera in Atack and move in Rotation ?   
    Hello
     
    In WRobot Product Settings you can desactivate option "Manage...".
  21. Like
    Droidz reacted to amind in afk probelam   
    ok i will test
  22. Like
    Droidz got a reaction from johndeere16 in 1-90 already there?   
    Hello,   Currently I work on a wrobot guide (and fix some small bugs), when I have finish I'll work on quest profiles. I thinks this is what he misses most now (and FightClass for low level).
  23. Like
    Droidz got a reaction from johndeere16 in Player gets stuck a whole bunch   
    Read in battlegrounder Product settings it is written to remove from random queue Strand of the Ancients:
  24. Like
    Droidz got a reaction from johndeere16 in Player gets stuck a whole bunch   
    Hello,
     
    Can your share your log file please
  25. Like
    Droidz reacted to HandHurts in WRobot broken after update - "A Referral Was Returned From The Server."   
    Droidz. It was due to the update, no question.
     
    Restart did nothing.
    Setting UAC to disabled did nothing.
     
    Adding the digital cert from the wrobot.exe it-self was the only way to get the program to run.
×
×
  • Create New...