[Program] Paladin AutoSkill (lvl 65+) menu

User Tag List

Results 1 to 7 of 7
  1. #1
    Newbs_r_us's Avatar Active Member
    Reputation
    108
    Join Date
    Jan 2007
    Posts
    314
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Program] Paladin AutoSkill (lvl 65+)

    Today i was busy trying to skill up my 2H axe skill on my Paladin when a thought came to me "Wouldnt this be so much easier with a basic Bot made in AutoIt?"

    I am not experienced with AutoIt by any means, so what I did instead was modify an Anti-AFK bot to suit my purposes. I know this small prog isn't very good, but i figured someone out there like me could use it.

    The Setup before using this is pretty simple. Put your Seal of the Crusader on your main bar at the 7 Hotkey, and a rank 8 or 9 Holy Light on the - Hotkey of your main bar.

    After that all you have to do is alt-tab out, start the .exe then go in-game and hit shift-F2 with you mouse hovering over your enemy. Now you are good to Auto Skill up for hours!

    Now, so that you can AutoSkill up totally AFK I would suggest going to the area noted in this post: http://www.mmowned.com/forums/wow-ex...hlight=servant
    for maximum safety.


    Totally safe, just the basic AutoIt v3 mistaken scanning.
    -----)(Please leave the copyright text intact)(-----
    This post is copyright by the user posting it and MMOwned.com - World of Warcraft Exploits,Hacks, Bots and Guides, where it was posted. You may not copy or reproduce this information on any other site without written permission from both the poster and MMOwned.com
    Attached Files Attached Files
    Last edited by Newbs_r_us; 04-07-2007 at 04:22 PM.

    [Program] Paladin AutoSkill (lvl 65+)
  2. #2
    Flying Piggy's Avatar Banned
    Reputation
    1169
    Join Date
    Jan 2007
    Posts
    2,286
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Program] Paladin AutoSkill (lvl 65+)

    Very good work Newbs_r_us , i had a look at the source and everything is clean . +rep

    /attachment approved

    here is the source :

    Code:
    ; <AUT2EXE VERSION: 3.2.2.0>
    
    ; ----------------------------------------------------------------------------
    ; <AUT2EXE INCLUDE-START: C:\Documents and Settings\Andrew Neufeld.ANDREW\Desktop\AutoSkill.au3>
    ; ----------------------------------------------------------------------------
    
    $WoWAppName = "World of Warcraft"
    $NoAFK = "Basic Paladin AutoSkill v1.0"
    $Paused = -1
    $ClickSet = 0
    $Loops = 0
    Global $ToClick = MouseGetPos()
    AutoItSetOption("SendKeyDownDelay", 150)
    
    MsgBox(4096, $NoAFK, "Welcome to Newbs_r_ us's Paladin AutoSkill script!"& chr(13) &"This script will run from the tray."& chr(13) &"Character should cast Seal of the Crusader every 20-30 seconds, and heal you every minute or so."& chr(13) &"To get ready for the AutoSkill script please place Seal of the Crusader on the number 7 hotkey" & chr(13) & "and a rank 8 or 9 Holy Light on the - hotkey an you are set to go."& chr(13) &"Press Shift+F1 to un/pause."& chr(13) &"Press Shift+F2 to set cursor position.")
    HotKeySet("+{F1}", "ToggleOnOff")
    HotKeySet("+{F2}", "SetCurPos")
    
    If (Not WinExists($WoWAppName)) Then
        MsgBox(16, $NoAFK, "Please run WoW then run this program.")7
    EndIf
    
    While (1)
        Sleep(Random(10, 30) * 1000)
        If (WinExists($WoWAppName) AND $Paused = -1) Then
            $Loops = Mod($Loops + 1, 2)
            If ($ClickSet = 1 AND WinActive($WoWAppName)) Then
                If ($Loops = 0) Then
                ControlSend($WoWAppName, "", "", "-")
                Sleep(1000)
            EndIf
                MouseClick("right", $ToClick[0], $ToClick[1])
                Sleep(500)
            EndIf
            ControlSend($WoWAppName, "", "", "{7}")
            Sleep(200)
    
    
    
            If ($Loops = 0) Then
                Sleep(700)
                ControlSend($WoWAppName, "", "", "")
                Sleep(700)
            EndIf
        ElseIf (Not WinExists($WoWAppName)) Then
            MsgBox(16, $NoAFK, "Could not find window: " & chr(34) & $WoWAppName & chr(34) & "! Shutting down!")
            Exit
        EndIf
    WEnd
    Exit
    
    Func ToggleOnOff()
        HotKeySet("+{F1}")
        If ($Paused = 1) Then
            ToolTip("NoAFK active!", 0, 0)
            Beep(1500, 200)
        Else
            ToolTip("NoAFK disabled!", 0, 0)
            Beep(500, 200)
        EndIf
        $Paused = $Paused * (-1)
        Sleep(1000)
        ToolTip("")
        HotKeySet("+{F1}", "ToggleOnOff")
    EndFunc
    
    Func SetCurPos()
        HotKeySet("+{F2}")
        $ClickSet = 1
        Global $ToClick = MouseGetPos()
        Beep(750, 200)
        ToolTip("Click location set!", 0, 0)
        Sleep(1000)
        HotKeySet("+{F2}", "SetCurPos")
        ToolTip("")
    EndFunc
    
    Func ForceWindow($Window)
        WinSetState($Window, "", @SW_MAXIMIZE)
        WinWaitActive($Window, "", 5000)
        Sleep(2000)
    EndFunc
    
    ; ----------------------------------------------------------------------------
    ; <AUT2EXE INCLUDE-END: C:\Documents and Settings\Andrew Neufeld.ANDREW\Desktop\AutoSkill.au3>
    ; ----------------------------------------------------------------------------

    Last edited by Flying Piggy; 04-07-2007 at 04:42 PM.

  3. #3
    Newbs_r_us's Avatar Active Member
    Reputation
    108
    Join Date
    Jan 2007
    Posts
    314
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Program] Paladin AutoSkill (lvl 65+)

    As i have said b4, i am still a noob at AutoIt. If anyone has any hints or tips on how i could improve this dont hesitate to PM me or reply here.

  4. #4
    Beastslayer's Avatar Active Member
    Reputation
    46
    Join Date
    Dec 2006
    Posts
    235
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Program] Paladin AutoSkill (lvl 65+)

    it's not just for paladins... you can use it for any class with a matter of editing the script. it shouldnt be hard, i edited it to fit my needs.

  5. #5
    Newbs_r_us's Avatar Active Member
    Reputation
    108
    Join Date
    Jan 2007
    Posts
    314
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Program] Paladin AutoSkill (lvl 65+)

    Yeah, It's very basic. Can be edited to fit any class, but not everyone knows how to edit this kinda stuff so I just put it up as what i first made it for simplicity's sake.

  6. #6
    Nugma's Avatar Field Marshal
    Reputation
    122
    Join Date
    Aug 2006
    Posts
    1,290
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Program] Paladin AutoSkill (lvl 65+)

    I dont get this. I might be tired but oh well. Rep for you anyway.

  7. #7
    Newbs_r_us's Avatar Active Member
    Reputation
    108
    Join Date
    Jan 2007
    Posts
    314
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Program] Paladin AutoSkill (lvl 65+)

    Basically what it is is an pretty simple bot to keep casting up Seal of the crusader and Holy light on spaced time intervals so that you can go totally AFK when you want to get soem weapon Skill for a new weapon. Only bad thing is it cant switch mobs, so thats why i suggest using the invincible mobs in Blasted lands.

