[Auto-it Program] Wrote this myself, Semi-Automatic Mage menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    Dead_Man's Avatar Active Member
    Reputation
    35
    Join Date
    Jan 2007
    Posts
    161
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    This program makes being a mage just a little bit easier

    includes:
    • Auto-Water: The Basis of the whole script, very clomplex, just read the code and you will know what i mean
    • Auto-attack: most usefull for frost mages.. not really smart ill admit just repeats a key i set frostbolt to on my computer
    • Undetectable like 99.99% of all Auto-it script's
    • Since i made it ControlSend("World of Warcraft") instead of just Send(" ") you can go off onto another window and it still send's the keys to WoW and nothing else (example: watch a video on youtube while making water)
    without further ado.. my script



    Code:
    HotKeySet("{F1}", "Attack")
    
    HotKeySet("{F2}", "Water")
    HotKeySet("{F4}", "Endall")
    If Not FileExists("C:tempAuto-Mage.ini") Then
    MsgBox(0, "Configuration not setup or saved file was deleted", "please take 2 second's of your time to fill this out")
    $1 = InputBox("Setup Water", "Enter Max MP")
    $2 = InputBox("Setup Water", "Enter How much mana it costs to make your water")
    $3 = $1 / $2
    $4 = $1 / $2
    IniWrite("C:TempAuto-Mage.ini", "User MP", "Max MP", $1)
    IniWrite("C:TempAuto-Mage.ini", "Mana Consumption", "Water", $2)
    IniWrite("C:TempAuto-Mage.ini", "Random", "Value 1", $3)
    IniWrite("C:TempAuto-Mage.ini", "Random", "Value 2", $4)
    Else
    If Not IsDeclared("iMsgBoxAnswer") Then Dim
    iMsgBoxAnswer = MsgBox(36, "Setting's", "Use same setting's as before?")
    Select
    Case = 6 ;Yes
    $1 = IniRead("C:TempAuto-Mage.ini","User MP","Max MP","")
    $2 = IniRead("C:TempAuto-Mage.ini", "Mana Consumption", "Water","")
    $3 = IniRead("C:TempAuto-Mage.ini", "Random", "Value 1","")
    $4 = IniRead("C:TempAuto-Mage.ini", "Random", "Value 2","")
    Case = 7 ;No
    $1 = InputBox("Setup Water", "Enter Max MP")
    $2 = InputBox("Setup Water", "Enter How much mana it costs to make your water")
    $3 = $1 / $2
    $4 = $1 / $2
    IniWrite("C:TempAuto-Mage.ini", "User MP", "Max MP", $1)
    IniWrite("C:TempAuto-Mage.ini", "Mana Consumption", "Water", $2)
    IniWrite("C:TempAuto-Mage.ini", "Random", "Value 1", $3)
    IniWrite("C:TempAuto-Mage.ini", "Random", "Value 2", $4)
    EndSelect
    EndIf
    ;----------------- Main Loop -----------------
    While 1
    Sleep(100)
    WEnd
    ;----------------- Main Loop -----------------
    Func Attack()
    While 1
    ControlSend("World of Warcraft", "", "", "{5}")
    Sleep(2501)
    WEnd
    EndFunc ;==>Attack
    Func Endall()
    While 1
    Sleep(100)
    WEnd
    EndFunc ;==>Endall
    Func Water()
    While $3 > 1
    ControlSend("World of Warcraft", "", "", "{1}")
    Sleep(4000)
    $3 = $3 - 1
    If $3 <= 1 Then
    ControlSend("World of Warcraft", "", "", "{2}")
    Sleep(26000)
    ControlSend("World of Warcraft", "", "", "{3}")
    $3 = $4
    EndIf
    WEnd
    EndFunc ;==>Water
    Feel free to change the hotkeys at the top (took me 3 days so hope you like it(also, im wide open for suggestions))
    Instuctions:


    set your conjure water to 1 on the 2nd row of your hotkeys
    set drink water to 2 on the 2nd row
    and last but not least, make a macro that does /stand and make it #3


    you will only need to configure the program once unless you delete the .ini file it creates or you choose to reconfigure yourself

    Small note: i made the frostbolt key #5 since thats what it is on me keyboard... you can change that in the script (line #45) or on wow, alls good

    Last edited by Dead_Man; 12-02-2007 at 08:01 PM.

    [Auto-it Program] Wrote this myself, Semi-Automatic Mage
  2. #2
    Elites360's Avatar Elite User
    Reputation
    501
    Join Date
    Jun 2006
    Posts
    1,081
    Thanks G/R
    1/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    Good Job +rep.
    i just made a Draenie mage ill have to try this out.

  3. #3
    gotosleep's Avatar Member
    Reputation
    12
    Join Date
    Apr 2006
    Posts
    143
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    Or... you could just bind "Conjure Water" to, say, 9, and then make the script hit 9 every 5 seconds. Same concept lol.

  4. #4
    Dead_Man's Avatar Active Member
    Reputation
    35
    Join Date
    Jan 2007
    Posts
    161
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    Code:
    Func Water()
        While $3 > 1
            ControlSend("World of Warcraft", "", "", "{1}")
            Sleep(4000)
            $3 = $3 - 1
            If $3 <= 1 Then
                ControlSend("World of Warcraft", "", "", "{2}")
                Sleep(26000)
                ControlSend("World of Warcraft", "", "", "{3}")
                $3 = $4
            EndIf
        WEnd
    EndFunc
    determin's how many each diverse person can make, drinks then stands and goes for anothing round over and over.. little but smarter then a tiny script...

    btw anyone have some idea's for more functions to add
    Last edited by Dead_Man; 01-22-2007 at 09:29 PM.

  5. #5
    Matt's Avatar Legendary Authenticator enabled
    Reputation
    633
    Join Date
    Feb 2006
    Posts
    2,996
    Thanks G/R
    2/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    verry nice. +REP & +Gold

  6. #6
    Alkhara Majere's Avatar Account not activated by Email
    Reputation
    948
    Join Date
    Jul 2006
    Posts
    2,642
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    Sure is neat, +rep +gold.

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

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    if anyone has suggestion's for the script just let me know
    also if anyone has another idea for a script ill try my best at making it

  8. #8
    crankd's Avatar Member
    Reputation
    2
    Join Date
    Jan 2007
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    Nice +rep and if i could i would + money but i cant
    Last edited by Alkhara Majere; 01-24-2007 at 12:34 AM.

  9. #9
    israelijedi's Avatar Member
    Reputation
    11
    Join Date
    Jan 2007
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    The link is damaged

  10. #10
    Dead_Man's Avatar Active Member
    Reputation
    35
    Join Date
    Jan 2007
    Posts
    161
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    works for me just copy and paste it into adress bar
    Last edited by Dead_Man; 01-31-2007 at 12:04 AM.

  11. #11
    Dizziness's Avatar Active Member
    Reputation
    16
    Join Date
    Nov 2006
    Posts
    194
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    Zomfg über awsome. Gonna test it on my m8s mage^^
    Dizziness

  12. #12
    Zaldion's Avatar Member
    Reputation
    8
    Join Date
    Jan 2007
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    Does this actually target things for you? I see semi automatic but can you make one that would farm SFK lets say? Looks really nice from the comments if nothing else but still would like to know exactly what it does for you and would like to see a fully automatic mage (I know about glider but I tried to set it up and it took forever plus it cost $25 to buy)

  13. #13
    Brock's Avatar Member
    Reputation
    8
    Join Date
    Oct 2006
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    on the form, what is MP?

  14. #14
    kobba's Avatar Member
    Reputation
    2
    Join Date
    Mar 2007
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    Cheers thanks for this!

  15. #15
    Davy's Avatar Member
    Reputation
    1
    Join Date
    Dec 2006
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Auto-it Program] Wrote this myself, Semi-Automatic Mage

    Can it auto loot dead mobs? If it can't is there is a possibility to make it do?

Page 1 of 2 12 LastLast

Similar Threads

  1. What program was this guy using?
    By intrntrage in forum WoW EMU Questions & Requests
    Replies: 0
    Last Post: 04-12-2009, 01:13 AM
  2. auto caster program
    By slack7219 in forum WoW EMU Programs
    Replies: 5
    Last Post: 09-13-2008, 04:56 PM
  3. Ghost Auto Prospecting Program
    By riki in forum World of Warcraft Bots and Programs
    Replies: 19
    Last Post: 07-30-2008, 05:54 PM
  4. Auto-it programming section
    By EcHoEs in forum Suggestions
    Replies: 2
    Last Post: 03-20-2008, 05:52 AM
All times are GMT -5. The time now is 01:03 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