Another Trick or Treat Bot menu

User Tag List

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 50
  1. #16
    Barrt73Rus's Avatar Banned
    Reputation
    171
    Join Date
    May 2009
    Posts
    1,273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank youu

    Another Trick or Treat Bot
  2. #17
    Eff's Avatar Active Member
    Reputation
    18
    Join Date
    Jul 2007
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the macro suggestions both of you, almost toally rewritten the bot to include them since I must agree that is a much easier method. Once testing is done I'll alter the first post

  3. #18
    xIceZero's Avatar Active Member
    Reputation
    17
    Join Date
    Sep 2009
    Posts
    95
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The code from the OP just works fine when you find yourself a lone Innkeeper somewhere in Kalimdor or Outland.

  4. #19
    okol's Avatar Member
    Reputation
    1
    Join Date
    Oct 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another minor tweak, instead of using Send() which requires the Window to be activated. You can use ControlSend() as a drop-in replacement meaning you can effectively run this in the background, and it shouldn't interfere with your open Windows or Control Focus.

    Code:
    ; ControlSend ( "title", "text", controlID, "string" [, flag] )
    ControlSend($WindowTitle, "", 0, "{ENTER}")
    	Sleep(15000)
    You can launch WOW in the background using the flags:
    Code:
    Run(GUICtrlRead($Location_Input) & "WoW.exe", GUICtrlRead($Location_Input), @SW_SHOWNOACTIVATE)
    or, if you want it to start minimised
    Code:
    Run(GUICtrlRead($Location_Input) & "WoW.exe", GUICtrlRead($Location_Input), @SW_SHOWMINNOACTIVE)

  5. #20
    benevan's Avatar Active Member
    Reputation
    45
    Join Date
    Aug 2008
    Posts
    189
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    more of these?... im just messing man this looks great

  6. #21
    DisturbingEffect's Avatar Contributor
    Reputation
    123
    Join Date
    Mar 2009
    Posts
    382
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for this!

  7. #22
    Eff's Avatar Active Member
    Reputation
    18
    Join Date
    Jul 2007
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated the first post with the new version and a few new details.

    Still a few problems to overcome, but hopefully I'll get them sorted out so wow can be run as a background process instead of stealing focus.

    I had it running in the background, but when I changed autoit to controlsend rather than send I produced:

    /run setbinding92#2,2interacttarget20

    rather than

    /run SetBinding("#","INTERACTTARGET")

    So I had to switch back until I (or someone) can figure it out

  8. #23
    gippy's Avatar Elite User
    Reputation
    436
    Join Date
    Jun 2008
    Posts
    1,323
    Thanks G/R
    293/139
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it wont target the innkeeper, i think you missed a t out :P

    it says /arget innkeeper

  9. #24
    vampire's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    the bot doesnt type my password on the login... dunno why...

  10. #25
    ynoorb's Avatar Member
    Reputation
    11
    Join Date
    May 2009
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice bot, thanks to the work putting it together

  11. #26
    spudstar99's Avatar Member
    Reputation
    12
    Join Date
    Aug 2008
    Posts
    99
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ askali
    try this ... i don't know if the $text assignment is rigth .. but the controlsend line is correct ...

    $Text = "/target inkeeper"
    ControlSend("World of Warcraft", "", "", $Text)

  12. #27
    okol's Avatar Member
    Reputation
    1
    Join Date
    Oct 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Askali View Post
    /run setbinding92#2,2interacttarget20
    rather than
    /run SetBinding("#","INTERACTTARGET")
    I encountered this when I tested it on Vista late last night, if you look at what happened, its all lowercase and your symbols have been replaced by their numerical equivalent if you don't have the SHIFT button down.

    **everyone looks at their keyboard**

    wb, you can fix this by bumping up the key delay, the default of 5ms is a bit too brutal for Vista, but XP handles it fine, add this to the top of the code:

    Code:
    AutoItSetOption("SendKeyDelay",35)
    AutoItSetOption("SendKeyDownDelay",35)

  13. #28
    Eff's Avatar Active Member
    Reputation
    18
    Join Date
    Jul 2007
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by okol View Post
    Code:
    AutoItSetOption("SendKeyDelay",35)
    AutoItSetOption("SendKeyDownDelay",35)
    I was trying that, I found an autoit function someone made called controlsendplus that seems to fix the issue in most cases and that's what it's running from now; however it doesn't fix the problem that if you use @ws_hide (I think that's correct) that wow just doesn't accept any input that I can tell anyways

  14. #29
    piller's Avatar Contributor
    Reputation
    82
    Join Date
    May 2007
    Posts
    103
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    will try it today. thank and +rep

  15. #30
    hDy's Avatar Member
    Reputation
    1
    Join Date
    Oct 2009
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works great, the bot has successfully looted for me 11 times +rep

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Bot] Trick or Treat Bot
    By chaddiablo in forum World of Warcraft Bots and Programs
    Replies: 3
    Last Post: 10-30-2010, 01:01 AM
  2. Trick or Treat AFK Bot - You can receive Treat Bags while AFK
    By Loteeh in forum World of Warcraft Bots and Programs
    Replies: 18
    Last Post: 10-25-2009, 04:31 PM
  3. [Another trick] 29twink farm SM (help from 70)
    By shorty6boy1 in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 04-07-2008, 07:13 PM
  4. Another trick or treat exploit!
    By svstoned in forum World of Warcraft Exploits
    Replies: 13
    Last Post: 10-29-2007, 05:06 PM
  5. Another trick to do in UB
    By lucaimperfect in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 09-04-2007, 10:07 PM
All times are GMT -5. The time now is 06:41 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search