zolofighter deathknight.cfg unholy 58+ menu

User Tag List

Results 1 to 13 of 13
  1. #1
    pwnd^'s Avatar Member
    Reputation
    5
    Join Date
    Jun 2008
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    zolofighter deathknight.cfg unholy 58+

    Hey,
    my deathknight.cfg is working pretty good and might be usefull for somebody:
    Code:
    ####################
    # Profile Settings #
    ####################
    maxreach=24
    engage_dist=24
    reach=3
    DontStopWhenSelectTarget=1
    mobLevelDiffUpper=4
    
    foodPercent=0.40
    ###########
    # Actions #
    ###########
    ################
    # Pet Commands #
    ################
    defact= act:RaiseDead slot:2 key:3 hassummon:n cooldown:1.5 js:checkRaiseDeadCooldown()
    #defact= act:sendPet slot:ctrl key:1 cooldown:0.5 // useless
    #####################
    # Fighting Commands #
    #####################
    defact= act:BoneShield slot:2 key:2 cooldown:1.5 prevacttime:60
    defact= act:DeathGrip slot:1 key:1 cooldown:1.5 prevacttime:25 js:checkDeathGrip()
    defact= act:PlagueStrike slot:1 key:2 cooldown:1.5
    defact= act:IcyTouch slot:1 key:3 cooldown:1.5 
    defact= act:BloodStrike slot:1 key:4 cooldown:1.5
    defact= act:ScourgeStrike slot:1 key:5 cooldown:1.5 js:checkScourgeStrike()
    defact= act:DeathStrike slot:1 key:6 cooldown:1.5
    defact= act:DeathCoil slot:1 key:7 cooldown:1.5 js:checkDeathCoil()
    defact= act:Pestilence slot:1 key:8 cooldown:1.5 prevacttime:10 js:checkPestilence()
    defact= act:Gargoyle slot:1 key:9 cooldown:1.5 prevacttime:180 js:checkGargoyle()
    defact= act:fight key:t slot:key
    ###############
    # Other Stuff #
    ###############
    defact= act:approach predefined:approach distge:4 dist:4 approachcheck:checkTarget()
    defact= act:reachCombat js:ReachCombatDistance()
    
    defact= act:wait1s cooldown:1 distle:5
    defact= act:lootapproach predefined:lootapproach distle:25 distge:5 dist:5
    defact= act:loot predefined:loot distle:5
    
    defact= act:food slot:2 key:4 cooldown:1
    defact= act:mount slot:2 key:1
    ####################
    # Combat Sequences #
    ####################
    #############
    # PreCombat #
    #############
    precombat= act:RaiseDead
    precombat= act:BoneShield
    precombat= act:fight
    #precombat= act:sendPet // useless
    precombat= act:DeathGrip 
    precombat= act:approach
    ##########
    # Combat #
    ##########
    combatseq= act:approach
    combatseq= act:PlagueStrike
    combatseq= act:IcyTouch
    combatseq= act:BloodStrike
    combatseq= act:Pestilence
    combatseq= act:ScourgeStrike
    combatseq= act:DeathCoil
    combatseq= act:Gargoyle
    ########
    # Loot #
    ########
    lootseq= act:lootapproach
    lootseq= act:wait1s
    lootseq= act:loot
    lootseq= act:wait1s
    ###########
    # Scripts #
    ###########
    <script>
    
    function checkDeathGrip(){
    	var target = me.target;
    	var distance = Math.sqrt(Math.pow(target.x-me.x,2)+Math.pow(target.y-me.y,2));
    	if (distance < 0) distance * -1;
    	if (distance > 5) {
    		wowjs.wowLog("Mob is more than 5 yards away; Death Grip!");
    		pulled = true;
    		return true;
    	}
    	wowjs.wowLog("Mob is in melee range.");
    	pulled = false;
    	return false;
    }
    
    function checkDeathCoil() {
      if (me.runic >= 40) {
        wowjs.wowLog("DeathCoil!");
        return true;
       }
       return false;
    }
    
    function checkScourgeStrike() {
            var lifePrecent = me.health/me.maxhealth;
    	if (lifePrecent < 0.6) {
              wowjs.wowLog("Do DeathStrike instead of ScourgeStrike!");
    	  me.wowDoFightAction("DeathStrike");
              return false;
             }
             return true;
    }
    
    function checkPestilence() {
    	var attacking = me.wowGetAttackingMobs();
    	var attackingnumber = 0;
    	var done = 0;
    	var i = 0;
    	while (done != 1) {
    		if (attacking[i] != null) {
    			attackingnumber++;
    		}else{
    			done = 1;
    		}
    		i++;
    	}
    	if (attackingnumber > 1) return true;
    	return false;
    
    }
    
    function checkGargoyle() {
            var lifePrecent = me.health/me.maxhealth;
    	if (lifePrecent > 0.5) return false;
            if (me.runic < 50) return false; 
    	var attacking = me.wowGetAttackingMobs();
    	var attackingnumber = 0;
    	var done = 0;
    	var i = 0;
    	while (done != 1) {
    		if (attacking[i] != null) {
    			attackingnumber++;
    		}else{
    			done = 1;
    		}
    		i++;
    	}
    	if (attackingnumber > 1) return true;
    	return false;
    
    }
    
    var RaiseDeadCooldown = 0;
    function checkRaiseDeadCooldown() {
      var curTime = me.curTime;
      if (curTime - RaiseDeadCooldown > 300) {
        wowjs.wowLog("RaiseDead past 5min cooldown");
        RaiseDeadCooldown = curTime;
        return true;
      }
      return false;
    }
    
    function checkTarget()
    {
       var mytarget = me.target;
       if (mytarget != null)
       {
          me.wowLog("checking my target " + mytarget.name);
          if (me.fighterMode=='BG')
          {
          me.wowLog("bg mode, attack all ");
          return true;
          }
          var target = mytarget.target;   
          if (target != null)
          {
             me.wowLog("checking my target is targeting " + target.name);
             var targetme = target.wowIsSameObj(me);
             var targetpet = target.wowIsSameObj(me.wowGetSummon());
    
             if (targetme || targetpet)
             {
                //if target me or pet, it is ok
                me.wowLog("he is attacking me");
                return true;
             }
             else
             {
                //abort fight
                me.wowAbortCurFight = true;
                me.wowLog("he is attacking OTHERS " + target.name);
                return false;
             }
          }
       }
       return true;
    }
    
    </script>

    zolofighter deathknight.cfg unholy 58+
  2. #2
    KRYPTON88's Avatar Banned
    Reputation
    97
    Join Date
    Oct 2008
    Posts
    180
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    On your Defect's whats
    Code:
     prevacttime:60
    Im asking because im trying to get zolo to stop spamming spells so fast that the bot wont wait for the cooldown time before attempting a spell... thx

  3. #3
    Willy's Avatar Elite User
    CoreCoins Purchaser
    Reputation
    478
    Join Date
    Mar 2007
    Posts
    682
    Thanks G/R
    147/124
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by KRYPTON88 View Post
    On your Defect's whats
    Code:
     prevacttime:60
    Im asking because im trying to get zolo to stop spamming spells so fast that the bot wont wait for the cooldown time before attempting a spell... thx
    It adds a "block" so the spell cant be casted again for 60s in this case

  4. #4
    KRYPTON88's Avatar Banned
    Reputation
    97
    Join Date
    Oct 2008
    Posts
    180
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by willecoolis View Post
    It adds a "block" so the spell cant be casted again for 60s in this case
    Thanks bro that exactly what i needed!6):

  5. #5
    drew77's Avatar Member
    Reputation
    30
    Join Date
    Oct 2007
    Posts
    204
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    As this is the "Glider Profiles" section it strikes me as odd that you'd post .cfg for ZoloFighter.

    Not flaming...just drooling and saying "whaaaaaa???????" as my left eye ticks at random intervals.

  6. #6
    kusipaa0's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ehm, I make this macro in game or this is for a program or something? cant rly understand :P

  7. #7
    erikeightsix's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks dude been looking for this +rep
    Last edited by erikeightsix; 11-21-2008 at 07:40 AM.

  8. #8
    wowpanda's Avatar Site Donator
    Reputation
    91
    Join Date
    Jan 2008
    Posts
    225
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This binding is actually very good! Not many people are capable of this. +rep to get you out of leecher group.

    Can I ask your permission to add this to fighter release? I will add proper credits to you.

  9. #9
    Loteeh's Avatar Game Master
    Reputation
    112
    Join Date
    Jan 2007
    Posts
    221
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where i have to put it ? To what folder and how to load it ?

  10. #10
    pwnd^'s Avatar Member
    Reputation
    5
    Join Date
    Jun 2008
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    copy for example bindings_warrior
    rename the copy to bindings_deathknight
    copy and paste my post into the bindings_deathknight.cfg
    or just download the new version of zolofighter xD
    Last edited by pwnd^; 11-23-2008 at 06:08 AM.

  11. #11
    wowpanda's Avatar Site Donator
    Reputation
    91
    Join Date
    Jan 2008
    Posts
    225
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have modified your script a little bit and added a summon check, so hopefully it won't summon ghauls when not needed any more.

  12. #12
    [Shon3m]'s Avatar Banned
    Reputation
    128
    Join Date
    Apr 2007
    Posts
    669
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yeah man nice work +Rep ^^

  13. #13
    BrasseN's Avatar Member
    Reputation
    2
    Join Date
    Nov 2008
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice

Similar Threads

  1. [Buying] Looking for Unholy Deathknight coaching.
    By Lecavalier in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 01-13-2015, 01:48 AM
  2. Unholy deathknight ghoul in blood spec
    By Nardax in forum World of Warcraft Exploits
    Replies: 1
    Last Post: 12-17-2014, 12:12 PM
  3. Fixed Binding_paladin.CFG file for ZoloFighter Bot [Eat/Drink]
    By KRYPTON88 in forum World of Warcraft Bots and Programs
    Replies: 4
    Last Post: 11-11-2008, 07:12 PM
  4. Fury Warrior Cfg for ZoloFighter
    By daorigin in forum World of Warcraft Bots and Programs
    Replies: 14
    Last Post: 03-19-2008, 08:41 AM
  5. Deathknight model without horse
    By Raijin in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 11-02-2006, 12:41 PM
All times are GMT -5. The time now is 05:32 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search