Jump to content

Photogenic

Members
  • Posts

    358
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Photogenic reacted to Matenia in Screen freezes during fight   
    You lock them using C#, you can't do it in the XML editor.
  2. Like
    Photogenic reacted to Lbniese in Bug: Wrobot identify BG que as whisper   
    You should go ahead and do so and if it persists on other servers too Droidz might be willing to push a fix
     
    EDIT: Make sure it's not an addon like ChatSounds or something like that that could do some kind of interference. 
    So be sure to try a fresh wRobot install without plugins etc + WoW with all addons disabled.
     
    Check eventually this post:
     
  3. Like
    Photogenic reacted to Lbniese in Bug: Wrobot identify BG que as whisper   
    Have you tested if it is expansion or server specific? If wRobot reacts like that for all servers with your expansion (I assume it's TBC) you could go ahead and open a bug report ?
  4. Like
    Photogenic got a reaction from Dreamful in How do you create a very simple Move To profile?   
    Using Questing Profile :
    NOTE: you don't have to create quests or anything, once you open Easy profile creator, from tools, open (Quest Order Editor).
    Add Action using ( + ) Now Action type is (RunCode) it will end up like the following:
     
    Step [1]: RunCode
    This means it will run you to this exact position no matter where you are. Ofcourse, must be in the same Map zone (Outland vs Eastern..etc)
     
    How to find that position ?
    Go to the position you desire first. Now, using Easy Quests Editor > Tools > Helper tools > My position.
    You replace your position with this part:
     
    You do not have to record point (A) this will take you to point (B) regardless. Hope that helps..
  5. Thanks
    Photogenic got a reaction from doped0c in Bot not using water?   
    Did you check "use drink" ? because drink is not like food, it requires you to check the box. Also just in case, make sure you write the name without these special letters [ and ] and no spaces.
  6. Like
    Photogenic got a reaction from masamyyris in Why isnt my fight class working?   
    I haven't tested, but try this.
    warlock masa-Edited.xml
  7. Like
    Photogenic got a reaction from Stiletto in Gatherer + Flying   
    From general settings, did you enable (Harvest Minerals) ? also, the search enemy nearby set to 3 by default I assume. Sometimes, you might wanna put it like 5-6 if your toon can handle it.
  8. Thanks
    Photogenic reacted to Apexx in Wand Use & IsAutoRepeatAction(slot)   
    For anyone having issues with using the Wand Shoot ability, here is a snippet for you:
    // Test if player has a wand in the proper equipment slot | In Combat if (ObjectManager.Me.GetEquipedItemBySlot(wManager.Wow.Enums.InventorySlot.INVSLOT_RANGED) != 0 && ObjectManager.Me.InCombat && !ObjectManager.Me.GetMove) { // Wand Shoot if(Lua.LuaDoString<int>("isAutoRepeat = \"\"; isAutoRepeat = 0; local name = GetSpellInfo(5019); if IsAutoRepeatSpell(name) then isAutoRepeat = 1 end", "isAutoRepeat") == 0) { // Spammable Shoot Macro Lua.RunMacroText("/castsequence !Shoot, !Shoot"); } }  
  9. Thanks
    Photogenic reacted to camelot10 in Add new step in middle of other steps   
    i split long profiles into chain of small profiles with 50-100 steps. saves alot of time
  10. Thanks
    Photogenic reacted to Matenia in Add new step in middle of other steps   
    You have to use the quest editor, then add the step manually in the XML and reload it in the editor.
    There's no way in a quest profile with 500+ steps to do it any other way. Anyone who's used a quester for a good amount of levels before will tell you the same.
  11. Thanks
    Photogenic reacted to reapler in Difference between Friendly and Hostile targets condition   
    Hello, i've created a small example how to use the c# code: heal.xml
    Because reactions are ordered you can use it like this:
    wManager.Wow.ObjectManager.ObjectManager.Me.TargetObject.Reaction > Reaction.Neutral  
  12. Thanks
    Photogenic reacted to Matenia in Bot bug sometimes..mount / dismount   
    Should be a latency problem. From what I understand about the source code, the bot sleeps while mounting and doesn't cast any actions until the sleep is over.
    The time to sleep is calculated based on latency, so it checks in <latency> intervals if it needs to sleep for another interval.
  13. Thanks
    Photogenic reacted to kawanin in Multiple Questions (Quest Order Editor / Conditions)   
    PulseAllInOne: bot will pick up, pulse and turn in the quest.
    MessageBox: bot will stop and show up messagebox
     
  14. Like
    Photogenic reacted to OMGhixD in IGNORE mine/herb when Elite nearby   
    i was completely aware that he only wants to avoid the Elite mob. But this is the only thing i could think of. Meaning you'd have to sacrifice all mobs.
  15. Thanks
    Photogenic reacted to camelot10 in [Solved] Bot mark quest as complete when failed.   
    put complete condition check for objective
  16. Thanks
    Photogenic reacted to Avvi in IGNORE mine/herb when Elite nearby   
    This isn't t he most elegant thing, but you get the idea:
     
    var ElitesNearMe = ObjectManager.GetWoWUnitHostile().FindAll(p => p.GetDistance <= 10 && p.IsElite); if (ElitesNearMe.Count > 0) { // blacklist node }  
  17. Like
    Photogenic reacted to ScripterQQ in Rogue Poisons/Item usage   
    Hello, I'm trying your plugin on Battleground but doesn't work. In the settings i put in the fields "Wound Poison" and "Crippling Poison" with quotemarks, but it doesn't apply them. I tried without quotemarks and it says it "maybe no items in bag", so I assume the quotemarks are necessary.
    I read the lua code and if I'm not wrong it doesn't apply if is mounted or is moving or is in combat. So I tried to manually dismount while out of combat, to see if it will apply poison but nothing, it runs by feet a bit without mount then stop, and mount again. I was hoping that the moment he stops he would apply poisons before mounting but doesn't happen. Same for when I start the bot while standing still, out of combat. It takes a while to start, then the first thing it does is mounting..
    Any idea about what could be the reason? I don't see any "print" white message in chat so I assume the settings are ok.
  18. Like
    Photogenic got a reaction from Matenia in casting mage water?   
    So you can make water but you want to stop it from spamming.
     
    Use condition Item count, and use for example Smaller or equal to 60, so that it casts it when its less than 60. Use item ID.. How to get Item ID ? if you click on development tool, then you click on bag memory info. It will bring the ID numbers of each item exists in your bag. So make some water, do that, get the ID.
     
    or you could use Lua script condition.. see the following link
     
     
  19. Thanks
    Photogenic reacted to kawanin in Need help with Questing Profile   
    maybe this way
    Disrupt Their Reinforcements.xml
  20. Thanks
    Photogenic reacted to kawanin in Need help with Questing Profile   
    helfire test.xml
  21. Thanks
    Photogenic reacted to kawanin in Need help with Questing Profile   
    hello,
    1.) You have to make 2 different quest with same quest id, one for metal and one for wood.
    2) As I know there is no option for this problem. But if you are tricky, you can. If you setup to do "work for horde" first, then it will kill mobs around metal and wood
    3) in quester there is "killandloot" type of quest, there you have to use item id and mob id
    you can use quests database for easy quests like kill, gather, follow and so on: 
     
  22. Thanks
    Photogenic reacted to Droidz in How to stop mount in grinding zone?   
    hello, put bigger mount distance
  23. Thanks
    Photogenic reacted to OMGhixD in How to stop mount in grinding zone?   
    The mount distance would be appropriate. I'm unaware of the value as you have to calculate that from your route
     
    i recon u gotta do the maxdistance from route radius
    My bad. yes it should be bigger.
  24. Thanks
    Photogenic reacted to Matenia in How to use Rogue Poisons?   
    Other people who come here and ask questions are generally willing to put in some time and effort into understanding. I am not asking you to become a programmer. I am not asking you to study software engineering. I am asking you to invest (once!) 2-3 hours to understand the very, very basics, so that you can read/understand (very roughly) the code snippets you are given, as opposed to expecting others to do work for you.
    I know this isn't too much to ask for, because it's no more complicated than learning the fightclass editor (in fact, it's less complicated, because it requires less logic). I also know this isn't too much, because plenty of other people on here and Discord have managed - with zero knowledge - to make something of the code snippets.

    I am not coming at you, but if I didn't feel a general unwillingness to learn, I wouldn't have said anything. Consider this constructive feedback, as I am still trying to help you.

    This one, simple article covers everything you need to know. You'll be able to understand what it is that you're actually doing and the next time someone gives you code that isn't copy-pastable but still correct, you'll know how to apply it.
  25. Thanks
    Photogenic reacted to Matenia in How to use Rogue Poisons?   
    private bool HasMainHandEnchant() { return Lua.LuaDoString<bool>("hasMainHandEnchant, mainHandExpiration, mainHandCharges, hasOffHandEnchant, offHandExpiration, offHandCharges = GetWeaponEnchantInfo();", "hasMainHandEnchant"); } This is the C# code I use to determine whether the mainhand is enchanted (has a poison).
    The Lua is right in there. You can choose yourself which language to use.
×
×
  • Create New...