[GUIDE] Create your own little bot. +ADDED ANTIAFK menu

User Tag List

Page 1 of 4 1234 LastLast
Results 1 to 15 of 57
  1. #1
    Zeroi9's Avatar Banned
    Reputation
    286
    Join Date
    Aug 2008
    Posts
    911
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [GUIDE] Create your own little bot. +ADDED ANTIAFK

    Hello guys! I've been into coding bots and programs for some weeks, and now I'm working on an BG bot.


    In this guide you will, shortly, learn how to create your own BOT.
    You can use it for WoW, or any other games.
    Download AutoIt v3 : AutoIt v3 - Downloads
    Install it, then right click your desktop, hold mouse over "New" and New AutoIT Document. Now you get an new file on your desktop, rightclick it and press " Edit Script "

    Now we will start code.
    To start the bot in test mode, press F5!


    Ok, in the top now, you enter this code :
    Code:
    MsgBox(0, "Titel of msgbox", "MSG BOX TEXT")
    The 0 is the sort of the window, you can try 1 - 2 - 3 etc and see wich you like most. The other stuff I hope you can fix yourself. (its titel and msgbox text ^^) --- When you press F5 to test the bot, a msgbox will appear and you need to press like OK or which sort of window you picked and then the bot starts, so be sure to have wow or maybe an txt file to see what the bot press. ---
    Now you go down to an new line.
    Here you do this code.

    Code:
    sleep("15000")
    send("{space}")
    This will paus the bot for 15 secs (1000 = 1 sec)
    and then press space.
    so it can look like this :

    Code:
    sleep("15000")
    send("{space}")
    sleep("105")
    Send("w") 
    sleep("600")
    Send("e")
    send("{space}")
    sleep"("30")
    But you add more to make it do other stuff, I mean it can do like "send("4")" and you can have mount at button 4, or maybe "send("2")" and you got an dot etc.
    I'll write an more advanced guide in a few days when my bot is done!
    As you see i got {space}, its becuse { means its a button press, if you just type ("space") then it will press s,p,a,c,e.
    Uhm all {buttons} is here :

    HOPE You got any use for this guide! You maybe can learn more and more and in a while create your own l33t bot?! :-)

    ADDED - To make an anti afk thingie, you can use this code. Remember when you copy the code, to remove all my tips. (tips is after the -)
    Code:
    $Msg = MsgBox(1, "TITEL", "Msg.") - First an titel of your msgbox, then an msg. the 1 is the type of the msgbox. USE 1 !!!!
    If $Msg = 2 Then - This is if the user press Cancel instead of OK, the bots exits.
    	UserEnd() - Code to end bot.
    EndIf
    HotKeySet("{Pause}", "UserEnd")  - an Hotkey to stop the bot manually. u see ("{PICK BUTTON HERE}") to change the button to pause.
    Func UserEnd() - funciton
    Exit - exits
    EndFunc - end function
    - NOTICE ---- You can type anything else instead of World of Warcraft. ---
    - NOTICE ---- THIS IS AN ALONE CODE, IF YOU DO THIS ANTI AFK BOT, SKIP THE CODES ABOVE!! ---
    WinSetState("World of Warcraft", "", @SW_MAXIMIZE) - This will maximize WoW.
    ControlSend("World of Warcraft", "", "", "/join thisislolepichaha") - Here is an channel it joins, bot will join it and type the msg under here.
    ControlSend("World of Warcraft", "", "", "{ENTER}") - Presses ENTER.
    While 1 - here is the start.
    ControlSend("World of Warcraft", "", "", "This is an simple NOT AFK thing.") - This is what the bot should say.
    ControlSend("World of Warcraft", "", "", "{ENTER}") - Presses ENTER and sends the msg.
    Sleep(25000) - "sleeps" before starting all over again ^^, 1000 = 1 sec, 10000 = 10 sec.
    WEnd - Here is the end.¨
    feel free to pm me with questions! or write here!



    ADDED - A BOT WITH WINDOWED MODE.
    Code:
    While 1 - here is the start.
    ControlSend("World of Warcraft", "", "", "send("w") ; This will press w.
    ControlSend("World of Warcraft", "", "", "{w down}") ; This will hold w down until command w up.
    Sleep(1500) ; sleeps 1.5 sec. and then WEnd command makes it restart all over (while 1 to wend wil restart until stopped)
    WEnd - Here is the end. And restarts.



    Ps. plx no more useless bots now, no more AntiAfk that just press Space. if you use this guide, you can make him press w,w,w,w,then maybe button 4 so he mounts etc. dots and {tab}s..
    ENJOY!
    PM me if you got question.
    Code:
    here :
    Send("{TAB}")  	Navigate to next control (button, checkbox, etc)
    Send("+{TAB}") 	Navigate to previous control.
    Send("^{TAB}") 	Navigate to next WindowTab (on a Tabbed dialog window)
    Send("^+{TAB}") 	Navigate to previous WindowTab.
    Send("{SPACE}") 	Can be used to toggle a checkbox or click a button.
    Send("{+}") 	Usually checks a checkbox (if it's a "real" checkbox.)
    Send("{-}") 	Usually unchecks a checkbox.
    Send("{NumPadMult}") 	Recursively expands folders in a SysTreeView32.
    
    
    Use Alt-key combos to access menu items.  Also, open Notepad and try the following:
    
    Send("!f") 	Send Alt+f, the access key for Notepad's file menu. Try other letters!
    Send("{DOWN}") 	Move down a menu.
    Send("{UP}") 	Move up a menu.
    Send("{LEFT}") 	Move leftward to new menu or expand a submenu.
    Send("{RIGHT}") 	Move rightward to new menu or collapse a submenu.
    
    
    
    
    
    To send the ASCII value A (same as pressing ALT+065 on the numeric keypad)
    
    Send("{ASC 065}")
    
    
    To send UNICODE characters enter the character code, for example this sends a Chinese character
    
    Send("{ASC 2709}")
    
    
    Single keys can also be repeated, e.g.
    
    Send("{DEL 4}") ;Presses the DEL key 4 times
    Send("{S 30}") ;Sends 30 'S' characters
    Send("+{TAB 4}") ;Presses SHIFT+TAB 4 times
    
    
    To hold a key down (generally only useful for games)
    
    Send("{a down}") ;Holds the A key down
    Send("{a up}") ;Releases the A key
    
    
    If you with to use a variable for the count, try
    
    $n = 4
    Send("+{TAB " & $n & "}")
    
    
    If you wish to send the ASCII value A four times, then try
    
    $x = Chr(65)
    Send("{" & $x & " 4}")
    
    
    {!}  	!
    {#} 	#
    {+} 	+
    {^} 	^
    {{} 	{
    {}} 	}
    {SPACE} 	SPACE
    {ENTER} 	ENTER key on the main keyboard
    
    {ALT} 	ALT
    {BACKSPACE} or {BS} 	BACKSPACE
    {DELETE} or {DEL} 	DELETE
    {UP} 	Up arrow
    {DOWN} 	Down arrow
    {LEFT} 	Left arrow
    {RIGHT} 	Right arrow
    {HOME} 	HOME
    {END} 	END
    {ESCAPE} or {ESC} 	ESCAPE
    {INSERT} or {INS} 	INS
    {PGUP} 	PGUP
    {PGDN} 	PGDN
    {F1} - {F12} 	Function keys
    {TAB} 	TAB
    {PRINTSCREEN} 	PRINTSCR
    {LWIN} 	Left Windows key
    {RWIN} 	Right Windows key
    {NUMLOCK} 	NUMLOCK
    {BREAK} 	for Ctrl+Break processing
    {PAUSE} 	PAUSE
    {CAPSLOCK} 	CAPSLOCK
    {NUMPAD0} - {NUMPAD9} 	Numpad digits
    {NUMPADMULT} 	Numpad Multiply
    {NUMPADADD} 	Numpad Add
    {NUMPADSUB} 	Numpad Subtract
    {NUMPADDIV} 	Numpad Divide
    {NUMPADDOT} 	Numpad period
    {NUMPADENTER} 	Enter key on the numpad
    {APPSKEY} 	Windows App key
    {LALT} 	Left ALT key
    {RALT} 	Right ALT key
    {LCTRL} 	Left CTRL key
    {RCTRL} 	Right CTRL key
    {LSHIFT} 	Left Shift key
    {RSHIFT} 	Right Shift key
    {SLEEP} 	Computer SLEEP key
    {ALTDOWN} 	Holds the ALT key down until {ALTUP} is sent
    {SHIFTDOWN} 	Holds the SHIFT key down until {SHIFTUP} is sent
    {CTRLDOWN} 	Holds the CTRL key down until {CTRLUP} is sent
    {LWINDOWN} 	Holds the left Windows key down until {LWINUP} is sent
    {RWINDOWN} 	Holds the right Windows key down until {RWINUP} is sent
    {ASC nnnn} 	Send the ALT+nnnn key combination
      	 
    {BROWSER_BACK} 	2000/XP Only: Select the browser "back" button
    {BROWSER_FORWARD} 	2000/XP Only: Select the browser "forward" button
    {BROWSER_REFRESH} 	2000/XP Only: Select the browser "refresh" button
    {BROWSER_STOP} 	2000/XP Only: Select the browser "stop" button
    {BROWSER_SEARCH} 	2000/XP Only: Select the browser "search" button
    {BROWSER_FAVORITES} 	2000/XP Only: Select the browser "favorites" button
    {BROWSER_HOME} 	2000/XP Only: Launch the browser and go to the home page
    {VOLUME_MUTE} 	2000/XP Only: Mute the volume
    {VOLUME_DOWN} 	2000/XP Only: Reduce the volume
    {VOLUME_UP} 	2000/XP Only: Increase the volume
    {MEDIA_NEXT} 	2000/XP Only: Select next track in media player
    {MEDIA_PREV} 	2000/XP Only: Select previous track in media player
    {MEDIA_STOP} 	2000/XP Only: Stop media player
    {MEDIA_PLAY_PAUSE} 	2000/XP Only: Play/pause media player
    {LAUNCH_MAIL} 	2000/XP Only: Launch the email application
    {LAUNCH_MEDIA} 	2000/XP Only: Launch media player
    {LAUNCH_APP1} 	2000/XP Only: Launch user app1
    {LAUNCH_APP2} 	2000/XP Only: Launch user app2
    Last edited by Zeroi9; 10-20-2008 at 02:07 PM. Reason: Adding!2

    [GUIDE] Create your own little bot. +ADDED ANTIAFK
  2. #2
    Cern's Avatar Banned
    Reputation
    146
    Join Date
    Feb 2007
    Posts
    1,038
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very nice guide! I will rep you if I can!

  3. #3
    shadowbladex's Avatar Member
    Reputation
    145
    Join Date
    Apr 2007
    Posts
    948
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Maybe helpful for beginners. But nothing you cant find in the help file.


  4. #4
    Zeroi9's Avatar Banned
    Reputation
    286
    Join Date
    Aug 2008
    Posts
    911
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cern View Post
    Very nice guide! I will rep you if I can!
    Added stuff.
    Last edited by Zeroi9; 10-22-2008 at 01:00 AM.

  5. #5
    Zeroi9's Avatar Banned
    Reputation
    286
    Join Date
    Aug 2008
    Posts
    911
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    C'mon guys. 70 views, 2 comments? :-/

  6. #6
    Jarrah's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there any commands for target the BG guy and join BG and then run the key's?... and how do the program understand that the bg has ended so it stops?..

  7. #7
    Zeroi9's Avatar Banned
    Reputation
    286
    Join Date
    Aug 2008
    Posts
    911
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jarrah View Post
    is there any commands for target the BG guy and join BG and then run the key's?... and how do the program understand that the bg has ended so it stops?..

    type
    send("{enter}")
    send("/target BGguyname")
    send("{enter}")
    thendownload addon sspvp2

  8. #8
    INS4N3K1LL's Avatar Member
    Reputation
    13
    Join Date
    Feb 2008
    Posts
    101
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great! +Rep
    Very usefull, I got it working now, tbh you should make a guide that can re-join an bg to. But anyway, ,+REP frmo me,

  9. #9
    Jarrah's Avatar Member
    Reputation
    1
    Join Date
    Dec 2007
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zeroi9 View Post
    type
    send("{enter}")
    send("/target BGguyname")
    send("{enter}")
    thendownload addon sspvp2

    Okey I see thank you, +REP from me!..and more to come if you answere;

    but how do my script / program / bot understand that my character isn't in AV or WSG or any BG anymore?.. how do it understand that it shall /target BGguyname and so on?... and how do I do to repeat alots of lines? since you never know how long a AV will last...

  10. #10
    Thidan's Avatar Contributor
    Reputation
    299
    Join Date
    Jan 2007
    Posts
    1,009
    Thanks G/R
    2/15
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh...My...GOD!
    You find even more details in the help file, c'mon!
    And the msgbox flag, dude, you don't "try" different numbers, you look them up in the helpfile.
    And where's the While? I see no While. Or Do or For.


  11. #11
    Sylcai's Avatar Active Member
    Reputation
    55
    Join Date
    Oct 2007
    Posts
    296
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How is this not asking for rep?

    A very disguised manner "I want the contributer rank, time to contribute!", and then saying "c'mon! 78 views, and just 2 comments?".

    Aside from that, this is old, people previously have done such guides, yet, YOU are in the wrong section, as this is a GUIDE, not a bot.

    Even though some people would think it should belong here, as it is a bot to create a guide.


    However, it's with auto-it, so the bot can't really 'think'. And it's way to detectable.

    Well, end of my rant, and yes, I had too. Go blame me for it!

  12. #12
    Apartment Wolf's Avatar King - AMG
    Reputation
    415
    Join Date
    Aug 2008
    Posts
    812
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I couldn't care less if he was saying X views to X comments bcus Its completely true!!!! +Rep x2 great guide and introduced me to Autoit.

  13. #13
    Zurkei's Avatar Contributor

    Reputation
    91
    Join Date
    Apr 2007
    Posts
    405
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah saying "70 views and only 2 comments" I would not view it as asking for rep as when I posted my first guide release that was unreleased for the time i got tons of downloads on it and almost no thanks for me I could careless about rep it is more about making the people happy in my case and it kinda hurts when they download it and don't say anything thing as I can be paranoid and think that it didn't help at all.

  14. #14
    mathias223's Avatar Member
    Reputation
    13
    Join Date
    Sep 2008
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'll +rep if you make a MAC bot :>

  15. #15
    Zeroi9's Avatar Banned
    Reputation
    286
    Join Date
    Aug 2008
    Posts
    911
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fry2bubba View Post
    Yeah saying "70 views and only 2 comments" I would not view it as asking for rep as when I posted my first guide release that was unreleased for the time i got tons of downloads on it and almost no thanks for me I could careless about rep it is more about making the people happy in my case and it kinda hurts when they download it and don't say anything thing as I can be paranoid and think that it didn't help at all.
    Thanks for the words.

    Guys, and you Thadin,
    well I can put up a guide tonigt how to do repeats.
    IT easy.



    and you asking for bg thing, just make him like do /target bgmaster sometimes.
    ´Hope you like it....

Page 1 of 4 1234 LastLast

Similar Threads

  1. [Selling] World of Warcraft - Create your own rotation safe combat bot- Guide 100% satisfaction
    By Vinshom in forum World of Warcraft Buy Sell Trade
    Replies: 1
    Last Post: 08-26-2016, 07:35 PM
  2. [Guide] Creating your own Google Sig
    By StolenLegacy in forum Art & Graphic Design
    Replies: 0
    Last Post: 11-04-2008, 03:21 AM
  3. [Guide] Create your own WoW Text (Logo)
    By deadca7 in forum World of Warcraft Guides
    Replies: 21
    Last Post: 10-27-2008, 05:58 PM
  4. [Guide] create your own island
    By kate1 in forum WoW EMU Guides & Tutorials
    Replies: 49
    Last Post: 02-24-2008, 02:09 PM
  5. Step-By-Step Create Your Own AFK Bot! MMOwned Exclusive!
    By =sinister= in forum World of Warcraft Guides
    Replies: 6
    Last Post: 07-26-2006, 09:04 PM
All times are GMT -5. The time now is 03:49 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