View Poll Results: What bot/script should I make next?

Voters
4. This poll is closed
  • Doomwood Rep Bot (Rank 10 in 2 HR)

    2 50.00%
  • Fast Gold Bot (4,000,000 / HR)

    2 50.00%
  • Necrotic Sword of Doom (NSOD) Bot

    2 50.00%
  • Evolved Blood/Hex Orb Bot

    0 0%
  • ... I'll just check the comments.

    0 0%
Multiple Choice Poll.
Results 1 to 11 of 11
  1. #1
    imbasu's Avatar
    Join Date
    May 2018
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    53
    My Mood
    Psychedelic

    RBot Script Collection | Hydra Scales Bot

    So I'm an avid programmer and I'd like to upload some of these scripts for anyone that would like to use Rbot but doesn't know how to code in C#.


    Scripts:
    1. Hydra Scales - Lvl 25 Challenge (x300)
    2. Blade of Awe - Runes Found!



    I'll have more... eventually..

     

    Change log:
    • Hydra Scales Merge
      • Cleaned up the code.

    • Blade of Awe
      • Fixed a bug where if you got the item, you'd still farm for it.



    Last edited by imbasu; 06-03-2018 at 09:53 PM. Reason: safer code

  2. The Following 2 Users Say Thank You to imbasu For This Useful Post:

    gaffox (06-03-2018),rodit (06-03-2018)

  3. #2
    rodit's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    74
    Reputation
    44
    Thanks
    2,905
    My Mood
    Relaxed
    Nice script - just a quick note, make sure bot.Options.SafeTimings = true; is at the top of every script you use or you are almost guaranteed to get DCd :P

  4. The Following User Says Thank You to rodit For This Useful Post:

    imbasu (06-03-2018)

  5. #3
    gaffox's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Posts
    246
    Reputation
    33
    Thanks
    2,844
    Seems pretty cool, just a question.
    Wouldn't it be simpler to just write
    Code:
    while(bot.Inventory.Contains("Hydra Scale", 300) == false){
           bot.Player.Kill("*");
           }
    instead of

    Code:
    while (true) {
                    if (bot.Inventory.Contains("Hydra Scale", 300) == false) {
                        bot.Player.Kill("*");
                    } else {
                        break;
                    }
    Just asking because I'm also learning to code and it seemed pretty weird to me the way you did it, maybe I'm missing something?

  6. #4
    rodit's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    74
    Reputation
    44
    Thanks
    2,905
    My Mood
    Relaxed
    Yes it would, and it would be even simpler to write:

    Code:
    while(!bot.Inventory.Contains("Hydra Scale", 300)){
           bot.Player.Kill("*");
           //pickup code etc...
    }
    There are a few bits and pieces that could be cleaned up in the script but, in terms of functionality, it should work just fine.

    With the new Hunt function that I have added to the new release (which is pending approval), the script could be simplified to something like this: https://pastebin.com/FiHyKs44

    This will, however, kill all of the hydra heads, including the ones with higher health/level. In this case, the 'KillForItem' function is probably better than hunt.
    Last edited by rodit; 06-03-2018 at 06:31 PM.

  7. The Following User Says Thank You to rodit For This Useful Post:

    gaffox (06-03-2018)

  8. #5
    gaffox's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Posts
    246
    Reputation
    33
    Thanks
    2,844
    Thanks for the answer, might try doing some myself to see it's possible to make bots you couldn't normally make with the other trainers.

  9. #6
    imbasu's Avatar
    Join Date
    May 2018
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    53
    My Mood
    Psychedelic
    Quote Originally Posted by gaffox View Post
    Just asking because I'm also learning to code and it seemed pretty weird to me the way you did it, maybe I'm missing something?
    You're both correct, but in my method of writing other scripts, by force of habit it turned out this way.

    Code:
    while (true) // Outer loop for final items
        while (condition) // Inner loop for ingredients
    For code simplicity sake, I'll update it.

    I'm currently working on a script to farm for Nulgath Nation House... and eventually the Enchanted vers.
    Last edited by imbasu; 06-03-2018 at 07:46 PM.

  10. #7
    rodit's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    74
    Reputation
    44
    Thanks
    2,905
    My Mood
    Relaxed
    Another note about your Runes Found script; as a rule of thumb, if the quest item has it's own page on the aqw wiki, it is not a temporary item (i.e. if you go to the quest's page, and see the item required for the quest has a link to its own page, it is not a temporary item) - you therefore only need to call ContainsItem, not ContainsTempItem in this case (as Runes Found is a proper inventory item, not a temporary item). Also, you do not need to check if a drop exists when picking it up - bot.Player.Pickup will just ignore drops that don't exist when called. Nice script though :P

    Another note in terms of simplification, you can use bot.Player.KillForItem("Tibicenas", "Runes Found!", 1) to replace your entire while loop. It's a lot more convenient.

    There are a few example scripts on how to get a number of items required for the Nulgath Nation house (and the pink diamond star (GuruChest.cs), and musgravite of nulgath (MusgraviteNulgath.cs)) which you could use to help when making your Nulgath Nation House bot.
    Last edited by rodit; 06-04-2018 at 05:06 AM.

  11. #8
    mchqeen12's Avatar
    Join Date
    May 2017
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    6
    My Mood
    Happy
    Dark cyrstal shard bot please

  12. #9
    imbasu's Avatar
    Join Date
    May 2018
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    53
    My Mood
    Psychedelic
    Evolved Blood Orb (Supplies to spin the Wheel of Chance)

    This bot only gathers all the materials needed to buy the Evolved Blood Orb pet in /join archportal

    - - - Updated - - -

    Quote Originally Posted by mchqeen12 View Post
    Dark cyrstal shard bot please
    If you've downloaded RBot from rodit's thread you should have a script for DarkCrystalShards.cs already, it does the Essence of Defeat reagent and is probably your best option, if you want I will make a bot that converts Tainted Gems x50 -->Dark Crystal Shards x5 using "A Tainted Deal" Quest.
    Last edited by imbasu; 06-05-2018 at 09:40 PM.

  13. The Following User Says Thank You to imbasu For This Useful Post:

    mchqeen12 (06-06-2018)

  14. #10
    imbasu's Avatar
    Join Date
    May 2018
    Gender
    male
    Posts
    52
    Reputation
    10
    Thanks
    53
    My Mood
    Psychedelic
    Updated thread can be found here.

  15. #11
    meme's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    42.434720, -83.985
    Posts
    8,050
    Reputation
    1403
    Thanks
    2,410
    My Mood
    Lurking
    Closed on OP's request.
    Quote Originally Posted by Hennessy View Post
    meme is shittiest general mod ever.
     
    dd/mm/yy
    Member | 28/1/16 - ∞
    Premium | 20/3/16 - ∞
    BattleOn Minion | 24/12/17 - 21/7/21
    Minion+ | 4/4/19 - 11/12/20
    Other MMMORPG Minion | 10/11/19 - 21/7/21
    Publicist | 7/2/20 - Unknown
    Minecraft Minion | 10/12/20 - 21/7/21
    General Minion | 10/12/20 - 21/7/21

    Moderator | 11/12/20 - 21/7/21
    Princess | 5/1/21 - 30/6/21
    Global Moderator | 21/7/21 - ∞
    Pharaoh | 30/1/22 - ∞
    Trusted Member | 16/3/23 - ∞

Similar Threads

  1. [Release] Huge Trickshot Script Collection!
    By DerHelixx in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 14
    Last Post: 04-11-2021, 02:41 PM
  2. RBOT Script Collection | Script / Bot Requests
    By imbasu in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 62
    Last Post: 07-03-2019, 09:53 AM
  3. [Release] Temp Fix script For AFK Farming bot
    By theclinton in forum PLAYERUNKNOWN'S BATTLEGROUNDS (PUBG) Hacks & Cheats
    Replies: 56
    Last Post: 11-02-2017, 09:31 PM
  4. New Player, New Help, Using Bots/Scripts, Not sure what bots to maximize efficiency?
    By GHOSTKILL190 in forum Adventure Quest Worlds (AQW) Help
    Replies: 19
    Last Post: 01-17-2017, 07:30 PM
  5. [Detected] [Script] Valor Enchant Scroll Bot [Auto Shutoff Vindictus]
    By FAILXpert in forum Vindictus Hacks & Cheats
    Replies: 17
    Last Post: 07-04-2011, 01:28 PM

Tags for this Thread