Similar Threads

  1. [Selling] Lvl 90 druid, Lvl 90 Paladin, various lvl 85 alts + sc2 + lvl 60 on D3
    By waterworks in forum WoW-US Account Buy Sell Trade
    Replies: 1
    Last Post: 06-15-2013, 12:08 AM
  2. [Selling] Epic Oldschool Paladin with lvl 60 pvp transmog gear , rare unobtainable mounts
    By Ragona in forum WoW-EU Account Buy Sell Trade
    Replies: 1
    Last Post: 01-08-2013, 06:38 AM
  3. [Selling] Level 85 Paladin - Item Lvl 395+85 Druid Priest Hunter Warlock & more!
    By Psypherlol in forum World of Warcraft Buy Sell Trade
    Replies: 1
    Last Post: 01-08-2012, 01:53 PM
  4. [Selling] Level 85 Paladin - Item Lvl 395+85 Druid Priest Hunter Warlock & more!
    By Psypherlol in forum WoW-US Account Buy Sell Trade
    Replies: 1
    Last Post: 01-01-2012, 10:54 PM
  5. Blood Elf Paladin Twink LvL 19 and 29
    By Archelf in forum World of Warcraft Guides
    Replies: 4
    Last Post: 02-13-2007, 02:10 PM
All times are GMT -5. The time now is 06:53 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