Jump to content

Avvi

Members
  • Posts

    397
  • Joined

  • Last visited

Reputation Activity

  1. Haha
    Avvi got a reaction from ScripterQQ in Preventing an istant spell to be casted (UNIT_SPELLCAST_SENT)   
    Technically Holy Nova is a Holy spell and PW:S is a discipline spell :) SO THERE'S A DIFFERENCE!!!
  2. Thanks
    Avvi 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"); } }  
  3. Like
    Avvi got a reaction from eeny in BOT wont Work   
    I'm just going to vent, because posts like this irritate me.
    Things that accomplish nothing when creating a thread like this. 
    We have no way to troubleshoot this issue because no logs were provided Nobody else is reporting issues, so the issue is obviously on YOUR side of things. You call it 'Stupid BOT', but at the same time you even admitted that it has been working for 6+ months. How can you demand your money back AND at the same time in the same statement admit that it's been working perfectly fine up until recently.  I suggest that if you WANT help and or WANT to provide constructive criticism, that you do so in a way that is helpful for everyone involved. Posts like this just make you seem like a jerk, and pretty much makes everyone else reading this not want to help you.
    Here are the things you can try (and something EVERYONE should try) before submitting a post like this. And because you didn't report that you did, I will link to the page for you to run through some troubleshooting steps. Once you have done that, please provide some logs.
     
    And some additional questions. 
    Are you running Skype? Do you use Teamviewer? Do you have an NVIDIA graphics card that has some sort of overlay on? Disable/Turn off the above and restart the bot.
     
    If all else fails PLEASE provide the logs so that we , as a community, can troubleshoot your issues. How to collect logs, can be found below: 
    Thanks
     
     
  4. Like
    Avvi got a reaction from Kikkass in [Request] [Plugin] - Realm/Server Hop   
    I will make this. :)
  5. Thanks
    Avvi got a reaction from Photogenic 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 }  
  6. Like
    Avvi got a reaction from BetterSister in Error   
    I was not able to replicate this on my machine - Running Windows 10 tried both BC / Vanilla / Retail versions of the game.
  7. Thanks
    Avvi got a reaction from Photogenic in Bot skip spells   
    I believe you can add a check to see if the other spell is on a cooldown at that point.
  8. Like
    Avvi reacted to reapler in Heals Casting Twice With Timer   
    Hello, you can use the "ObjectManager" and filter it with linq.
    I guess it will be used often, so I've made a method for it:
    /// <summary> /// Get attacking units from another unit /// </summary> /// <param name="from">Take hostile units from this unit</param> /// <param name="maxRange">Take hostile units within this range</param> /// <returns></returns> public List<WoWUnit> AttackingUnits(WoWUnit from, float maxRange = 10) { return ObjectManager.GetWoWUnitHostile().Where(i => from.Guid == i.TargetObject.Guid && from.Position.DistanceTo(i.Position) <= maxRange ).ToList(); } and use it in another method:
    if (condition1 && ... && AttackingUnits(ObjectManager.Me, 15).Count < 3 ) { //cast spell }  
  9. Thanks
    Avvi reacted to vegeta87 in can you multiple session with private server?   
    nice Ill  get to work, btw avvi ur fightclass was good for my 1-70 firsat wrbot  char!
  10. Like
    Avvi reacted to Floood0 in Log PM messages   
    Yep, but a prefer to have logs instead spammed email
  11. Like
    Avvi got a reaction from piff813 in How many instance of WoW Can Wrobot run?   
    WRobot FOR PRIVATE SERVER
    Gives you access to WRobot FOR WOW PRIVATE SERVERS and all its products, unlimited WRobot sessions on the same network (ip).

      WRobot Unlimited Subscription Gives you an access to WRobot and all its products, unlimited WRobot session on the same network (ip).  
  12. Like
    Avvi reacted to Photogenic in [Solved] Sound on whisper, death, say!   
    where is it ?
  13. Like
    Avvi reacted to reapler in how to conventers?   
    Hello, @hakancamli WRobot has in in "Quester" product under "Product Settings" on the left pane a button called "Easy profiles creator".
    After you have opened it, click on Tools > Helper Tools. Now you may scroll down and click "Buddy to WRobot".
    It's not guaranteed that the profile will work correctly, since used classes, methods or bot behavior can vary.
     
     
  14. Like
    Avvi reacted to eeny in Obliterate automation   
    You sir... are the man.
     
    Attached for the (other) lazy people is a quest profile that does the same thing...load up easy obliterate and oblivion and make sure easy obliterate has "auto select" enabled.
    Not the fastest thing... reliable tho.
    OBLIVION.xml
  15. Like
    Avvi reacted to reapler in Killing another characters tags?   
    Hello, you can try my new plugin:
     
  16. Like
    Avvi reacted to Droidz in How do I change my forum review rating?   
    is done
  17. Like
    Avvi reacted to VortexZone in Bot don"t start (button start) WARMANE   
    Finnaly the answer I was looking for everywhere on this forum and never found it till now.The reason it did not work was so simple its funny,but noone ever recommended to CLOSE SKYPE.....omg that was the issue all along.Now I am just gonna work on the settings,so it's gonna be harder to spot.
×
×
  • Create New...