Alterac AFK Bot with Waypoints menu

User Tag List

Page 7 of 60 FirstFirst ... 3456789101157 ... LastLast
Results 91 to 105 of 886
  1. #91
    KiLLerBoy_001's Avatar Member
    Reputation
    7
    Join Date
    Mar 2008
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Finnally no more required to right clikc and run as administrator

    just added #Requireadmin at the top for vista users

    Alterac AFK Bot with Waypoints
  2. #92
    skriklasse's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hm "Error: Subscript used with non-Array variable?"

  3. #93
    dubbledutch's Avatar Member
    Reputation
    1
    Join Date
    Aug 2006
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    None of the links work Gutted, i wanted to try this. can anyone send it to me?

  4. #94
    Flos's Avatar Member
    Reputation
    49
    Join Date
    Feb 2008
    Posts
    146
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by skriklasse View Post
    Hm "Error: Subscript used with non-Array variable?"
    I'm trying to eliminate those errors, but it's not that simple. AutoIt doesn't have a ReadProccessMemory Function build in - so I have to use the windows dll's and AutoIt is VERY !!! slow with these dll-calls (takes 0,2 ms to read one small structure)
    To speed this up I wrote a little framework that doesn't reads the memory every time coordinates (etc..) are required, but only "reads" the memory ever 100ms. This unfortunately sometimes can produce these array-error if a target is deselected / internal changed in the memory etc...

    3 Possibilities:
    - Switch to another programming language (which I don't know, learning c++ and c# this year ^^)
    - Try to minimize these errors (hardest but best way)
    - Dumping framework and reading every time a new variable is required.. which may severely affect the speed (target sometime takes 100+ms to read out 1 coordinate)

    AutoIt is very easy to learn and write, but it certainly has is limitations /deficits

  5. #95
    KiLLerBoy_001's Avatar Member
    Reputation
    7
    Join Date
    Mar 2008
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just wanted to let you guys know this

    1 Chages i made 2 flo.exe

    Added a tooltip
    It Tells you what the bot is doing

    2 Changes to the Waypoint recorder

    It Now always stays on top of your Wow Window When played in Windowed mode

    So now you can always click the button without minimizing Bla Bla Bla

    When you click the button It Will deactivate Wow for a sec but will switch back
    So you can Continue on your path without having to open Wow again

  6. #96
    Flos's Avatar Member
    Reputation
    49
    Join Date
    Feb 2008
    Posts
    146
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by KiLLerBoy_001 View Post
    Just wanted to let you guys know this

    1 Chages i made 2 flo.exe

    Added a tooltip
    It Tells you what the bot is doing

    2 Changes to the Waypoint recorder

    It Now always stays on top of your Wow Window When played in Windowed mode

    So now you can always click the button without minimizing Bla Bla Bla

    When you click the button It Will deactivate Wow for a sec but will switch back
    So you can Continue on your path without having to open Wow again
    1.) looked at the tooltips: They really mess with my speed - one problem of developing on a 4-5 year old laptop ^^. Probably gonna make this optional, but if everything works, there just isn't any use for tooltips.

    2.) Will include this in the next version, seems like a simple function call - thx for tip.

    Next version supports full-screen + windowed mode with any resolution and color-detection should work for everybody.
    Also reduced the array-errors and a few log-file changes.

    But don't expect it to show up before weekend. Got another nice features in mind which may or may-not be possible.. we'll see..

  7. #97
    wolffjezz's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    umm wtf? says u deleted....

  8. #98
    bobthebobster's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it didn't work for me.. .anyone care to explain?

  9. #99
    wolffjezz's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    help me plz

  10. #100
    KiLLerBoy_001's Avatar Member
    Reputation
    7
    Join Date
    Mar 2008
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i just have a simple set of tolltips ill show source since it's yours anyway :P

    at top i added
    Code:
     
    #Requireadmin  ( for vista users ) 
    $ Counter = 0   (for my tooltip ) (without the space between the  $ and counter  but else mmowned deletes it automaticly youll see that all other vars definitions are also missing  :p
    )

    my code starts just under the line 3152 that contains $G_STATUSCHANGE = 0

    Code:
    If $ Counter = 0 then 
    			ToolTip("Waiting .....    Make Sure you Activate Flo Addon by typing:  /flo on")
    			$ Counter = 1
    		Else
    			Sleep(1500)
    			ToolTip("Waiting For Next Command.....")
    		EndIf
    		
    		ADD2LOG("Bot()-COLOR: " & , 2)
    		_GETBASEOFFSET()
    		Switch 
    			Case 0
    				JOINBG()
    				ToolTip("Joining BG")
    			Case 1
    				JUSTANTIAFK()
    				ToolTip("Anti AFK")
    			Case 2
    				SLEEPIT(500)
    				ADD2LOG("before bg start", 1)
    				BGBEFORESTART()
    				If ( == 0) Then  = 1
    				JUSTANTIAFK()
    				ToolTip("Waiting For BG To Start")
    			Case 3
    				SLEEPIT(500)
    				ADD2LOG("after bg start", 1)
    				If  == 0 Then
    					BGBEFORESTART()
    				EndIf
    				 = 0
    				_XMLEXECNODE(, "/FloProfile/AfterStart")
    				ANTIAFKWITHAUTOATTACK()
    				ToolTip("Going Into BG")
    			Case 4
    				JUSTANTIAFK()
    				ToolTip("Anti AFK")
    			Case 5
    				 = GETRANDOMFILE(GETBGPROFILEDIR())
    				ADD2LOG("UnGhost")
    				If GETZONE() == 8 Then
    					_XMLEXECNODE(, "/FloProfile/" & GETWHICHALTERACGY())
    				EndIf
    				ANTIAFKWITHAUTOATTACK()
    				ToolTip("UnGhost")
    			Case 6
    				GMDETECTED()
    				ToolTip("GM  Detected")
    			Case 7
    				WOWSCREENSHOT(1)
    				ADD2LOG("AFK REPORTET !!!", 3)
    				AFKREPORT()
    			Case 250
    				FARM()
    				ToolTip("Farm")
    			Case 254
    				ANTIAFKWITHAUTOATTACK()
    				ToolTip("AnTi AFK With Auto Attack")
    			Case 255
    				_XMLEXECNODE("profiles/test", "/FloProfile/")
    			Case Else
    				 += 1
    				ADD2LOG("Status not recognized: don't know what to do", 2)
    				ToolTip("Status not Recognized"
    				If  > 100 Then
    					 = 1
    					ADD2LOG("Status not recognized for 100 trys... aborting bot", 2)
    				EndIf
    		EndSwitch
    		SLEEPIT(5000)
    	Until  <> 0
    	AdlibDisable()
    	ADD2LOG("Quiting Program - No Autorelog implemented yet", 2)
    EndFunc
    doesnt take up any extra resources

    then there is the Recorder changes
    Again added
    Code:
    #RequireAdmin
    at top

    for the GUI i added this

    Code:
     
     WinSetOnTop("Record Path", "", 1)
    and after the entire function SETWAYPOINT Was Done i Added An Extra line Containing .

    Code:
    Winactivate("World of Warcraft")

    i guess we al know what that does :P
    Last edited by KiLLerBoy_001; 03-05-2008 at 09:26 PM.

  11. #101
    wolffjezz's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ummmm yeah why wont it workkkkk *crying*

  12. #102
    wolffjezz's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can u just post a DL where it will work, im a noobie when it comes to computers...everything u guys are saying is mumbo jumbo

  13. #103
    axcess's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by n30n View Post
    Yea i prolu ran it at before zoning cant rmember now, ill try to test my profile today and update if needed.
    in regards to your hordeprofile n3on, i can say it works for the most part when you're out of the cave, but your beforestart waypoints seem to be off...so anyone who used it and noticed it i replaced his waypoints

    from:
    Code:
    WP( -541.457153320313, -384.334289550781, 50.6630668640137, 1)
    WP( -520.6572265625, -340.505493164063, 34.3860549926758, 1)
    WP( -818.556640625, -619.2548828125, 54.0388984680176, 1)
    to:
    Code:
    WP( -818.556640625, -619.2548828125, 54.0388984680176, 1)
    WP( -837.581359863281, -608.444396972656, 53.8544235229492, 1)
    WP( -869.256896972656, -562.316040039063, 57.151008605957, 1)
    your original waypoints make you run into the wall, since i believe the first/second waypoint are located near the middle of the map. hope this helps some people...

    also, directed at Flo, the bot runs fine following waypoints and everything, but sometimes it'll start running in circles nonstop. usually it will eventually go back on track, but why does it get "lost" for a bit? other then that the bot is great!

  14. #104
    skriklasse's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For everyone out there, do not have mouse on the black square, that is why your bot doesn't work if you have done everything else corectly, that was my problem to get my bot start working, I have been using pirox and with pirox bot you needed to have your mouse on black square, but with this progam you dont, and if you do have the mouse there, the bot wont work.

    BTW! this is a to every bot user, if you manage to make a nice profile, with nice waypoints, please upload it! <3

  15. #105
    Rprp's Avatar Member
    Reputation
    6
    Join Date
    Dec 2007
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by skriklasse View Post
    For everyone out there, do not have mouse on the black square, that is why your bot doesn't work if you have done everything else corectly, that was my problem to get my bot start working, I have been using pirox and with pirox bot you needed to have your mouse on black square, but with this progam you dont, and if you do have the mouse there, the bot wont work.

    BTW! this is a to every bot user, if you manage to make a nice profile, with nice waypoints, please upload it! <3
    Still not working.

    Getting this error: Status not recognized: don't know what to do !

    Tried each resolution (800x600, 1280x1024 etc), disabled all addons.

Page 7 of 60 FirstFirst ... 3456789101157 ... LastLast

Similar Threads

  1. Making an anti-afk bot with AutoIT the easy way.
    By Tsai in forum World of Warcraft Bots and Programs
    Replies: 13
    Last Post: 10-02-2007, 04:22 PM
  2. Easy AFK Bot with G15
    By husky003 in forum World of Warcraft Exploits
    Replies: 7
    Last Post: 01-13-2007, 12:42 AM
  3. Replies: 4
    Last Post: 09-18-2006, 06:38 PM
  4. anit afk bot with Cheat engine
    By thechosenone in forum World of Warcraft Bots and Programs
    Replies: 3
    Last Post: 09-11-2006, 03:44 PM
  5. AutoIt Macro for WoW AFK Bot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 04-06-2006, 06:01 AM
All times are GMT -5. The time now is 05:51 AM. 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