Jump to content

Krack3n

Members
  • Posts

    9
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Krack3n reacted to Dreamful in stuck at selling   
    Thats the point mentioned couple days ago, the problem is here the NPC DB. The Whole concept of this NPC DB is a bit stupid, the Bot dosent know if we can Buy Food & Drinks and that "XXX" Vendor, it should be reworked.

    If you level, this Bot is really useless if it comes to buy Drinks & Food on a Vendor.
     
    Droidz should be make a Option if we want use the NPC DB or not, and just use the Vendors thats be added in the Profile. Otherwise recoding the NPC DB and add values, so the bot knows i cant buy food at a Repair Vendor lol.
     

     
  2. Like
    Krack3n reacted to eeny in Dungeon Profile creation tutorial video   
    Eeny_RFC.xml
  3. Like
    Krack3n reacted to Droidz in wow client just updated   
    WRobot support now wow build 22345, (re)launch WRobot and accept udpate.
  4. Like
    Krack3n reacted to Droidz in WoW crash   
    Hello, (re)install  SlimDX (4.0 X86) and Redistributable Visual C + + 2010  (X86).
  5. Like
    Krack3n reacted to Droidz in Product (bot) sample project (developer only)   
    It is Visual studio 2015 project (you need to add in project references "robotManager.dll" and "wManager.dll", you can found in in folder "WRobot\Bin\") (base product file is "Main.cs").
    Grinder.zip
  6. Like
    Krack3n reacted to Droidz in How do I embed spells / items on these forums?   
    Hello, I have added openwow support
  7. Like
    Krack3n reacted to wlhr in Fight class   
    warlock fighting class is uploaded, enjoy!
  8. Like
    Krack3n reacted to Droidz in Download WRobot beta for Wow Legion 7.0.3 PTR server   
    WRobot beta support now last wow ptr version (wow 7.0.3.22248). Legion pre-patch is coming soon: http://www.wowhead.com/news=254192/the-legion-pre-expansion-patch-arrives-july-19
  9. Like
    Krack3n reacted to BetterSister in 3.3.5 WOTLK Northrend Profiles   
    Don't share it on thread post it at downloads 
  10. Like
    Krack3n reacted to KevinVapes in My Expierence With WRobot   
    Exactly, build up your trust in this community and then you can offer help. Trust via internet is paperthin.
    P.S: Im still not weird @BetterSister! :P
  11. Like
    Krack3n reacted to Username in My 5 days with WROBOT   
    You really need to make your own profiles to be successful with this bot. In a lot of ways you have to put in more work to bot than to just play the game. Once you get profiles of your own made, the bot will work much better. Most of the profiles listed in the downloads section are complete trash except eenya's.  I found them to have good quality, but still need some babysitting. This is not a bot for lazy botters, but once you put in the work you have lower ban chance because noone else is using your profiles. The reason I think honorbuddy is banned so much is because you have so many people using the exact same profiles. It must be easy to detect that.
  12. Like
    Krack3n reacted to BetterSister in Quest Tutorial Video : Basic Concepts Kill and loot   
    With my programming and botting background i always go through every option before starting to work on something :D makes life way easier that way 
  13. Like
    Krack3n reacted to eeny in Quest Tutorial Video : Basic Concepts Kill and loot   
    Still practising making videos -  how to create a quest profile (Basic)
  14. Like
  15. Like
  16. Like
  17. Like
    Krack3n reacted to Bugreporter in Question about WRotation   
    Normaly its not nessesary, if you have a good fightclass. The Fightclass can detect if there was one or more targets (If the Programmer of the Fightclass know what he do).
     
    HostileUnitNear do the job.
     
     
  18. Like
    Krack3n reacted to Arcangelo in Frost nova, Mage   
    Gratz with post number 200 !

     
     
    Add some more conditións for the spells, you need to be really specific about when to use what spell, so the bot don't get confused
  19. Like
    Krack3n reacted to Runaro in [Request] Flight form   
  20. Like
    Krack3n reacted to Micktoon in [Job] Create community logo   
    My composition : 
     
     

  21. Like
    Krack3n reacted to KevinVapes in WRobot no response   
    I should open my eyes next time >,<. Thank you guys! Much appreciated! I will try it out, if it still crashes anytime i will report back :)
  22. Like
    Krack3n reacted to Bugreporter in Iron Trap (How to use it)   
    It works fine in wrotation, but not in grinder, because the mobs mostly doesn't stand still in the trap (i.e. Talbuks) You need the barn in your Garrison It's optional and off by default You need to add the ID of the mobs you want to catch to the Variable KillBeast. (wowhead.com and the Development tools/Target Info will help)  
    This  code enable the Iron Trap in your Fightclass. Happy farming
    <FightClassSpell> <SpellName>--Iron Trap</SpellName> <FightClassConditions> <FightClassCondition> <ContionType>LuaScript</ContionType> <Param xsi:type="FightClassConditionLua"> <LuaScript> local function UseContainerItemByName(search) --[[ needed below ]] local found=nil; for bag = 0,4 do for slot = 1,GetContainerNumSlots(bag) do local item = GetContainerItemLink(bag,slot) if (item and item:find(search)) then if (GetContainerItemCooldown(bag,slot)==0) then UseContainerItem(bag,slot) found=1; end end end end return found; end if not (IsStealthed()) and UnitExists("target") and not UnitIsFriend("player", "target") then local guid=UnitGUID("target"); local type, zero, serverId, instanceId, zoneId, npcId, spawnUid = strsplit("-",guid); npcId=tonumber(npcId); --[[ Add your Mob-IDs to the list ]] local KillBeast="87021,87020" --[[ list of ID's of Mobs to trap, comma seperated ]] local maxHealth=95; --[[ start Trap at 95% of health for non-elite Mobs ]] if (UnitClassification("target") == "elite") then maxHealth=55 --[[ start Trap at 55% of health if it is an Elite Mob ]] end if not (UnitIsPVP("target")) and ((UnitHealth("target") / UnitHealthMax("target") * 100) &lt; maxHealth ) and (string.find(','..KillBeast..',',','..npcId..',')) then if (UnitName("player")==UnitName("targettarget")) then --[[ no Ninjaing, my Mob, my target, my trap ]] result=true if not (UseContainerItemByName(":115010:")) then --[[ Level 3 Trap must be equiped and ready]] if not (UseContainerItemByName(":115009:")) then --[[ Level 2 Trap .. ]] if not (UseContainerItemByName(":113991:")) then --[[ Level 1 Trap .. ]] result=false end end end else --[[ the fight is over, or another User Fight to them ]] ClearTarget(); end end end </LuaScript> <VarRet>result</VarRet> <ValueRet>true</ValueRet> </Param> </FightClassCondition> </FightClassConditions> <Priority>99</Priority> <CheckIfKnowUsableDistance>false</CheckIfKnowUsableDistance> <CheckIfView>false</CheckIfView> <AddToSettings>true</AddToSettings> <NotSpellIsLuaScript>true</NotSpellIsLuaScript> </FightClassSpell>
  23. Like
    Krack3n reacted to BetterSister in Wait or pause in Runcode   
    Alright it will look like this:

    Change the coords step to your destination coords. (it's setup for redridge mountains inn)
    While step:
    ObjectManager.Me.Position.DistanceTo2D(new Vector3(-9223.98f, -2157.12f, 63.73089f)) > 5 && ObjectManager.Me.Position.DistanceTo2D(new Vector3(-9223.98f, -2157.12f, 63.73089f)) < 100 Change the coords for the Inn keeper location and ID(6727) for NPC ID (you can get them from helper tools > target info)
    RunCode:
    wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(new Vector3(-9223.98f, -2157.12f, 63.73089f), 6727, 1, false); below add RunMacroLUA:
    /click StaticPopup1Button1 after this all add EndWhile. If it still is too fast for you (never had issues with this setup) add action type step Wait with 2000 ms after runcode
  24. Like
    Krack3n reacted to Arcangelo in Leveling profile adventure Horde   
    What we really need to get the bot running is some mean a** leveling fighting profiles, as they REALLY makes the whole diffent.
    I remember when i used VanillaBot on nos wow, i had a hard time duoing anything with my feral druid untill i made a crazy profile for it, where i changed form healed with dots in fights, and used the skillz in the right order, after that i did 30 + soo much easier with like 95 % less deaths. And again that was VanillaBot i have no idea if you have ever tried it, but man the bot sucked biiiig time compared to this :D
  25. Like
    Krack3n reacted to BetterSister in Leveling profile adventure Horde   
    Damn you're not even close to as stupid as i look. Great to have someone like you here!

×
×
  • Create New...