Jump to content

eeny

Elite user
  • Posts

    987
  • Joined

  • Last visited

Reputation Activity

  1. Like
    eeny got a reaction from Jechtshot in World Quests profiles   
    i should totally make a tutorial on this!
    Ok,  so lets say you have a quest with 3 quest objectives.... first is kill boss, second is kill 10 minions third is free 3 slaves.
    Objectives 1+2 are easy kill and loot quest pulses.. the third is an interact with target / gather depending on the quest.  
     
    What i do is actually make 3 different quest entries. instead of 1 quest with 1/10/3 objectives respectively i make 3 quests with 1/0/0 second with 0/10/0 and third with 0/0/3 objective count.  you need to pulse all 3 Wrobot quests and each quest will have a different name (i suggest QuestNameObj1, QuestNameObj2, QuestNameObj3 and so on...).  you may end up with several pulses to complete the one (WoW)quest, but for a complex quest you get a complex solution....
  2. Like
    eeny got a reaction from Jechtshot in World Quests profiles   
    See the attached profile an as example. its Azsuna's " a cleansing cocktail" world quest.
    Objective 1- (Kill and loot) 5 Fatty bear steaks
    Objective 2- collect(gather) 7 eggs
     
    Obviously these wont work in 1 pulse( The quest pulse is just too different ), so spilt the quest into 2, manipulate the quest objectives to have one quest pulse complete after the first objectivee is finished and another finish after the second is finished.  you end up with the quest finished, just a bit more work,
    Azsuna_daily's_backup.xml
  3. Like
    eeny got a reaction from tonycali in Quest Tutorial Video: Basic Concepts Grind till lvl   
  4. Like
    eeny got a reaction from Garub 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.
     
  5. Like
    eeny reacted to dblbacker2200 in attack dead object (log attend )   
    I think I have found the solution. I did 2 things and the bot is no longer targeting these dead mobs
     
    I removed Silverpelt Charger and Silverpelt Doe from the NPC to kill list on the grinding profile
    I also turned off the option to attack before being attacked.
     
    Hope this helps cn3588
     
  6. Like
    eeny got a reaction from Shariis in Quest profile creation video tutorial   
    So, i had a few drinks and decided that a quest profile creation tutorial was in order.
     
    Result:  
     
     
    Chain Quests and Gathering 
     
    Hope this helps...someone, might make a better one
  7. Like
    eeny reacted to iMod in Use Item with AoE   
    i'm not sure if i understood the question right but if you want to use such items or spells here is an example in c#
    ClickOnTerrain.Spell(SpellID, this.Me.TargetObject.Position); ClickOnTerrain.Item(ItemID, this.Me.TargetObject.Position); I think it is not possible to auto detec if the item needs a cursor or not but i never took a look at such scenario.
  8. Like
    eeny got a reaction from BetterSister in Bot dosent attack   
    Log file from the bot session and the profile itself are needed to help here.

    There are too many reasons why i might not be working- will be faster if you give the information up front.  Im a sucker for getting things working, if i cant see why you profile doesnt work i usually just try make a new one that does.
     
    same result for you tho...
  9. Like
    eeny reacted to camelot10 in add scenario support   
    something like that
    public static class Scenario { public static bool IsStepComplete(int step) { return (Lua.LuaDoString("local _, _, numCriteria = C_Scenario.GetStepInfo(); if not numCriteria or numCriteria == 0 then completedObj = 'true'; return; end; local critID; _, _, completedObj,_,_,_,_,_,critID = C_Scenario.GetCriteriaInfo("+step.ToString()+"); ", "completedObj").ToLower() == "true"); } }  
  10. Like
    eeny reacted to Hanke in Got a good gold making profile need some help   
    If you can specify exactly what you want, you'd probably get more response. I assume you want to make the pathing seem more human?
  11. Like
    eeny got a reaction from BetterSister in WRotation - Am I too stupid?   
    No,, just the person who wrote that second fight profile is an ass sometimes.  im guessing your pally is low lvl?
    I think most of the fight classes for pallys are for lvl 30+ so instead of crusader strike the profiles use zeal.  you dont have that yet so you cant cast it.
     
    try this one till you get zeal
    Lowbie Legion Ret pally by Eeny.xml
  12. Like
    eeny got a reaction from Hanke in Getting started with WRobot video   
    It's a burner key from droidz... He should have disabled it
  13. Like
    eeny got a reaction from ivanbss in INVASION Farm   
  14. Like
    eeny reacted to Droidz in Bot attacking dead npc   
    Thank you, if you can wait next update. Problem is resolved.
  15. Like
    eeny got a reaction from BetterSister in game currently used by bot   
    Just press "yes" and continue with what you were doing before.  I have never had adverse effects that i know of by doing that.
  16. Like
    eeny got a reaction from ivanbss in INVASION Farm   
    I'm using relogger with a grinder profile that has most of the demons added to it.  relogger has the bot running 10 mins then 2 mins off and i set it to loop.
    This profile is for horde .. you can prob figure how to make your own (all the targets are not added yet) on this one
     
    EDIT: you need to select "close wow on wait"
    AZSHARA.xml

  17. Like
    eeny reacted to Droidz in 50FPS - Too high FPS?   
    For general WRobot usage, 15 fps is too low to works fine. But you can run this command in wow chat (or create macro) to put quickly maxfps at 15:
    /run SetCVar('maxFPS', 15); SetCVar('maxFPSBk', 15);  
     
     
  18. Like
    eeny reacted to Droidz in Custom quest pop-up   
    Hello, try to use lua macro (not code):
    /click QuestChoiceFrameOption1.OptionButton Or lua code (not macro): (https://github.com/tomrus88/BlizzardInterfaceCode/blob/f53f4cadda882fa4cfce60d9b5ae1e1409faa022/Interface/AddOns/Blizzard_QuestChoice/Blizzard_QuestChoice.lua#L93 )
    QuestChoiceFrameOptionButton_OnClick(QuestChoiceFrameOption1) or
    SendQuestChoiceResponse(1); HideUIPanel(QuestChoiceFrame);  
  19. Like
    eeny reacted to Droidz in Quester sometimes decides to double pulse.   
    In step I have added step (to check if all scenario step is complete before exit dungeon), if any no complete step, wrobot return to pulse.
    Eeny_Slagmines_EDITED.xml

     
    ps: I have added fake quest (ProfileHelper) with c# function GetScenarioCriteriaInfo (I use this function instead lua code in "Is complete condition")
  20. Like
    eeny got a reaction from Lord in Getting started with WRobot video   
  21. Like
    eeny got a reaction from Dreamful in Getting started with WRobot video   
  22. Like
    eeny got a reaction from kilimich in Relogger Tutorial Video   
  23. Like
    eeny got a reaction from BetterSister in Getting started with WRobot video   
  24. Like
    eeny got a reaction from loves2spooge in Relogger Tutorial Video   
  25. Like
    eeny got a reaction from Droidz in Getting started with WRobot video   
×
×
  • Create New...