Jump to content

dirtyjobs

Members
  • Posts

    19
  • Joined

  • Last visited

Posts posted by dirtyjobs

  1. the biggest problem with mining is the way wrobot approaches the nodes. its a dead give away. i stopped mining and herbing because of it. i think the GMs on warmane rely on reports, then they flag you to be checked and will do it next time you log on. had a friend who got his bot whispered to, he logged the bot off for about a week, then logged on and started botting again and was banned in 20 mins of his log on. 

     

    the theory if u donate you wont get banned isnt true. that ban was of a paid account.

  2. Quote

    local count = GetItemCount(5350); if (count <= 1) { local name = GetSpellInfo(29975); RunMacroText("/cast " .. name) }

     

    the problem is the item id for 5350 is rank 1 conjured water. https://tbc-twinhead.twinstar.cz/?item=5350
     
    the spell 29975 is rank 8 conjured water https://tbc-twinhead.twinstar.cz/?spell=29975

    the correct spell id is 5504 for rank 1 conjured water https://tbc-twinhead.twinstar.cz/?spell=5504

    The below snippet of code will work for rank 1 conjured water. 

     

    local count = GetItemCount(5350);
    if (count <= 1)
    {
    	local name = GetSpellInfo(5504);
    	RunMacroText("/cast " .. name) 
    }
    
    
    
    after repeated attempts I couldnt get this code to work either. i ended up using the code Twineye posted above this post.
  3. so i did what the directions said and put it in the plugin folder and it shows up in wrobot and its all default settings... shouldnt it work in party chat? do you have to set what channel its supposed to be in?

     

    ((int)msg.Channel == 49 || msg.Channel == ChatTypeId.PARTY)) this is in Party chat commands.cs

     

    I notice if i say it in party chat on one of the bots it works, but if i say it on my non bot wow it doesnt work. 

    I have 4 bots making a dungeon grp with me and I'd like to be able to tell them to stop or pause while i go pull but if i have to switch over to a bot wow and say stop then, its kinda silly.

    EDIT: ok so if im not the party leader the chat commands work. so its something to do with the prefix in chat maybe? if i pass lead to a bot and say gohome all the bots hearth. glad we figured this out.

  4. I have been looking around for a guide or a hint on a way for my priest to dispel any magic off of people in a party, but i cant seem to find anything. i understand how to dispel 1 debuff specifically, but it would be way easier to just be able to dispel any magic debuff without having to make a gazillion conditions. I imagine there is a lua solution but not sure where to find that at.

    also would like to be able to know how to spellsteal as a mage or purge as a shaman too.

    any help or a point in the right direction would be great.. 

  5. Yeah I just figured it out. I swear I thought the name of the debuff was just Sleep... but it infact is "Druid's Slumber" sooo now that I have that set correctly, it is working

    edit: so i just paid attention on a pull and they cast druids slumber or sleep.. so i just set a new will of the forsaken spell with buff and sleep as the name of the buff and set it to true. not sure if thats how you do that but ill test it now. 

    edit edit: it is all working now. thanks!

  6. I have noticed that my healers always cast their heals twice. its like this bot reads the hp, then casts a heal, then reads the hp again before the cast is finished so it casts a 2nd heal which is not needed.

    I have also been working on a warlock fightclass and it tries to use the wand while the GCD is still going, so it never casts because you have to set it to only try one time otherwise the bot just spams the shoot button but it wont actually shoot anything.

    Is there a setting where I can make the time between spells longer?

  7. Ok so I have been making a priest fightclass as I level. I am getting in to wailing caverns now and i want to make it so my priest will cast will of the forsaken when he gets debuffed with sleep. I have tried using the buff condition but it doesnt work. I have searched around and I havent found anything. I am not familiar with lua or coding really. any help would be appreciated.

×
×
  • Create New...