[iPlay] Mutli-Tool (Automatic LUA DPS Bot, Auto kick, Dungeon/Battlegroud Alert) menu

User Tag List

Page 2 of 9 FirstFirst 123456 ... LastLast
Results 16 to 30 of 125
  1. #16
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's a very good program. A view distance hack would be an interesting addition.

    The Shadowpriest script also needs a way of preventing VT from being recast, as it's trying to apply twice due to the expire duration not updating immediately because of lag. A throttle on the script's update frequency would solve the problem, but would obviously also slow the script's reaction time.

    [iPlay] Mutli-Tool (Automatic LUA DPS Bot, Auto kick, Dungeon/Battlegroud Alert)
  2. #17
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    It's a very good program. A view distance hack would be an interesting addition.

    The Shadowpriest script also needs a way of preventing VT from being recast, as it's trying to apply twice due to the expire duration not updating immediately because of lag. A throttle on the script's update frequency would solve the problem, but would obviously also slow the script's reaction time.
    Yeah but i don't know how to make a view distance hack, sorry

    About the refresh freq, i'll add a slider to change update frequency, but it seems to be a recurrent problem with castable dots (same shit with my lock event with 1000ms debuff check)

    EDIT: New version 0.3, added option panel for DPS/KICK frequency.
    Last edited by Vandra; 11-10-2011 at 06:54 PM.

  3. #18
    Pitman1989's Avatar Private
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just came across another problem using the BG/Dungeon alert, apon leaving an instance/battleground with it injected the client crashes but you've resolved the earlier problem pretty fast

  4. #19
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Pitman1989 View Post
    Just came across another problem using the BG/Dungeon alert, apon leaving an instance/battleground with it injected the client crashes but you've resolved the earlier problem pretty fast
    It can't be related to queue check, but i'll take a look tomorrow ;p

    A view distance hack would be an interesting addition.
    Will be added next update !

  5. #20
    Ssateneth's Avatar Contributor
    Reputation
    142
    Join Date
    May 2008
    Posts
    866
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does this bot/tool/hack/whatever allow casting something like Blizzard and Death & Decay on a target of your choice? I've been looking for something like this for ages, and Chaotic was working on it for NoAddiction (Doesn't work anymore obviously) before he disappeared.

    I already have my own scripts. It's just that for some automation like D&D for unholy DK on single target, pet freeze for frost mage, and the like is nigh impossible to do without some sort of human interaction (clicking the 3d world).

    WTB CastAOESpellByName() and CastAOESpellByID()

    CastAOESpellByName("Death and Decay","target")

    Also about Cast-time DoTS/debuffs: You can do some funky lua to prevent a recast unless it actually didn't go off. An example is to check what you're casting, and if it's Vampiric Touch, store the time somewhere. As long as the current time minus the stored time is less than a certain value (say 0.8 sec) it won't cast VT.
    Last edited by Ssateneth; 11-10-2011 at 09:45 PM.
    KuRIoS is awesome!

  6. #21
    sniko's Avatar Private
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does it work on v 4.06 ? if yes why there is no wow process in list when start program

  7. #22
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ssateneth View Post
    Does this bot/tool/hack/whatever allow casting something like Blizzard and Death & Decay on a target of your choice? I've been looking for something like this for ages, and Chaotic was working on it for NoAddiction (Doesn't work anymore obviously) before he disappeared.

    I already have my own scripts. It's just that for some automation like D&D for unholy DK on single target, pet freeze for frost mage, and the like is nigh impossible to do without some sort of human interaction (clicking the 3d world).

    WTB CastAOESpellByName() and CastAOESpellByID()

    CastAOESpellByName("Death and Decay","target")

    Also about Cast-time DoTS/debuffs: You can do some funky lua to prevent a recast unless it actually didn't go off. An example is to check what you're casting, and if it's Vampiric Touch, store the time somewhere. As long as the current time minus the stored time is less than a certain value (say 0.8 sec) it won't cast VT.
    Any LUA unlocker can do this:
    Code:
    CastSpellByName("Death and Decay")
      if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end  
      return true
    This will cast Death and Decay at your mouse position.
    And thanks for your tip about casted dots, i'll check this later

    Does it work on v 4.06 ? if yes why there is no wow process in list when start program
    I only support official latest release, sorry dude
    Last edited by Vandra; 11-11-2011 at 06:12 AM.

  8. #23
    Ssateneth's Avatar Contributor
    Reputation
    142
    Join Date
    May 2008
    Posts
    866
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vandra View Post
    Any LUA unlocker can do this:
    Code:
    CastSpellByName("Death and Decay")
      if SpellIsTargeting() then CameraOrSelectOrMoveStart() CameraOrSelectOrMoveStop() end  
      return true
    This will cast Death and Decay at your mouse position.
    And thanks for your tip about casted dots, i'll check this later


    I only support officiel latest release, sorry dude
    I already know about the camera thinger, but it requires me to always have my mouse cursor on the ground underneath my enemy. I read something about sending a packet for the aoe cast somewhere, but doesn't seem like anyone got around to it.
    KuRIoS is awesome!

  9. #24
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ssateneth View Post
    I already know about the camera thinger, but it requires me to always have my mouse cursor on the ground underneath my enemy. I read something about sending a packet for the aoe cast somewhere, but doesn't seem like anyone got around to it.
    I don't know how to do this, sorry


    New version
    - 0.4
    Some fixes'
    Added Trackall hack
    Added remove zoom limit hack
    Added basic frost DK Script (testings)
    Improved the chat window (you can now use it as in you're ingame(/w someone Hello there !))
    I still need you to make profiles for classes or tell me what functions i should add !

  10. #25
    wowbrandon123's Avatar Member
    Reputation
    1
    Join Date
    May 2011
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can warden detect this and this is a 'use at your own risk' kind of program? or is it stealthy

  11. #26
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Warden isn't scanning any used offsets for now, but this could change.

    Also, huge update, check first page, morphing and stuff.
    Last edited by Vandra; 11-22-2011 at 03:00 PM.

  12. #27
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    changelog:

    1.1:
    Updated for 4.3.0.15005
    Added NPC moving feature.
    Added NPC rotation feature.
    Added Automatic flag returner. (Works only with english client, tell me your flag's name if you want me to add them)
    Added all races ID's to the morpher.
    You now save your morphs to a file.

    Little video:


    Download

  13. #28
    Anonie's Avatar Knight-Lieutenant
    Reputation
    58
    Join Date
    Nov 2010
    Posts
    281
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Throws an exception when I try to inject the new version.

  14. #29
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    DirectX9, close xfire if you have it.

    If this still not work let me know :>

  15. #30
    ossuaire's Avatar Active Member
    Reputation
    16
    Join Date
    Jan 2009
    Posts
    65
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    when i sue /dps on it say <iPlay> DPS Enabled. but nothing happen?

Page 2 of 9 FirstFirst 123456 ... LastLast

Similar Threads

  1. [WoW] Tool Pack [Spam Bot, Auto Login etc.]
    By marco1234 in forum World of Warcraft Bots and Programs
    Replies: 24
    Last Post: 05-17-2009, 11:45 PM
  2. [Free Bot/Radar] MMOExtreme, All 12 Classes Ready to bot (Auto Combo!)
    By Hyru in forum Age of Conan Exploits|Hacks
    Replies: 34
    Last Post: 01-18-2009, 04:26 AM
  3. login plus anti afk bot(Auto IT)
    By Monkeyy in forum World of Warcraft Bots and Programs
    Replies: 11
    Last Post: 10-15-2008, 11:31 PM
  4. WoW Auto Travel Bot (auto It)
    By omgwhokillme in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 01-19-2007, 05:03 PM
  5. Fishing Bot! (Auto-It)
    By janzi9 in forum World of Warcraft Bots and Programs
    Replies: 6
    Last Post: 05-18-2006, 10:23 PM
All times are GMT -5. The time now is 02:53 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search