shottah

RBOT | Void Aura (7500)

Jun 16th, 2018
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.04 KB | None | 0 0
  1. using RBot;
  2.  
  3. public class Script {
  4.  
  5.     public void ScriptMain(ScriptInterface bot){
  6.         bot.Options.SafeTimings = true;
  7.         bot.Options.RestPackets = true;
  8.         bot.Skills.StartTimer();
  9.        
  10.         bot.Options.LagKiller = true;
  11.         bot.Options.InfiniteRange = true;
  12.         bot.Options.PrivateRooms = true;
  13.         bot.Options.Magnetise = true;
  14.         bot.Options.DisableFX = true;
  15.         bot.Options.HuntDelay = 1500;
  16.         bot.Options.SafeRelogin = true;
  17.         bot.Options.AutoReloginAny = true;
  18.        
  19.         bot.Player.LoadBank();
  20.         bot.Inventory.BankAllCoinItems();
  21.         bot.Bank.ToInventory("Void Aura");
  22.         bot.Bank.ToInventory("Astral Ephemerite Essence");
  23.         bot.Bank.ToInventory("Belrot the Fiend Essence");
  24.         bot.Bank.ToInventory("Black Knight Essence");
  25.         bot.Bank.ToInventory("Tiger Leech Essence");
  26.         bot.Bank.ToInventory("Carnax Essence");
  27.         bot.Bank.ToInventory("Chaos Vordred Essence");
  28.         bot.Bank.ToInventory("Unending Avatar Essence");
  29.         bot.Bank.ToInventory("Creature Creation Essence");
  30.        
  31.         bot.Drops.Add("Void Aura");
  32.         bot.Drops.Add("Treasure Chest");
  33.         bot.Drops.Start();
  34.        
  35.         while (!bot.Inventory.Contains("Void Aura", 7500)) {
  36.             bot.Quests.EnsureAccept(4432);
  37.             doTask (bot, "timespace", "Astral Ephemerite", "Astral Ephemerite Essence", 20);
  38.             doTask (bot, "citadel", "Belrot the Fiend", "Belrot the Fiend Essence", 20);
  39.             doTask (bot, "greenguardwest", "Black Knight", "Black Knight Essence", 20);
  40.             doTask (bot, "mudluk", "Tiger Leech", "Tiger Leech Essence", 20);
  41.             doTask (bot, "aqlesson", "Carnax", "Carnax Essence", 20);
  42.             doTask (bot, "hachiko", "Chaos Vordred", "Chaos Vordred Essence", 20);
  43.             doTask (bot, "timevoid", "Unending Avatar", "Unending Avatar Essence", 20);
  44.             doTask (bot, "maul", "Creature Creation", "Creature Creation Essence", 20);
  45.             bot.Quests.EnsureComplete(4432);
  46.         }
  47.         bot.Drops.Stop();
  48.     }
  49.    
  50.     public void doTask(ScriptInterface bot, string map, string enemy, string item, int quantity) {
  51.         if (bot.Map.Name != map) bot.Player.Join(map, "Enter", "Spawn");
  52.         bot.Player.HuntForItem(enemy, item, quantity);
  53.         bot.Sleep(1000);
  54.     }
  55. }
Add Comment
Please, Sign In to add comment