Paladin AutoBuff menu

User Tag List

Results 1 to 10 of 10
  1. #1
    Marlo's Avatar Banned
    Reputation
    84
    Join Date
    Jul 2006
    Posts
    2,453
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Paladin AutoBuff

    So once again I'm sat at my computer and bored out of my mind! So I decide to pick up AutoIt again and make a paladin buffer! Possibly alot more use than my Rogue one :P Basicly all it does is Buff each member of a 5 man group with a blessing that you specify.

    Here's the code:
    Code:
    $appname = "World of Warcraft"
    $bufftext1 = "Might"
    $bufftext2 = "Light"
    $bufftext3 = "Wisdom"
    $bufftext4 = "Salvation"
    $bufftext5 = "Sanctuary"
    
    func runbuff()
    	$read1 = GUICtrlRead($buff1)
    	$read2 = GUICtrlRead($buff2)
    	$read3 = GUICtrlRead($buff3)
    	$read4 = GUICtrlRead($buff4)
    	$read5 = GUICtrlRead($buff5)
    	
    	
    	ControlSend($appname,"","","{F1}")
    	ControlSend($appname,"","","/cast Blessing of "&$read1&"{ENTER}")
    
    	ControlSend($appname,"","","{F2}")
    	sleep(1200)
    	ControlSend($appname,"","","/cast Blessing of "&$read2&"{ENTER}")
    	
    	ControlSend($appname,"","","{F3}")
    	sleep(1200)
    	ControlSend($appname,"","","/cast Blessing of "&$read3&"{ENTER}")
    	
    	ControlSend($appname,"","","{F4}")
    	sleep(1200)
    	ControlSend($appname,"","","/cast Blessing of "&$read4&"{ENTER}")
    	
    	ControlSend($appname,"","","{F5}")
    	sleep(1200)
    	ControlSend($appname,"","","/cast Blessing of "&$read5&"{ENTER}")
    
    EndFunc
    
    #include <GUIConstants.au3>
    GUICreate("AutoBless", 210, 200)
    GUISetState (@SW_SHOW)
    
    $label1 = GUICtrlCreateLabel("Yourself",5,7)
    $buff1 = GUICtrlCreateCombo($bufftext1,100,5,100)
    		 GUICtrlSetData(-1,$bufftext2)
    		 GUICtrlSetData(-1,$bufftext3)
    		 GUICtrlSetData(-1,$bufftext4)
    		 GUICtrlSetData(-1,$bufftext5)
    
    $label2 = GUICtrlCreateLabel("Group member 2",5,37)
    $buff2 = GUICtrlCreateCombo($bufftext1,100,35,100)
    		 GUICtrlSetData(-1,$bufftext2)
    		 GUICtrlSetData(-1,$bufftext3)
    		 GUICtrlSetData(-1,$bufftext4)
    		 GUICtrlSetData(-1,$bufftext5)
    		 
    $label3 = GUICtrlCreateLabel("Group member 3",5,67)
    $buff3 = GUICtrlCreateCombo($bufftext1,100,65,100)
    		 GUICtrlSetData(-1,$bufftext2)
    		 GUICtrlSetData(-1,$bufftext3)
    		 GUICtrlSetData(-1,$bufftext4)
    		 GUICtrlSetData(-1,$bufftext5)
    		 
    $label4 = GUICtrlCreateLabel("Group member 4",5,97)
    $buff4 = GUICtrlCreateCombo($bufftext1,100,95,100)
    		 GUICtrlSetData(-1,$bufftext2)
    		 GUICtrlSetData(-1,$bufftext3)
    		 GUICtrlSetData(-1,$bufftext4)
    		 GUICtrlSetData(-1,$bufftext5)
    		 
    $label5 = GUICtrlCreateLabel("Group member 5",5,127)
    $buff5 = GUICtrlCreateCombo($bufftext1,100,125,100)
    		 GUICtrlSetData(-1,$bufftext2)
    		 GUICtrlSetData(-1,$bufftext3)
    		 GUICtrlSetData(-1,$bufftext4)
    		 GUICtrlSetData(-1,$bufftext5)
    
    
    $launch = GUICtrlCreateButton(" Buff Party! ",40,155)
    $close = GUICtrlCreateButton(" Close Script ",110,155)
    
    
    while 1
    	$msg = GUIGetMsg()
    	
    		Select
    			Case $msg = $close
    				WinClose("AutoBless")						
    			Case $msg = $launch
    				if WinExists($appname) Then
    					runbuff()
    				Else
    					MsgBox(64,"Error",$appname&" is not running! please run it then try again")
    				EndIf
    		EndSelect
    	
    	If $msg = $GUI_EVENT_CLOSE Then ExitLoop	
    WEnd
    Still a work in progress but i think its alright

    This requires AutoIt 3.0 download it here

    Feedback appreciated.




    ----(please leave the copyright info below 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 the above on any other site without written permission from both the poster and MMOwned.com
    Last edited by Marlo; 02-18-2007 at 10:07 AM.

    Paladin AutoBuff
  2. #2
    jimmy2222's Avatar Active Member
    Reputation
    39
    Join Date
    Dec 2006
    Posts
    462
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Paladin AutoBuff

    ahaha, lol buffbots ftw... now if i bothered to level up that pally.

  3. #3
    Battlemidge's Avatar Active Member
    Reputation
    32
    Join Date
    Jul 2006
    Posts
    141
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Paladin AutoBuff

    JESUS CHRIST MARLO IS MOD RUNNN 6): But nice <3
    roar.

  4. #4
    DrLecter's Avatar Contributor

    Reputation
    111
    Join Date
    Nov 2006
    Posts
    235
    Thanks G/R
    1/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Paladin AutoBuff

    Is this bannable?
    Where do I paste the code? In macros?
    Autoit as in http://www.autoitscript.com/autoit3/ ?

    Sorry for being a noob but it looks useful.

  5. #5
    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: Paladin AutoBuff

    Good stuff, and drewg, if you read the post, yes, you use this in Autoit

  6. #6
    Marlo's Avatar Banned
    Reputation
    84
    Join Date
    Jul 2006
    Posts
    2,453
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Paladin AutoBuff

    Download and install autoit 3 from that link that i gave you, then create a file called autobless.au3 then paste this code into it then run the script.

    Updated the code, made it alot neater.
    Last edited by Marlo; 02-18-2007 at 10:08 AM. Reason: Auto-merged Doublepost

  7. #7
    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: Paladin AutoBuff

    GJ +rep : )

  8. #8
    raamoz's Avatar Contributor
    Reputation
    92
    Join Date
    Jul 2006
    Posts
    296
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Paladin AutoBuff

    nice work. but not nice class.
    i hope i dont meet a pala in a group :P
    +rep

  9. #9
    swedenhacker's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Paladin AutoBuff

    I do not understand this, what does that auto thing do? Does that writin the script by him self in the wow program? idont understand anything. I have fixed and every thing works but i do not understand your selft and buff party and all that things.???
    Last edited by swedenhacker; 02-21-2007 at 08:08 AM.

  10. #10
    ipownu's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Paladin AutoBuff

    i still dont understand how to do this lol sry for bein such a noob

Similar Threads

  1. Paladin PvP Guide
    By Bossman4 in forum World of Warcraft Guides
    Replies: 8
    Last Post: 12-22-2006, 04:46 PM
  2. Paladin mount
    By Marlo in forum World of Warcraft Model Editing
    Replies: 9
    Last Post: 11-29-2006, 06:51 PM
  3. Paladin Blessing models
    By Avelon in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 11-26-2006, 03:18 PM
  4. Paladin Divine Intervention, Stay Alive!
    By Matt in forum World of Warcraft Exploits
    Replies: 2
    Last Post: 07-13-2006, 02:06 AM
  5. Paladin Guide
    By Bossman4 in forum World of Warcraft Guides
    Replies: 2
    Last Post: 06-03-2006, 03:38 AM
All times are GMT -5. The time now is 05:38 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