Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › BattleOn Games Hacks, Cheats & Trainers › Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers › RBot Script Collection | Hydra Scales Bot

RBot Script Collection | Hydra Scales Bot

Posts 1–11 of 11 · Page 1 of 1
imbasu
imbasu
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..

 
Last updated 3rd June 2018 11:41 PM

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.



#1 · edited 8y ago · 8y ago
rodit
rodit
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
#2 · 8y ago
gaffox
gaffox
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?
#3 · 8y ago
rodit
rodit
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.
#4 · edited 8y ago · 8y ago
gaffox
gaffox
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.
#5 · 8y ago
imbasu
imbasu
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.
#6 · edited 8y ago · 8y ago
rodit
rodit
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.
#7 · edited 8y ago · 8y ago
MC
mchqeen12
Dark cyrstal shard bot please
#8 · 8y ago
imbasu
imbasu
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.
#9 · edited 8y ago · 8y ago
imbasu
imbasu
Updated thread can be found here.
#10 · 8y ago
meme
[MPGH]meme
Closed on OP's request.
#11 · 8y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • Huge Trickshot Script Collection!By DerHelixx in Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    14Last post 5y ago
  • RBOT Script Collection | Script / Bot RequestsBy imbasu in Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    62Last post 7y ago
  • Temp Fix script For AFK Farming botBy theclinton in PLAYERUNKNOWN'S BATTLEGROUNDS (PUBG) Hacks & Cheats
    56Last post 8y ago
  • New Player, New Help, Using Bots/Scripts, Not sure what bots to maximize efficiency?By GHOSTKILL190 in Adventure Quest Worlds (AQW) Help
    19Last post 9y ago
  • [Script] Valor Enchant Scroll Bot [Auto Shutoff Vindictus]By FAILXpert in Vindictus Hacks & Cheats
    17Last post 15y ago

Tags for this Thread

#bot#hydra#mobius#rbot#script