zoloFighter WOW grinding bot menu

User Tag List

Page 40 of 79 FirstFirst ... 363738394041424344 ... LastLast
Results 586 to 600 of 1180
  1. #586
    b0lt's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone know why my frost mage would be switching to melee once the mob gets close enough? Here's my script:

    Code:
    DRINKPERCENT=0.40
    FOODPERCENT=0.30
    
    manaRestPercent=0.40
    healthRestPercent=0.30
    
    manaRestToPercent=0.95
    healthRestToPercent=0.95
    
    reach=35
    defact= act:frostbolt slot:1 key:1 distge:10
    defact= act:magearmor slot:1 key:2 cooldown:1.0
    defact= act:arcaneint slot:1 key:3 cooldown:1.0
    defact= act:respawn slot:1 key:4 cooldown:1.0
    
    defact= act:makefood slot:1 key:9 js:checkFood() cooldown:1.0
    defact= act:makewater slot:1 key:0 js:checkWater() cooldown:1.0
    
    defact= act:food slot:1 key:-
    defact= act:drink slot:1 key:=
    
    # wait, used for loot
    defact= act:wait1s cooldown:1 distle:5
    
    # used to approach corpse.  the max distance is 20.  Set to smaller values will be safer. It will go till dist between
    #                           your toon and enemy is 3
    defact= act:lootapproach predefined:approach distle:30 dist:5 js:canLoot()
    defact= act:loot predefined:loot distle:10 js:canLoot()
    
    #uses ReachCombatDistance() in script.js to close to spell or combat distance if mob moves far.
    defact= act:reachCombat js:ReachCombatDistance()
    
    precombat= act:frostbolt
    
    combatseq= act:frostbolt repeat:5
    
    lootseq= act:lootapproach
    lootseq= act:wait1s
    lootseq= act:loot
    lootseq= act:respawn
    
    globalact= act:magearmor timeout:30m
    globalact= act:arcaneint timeout:30m
    globalact= act:makewater timeout:15m
    globalact= act:makefood timeout:15m
    
    
    <script>
    function checkFood() 
    { 
      var names=["Conjured Croissant", 
        "Conjured Cinnamon Roll", 
        "Conjured Croissant", 
        "Conjured Sweet Roll", 
        "Conjured Sourdough", 
        "Conjured Pumpernickel", 
        "Conjured Rye", 
        "Conjured Bread", 
        "Conjured Muffin"]; 
    
      var foodTotal = 0; 
      for (var i in names){ 
        foodTotal += me.wowGetAllContainerItemCount(names[i]); 
      } 
    
      var res=foodTotal < 2; 
      if (res == true) { 
        me.wowLog("my food " + foodTotal +" need to make more"); 
        return true; 
      } 
      me.wowLog("there are enough food " + foodTotal); 
      return false; 
    } 
    
    function checkWater() { 
    me.wowLog("checking water");
      var waterTotal = 0; 
      var names=["Conjured Glacier Water", 
        "Conjured Mountain Spring Water", 
        "Conjured Crystal Water", 
        "Conjured Sparkling Water", 
        "Conjured Mineral Water", 
        "Conjured Spring Water", 
        "Conjured Purified Water", 
        "Conjured Fresh Water", 
        "Conjured Water" 
        ]; 
      for (var i in names) { 
        waterTotal += me.wowGetAllContainerItemCount(names[i]); 
      } 
    me.wowLog("checking water total is " + waterTotal);
      var needWater = waterTotal<2; 
      if (needWater == true) { 
        me.wowLog("Need more water, we have "+waterTotal); 
        return true; 
      } 
      me.wowLog("Don't need more water, we have "+waterTotal); 
      return false; 
    } 
    
    </script>
    engage_dist=33
    maxreach=36

    zoloFighter WOW grinding bot
  2. #587
    skelliton's Avatar Member
    Reputation
    6
    Join Date
    Jan 2008
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    combatseq= act:frostbolt repeat:5
    maybe you have to write it out those 5 times instead of typing repeat....or you have a key bound to your auto hit button so that it is just spamming that.


    wowpanda, i still cant get my ZF up and running, do i need to download a new version? And if i do; am i going to have to re write all my scripts and bindings?

  3. #588
    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)
    @b0lt what do you mean switch to melee? Can you describe in detail? The script looks ok.

    @skelliton Yes, you need to download 0.8.1.0. You can keep your old files, what you can do is, download new version, extract to a new folder, rename zoloFighter and zoloConfig util to the same name as your old one, and copy your bindings, settings.txt and you profile folder from your original fighter folder to the new one.

  4. #589
    b0lt's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wowpanda View Post
    @b0lt what do you mean switch to melee? Can you describe in detail? The script looks ok.
    Once the mob gets to a certain point (within melee range, I think it's when the cursor turns into a sword), the bot stops casting frostbolt, and just melees the mob to death, which obviously isn't very good.

    Edit: Actually, I think it just stops casting after it gets in melee range, and an addon I have automatically starts attacking. I can't be certain though.
    Last edited by b0lt; 06-13-2008 at 04:57 PM.

  5. #590
    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)
    Hmm, I don't have such problems, so try to disable all addons and see what happens.

    And, does it look like he is trying to cast but got interrupted? Anything in the logs?

  6. #591
    b0lt's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wowpanda View Post
    Hmm, I don't have such problems, so try to disable all addons and see what happens.

    And, does it look like he is trying to cast but got interrupted? Anything in the logs?
    Hmm, I disabled addons, and it got fixed. By the way, is there any way to implement an action that occurs after resting but before attacking?

    Edit: I'm now having a problem with my character successfully killing some mobs, but then eventually, starts ignoring mobs directly in front of him. He starts jerking back and forth walking around randomly, with the mob targeted. Right before this, the cursor goes crazy in the center of the screen (looking for the mob to click on?)

    Here's the log when this happens:

    Code:
    Aquire Target x8c011544 name Artifact Seeker
    in fight, target aquired
    fight count 6
    Mob is not fightable, add to no fight list
    in fight, Target guid 8c011544
    in fight ex
    in fight, retry Target (RMM)
    ending thread
    after main
    Thread Done e
    Last edited by b0lt; 06-13-2008 at 07:05 PM.

  7. #592
    Aes's Avatar Former Staff CoreCoins Purchaser
    Reputation
    705
    Join Date
    Dec 2007
    Posts
    1,793
    Thanks G/R
    7/8
    Trade Feedback
    60 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    good bot.

    i was using it to grind while i did some other things lol.
    i only got 'suspiciousfied' by one person, they added me to a group to see if i was botting but lucky i was at the comp and accepted lol.

    +rep
    ( ͡°( ͡° ͜ʖ( ͡° ͜ʖ ͡°)ʖ ͡°) ͡°)

  8. #593
    skysword's Avatar Member
    Reputation
    3
    Join Date
    Apr 2007
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So, I don't really understand the instructions, you make the .exe into a guest file then run in admin? Explain please. =(

  9. #594
    snippet's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey, can anybody help me with setup this bot? Have set Rest Percent to 30% in my Warrior Conf. But if he gets a mob down and have <30% he wont eat something. I didnt found any setting to eat or a button to set. In FAQ I have read, that the bot must know about the food, but who can I set up this one?

    thx and +rep for this nice bot

    Edit: Problem solved: Add a Hotkey food and bind it to the Actionbar and Slot of this
    Last edited by snippet; 06-14-2008 at 12:24 PM.

  10. #595
    mightymikez's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by colt450011 View Post
    Download the GuestAdder.exe from the downloads page. Run it, and you're good to go.
    where is the link for GuestAdder.exe ?

  11. #596
    -Bish-'s Avatar Active Member
    Reputation
    20
    Join Date
    Oct 2006
    Posts
    87
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Damn

    I wish I would buy the full program. Sold WoW account for 111$ but I can't use PayPal without Credit Card, unluckily. I'm not able to get one myself since I'm not old enough. Anyone has solution? No, my parents or brothers dont have Credit Cards. Thanks in advance!

  12. #597
    molla's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Eh, i cant it work, im from Nowray, and i have changed the bot account user to: Gjest
    i have done everything that stands on the guide, but it comes "Can't start WoW: No access"
    What shal i do!?!
    Help please

  13. #598
    molla's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    SOrry for double post but, I did fix the can't start WoW
    But when i press "Run WoW" Nothing happens :confused::confused:
    Please help?

  14. #599
    molla's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok, i have fixed everything (With me) except:
    I can't run WoW. When i press "Run WoW" Nothing happens, What shal i do now!?

    Please answer!?!?!?!?!

    I need really big help!!!!!
    Last edited by molla; 06-15-2008 at 11:40 AM. Reason: NO1 WANTS TO HELP!

  15. #600
    kringla's Avatar Member
    Reputation
    1
    Join Date
    Jul 2007
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Stop spamming molla, enough with one time seriously.

Page 40 of 79 FirstFirst ... 363738394041424344 ... LastLast

Similar Threads

  1. WoW 3.3.5 Grinding Bot?
    By chiem in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 12-11-2011, 02:47 PM
  2. WOW grinding bot
    By jwandoj in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 08-13-2010, 07:34 PM
  3. Grinding bot working with WoW Patch 1.2.1
    By Flyingcarpet in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 06-29-2010, 05:17 PM
  4. WoW anti AFK and Grinding Bot! It Works!
    By matswurld in forum World of Warcraft General
    Replies: 13
    Last Post: 06-17-2007, 08:01 PM
All times are GMT -5. The time now is 12:03 PM. 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