Advertisement
shottah

RBOT | Shurpu Blaze Token (Non-mem)

Jun 4th, 2018
474
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.02 KB | None | 0 0
  1. using RBot;
  2.  
  3. public class Script {
  4.  
  5.     public void ScriptMain(ScriptInterface bot){
  6.         for (int i = 1; i <= 4; i++) {
  7.             bot.Skills.Add(i, 1f);
  8.         }
  9.         bot.Skills.StartTimer();
  10.         bot.Options.SafeTimings = true;
  11.         bot.Options.RestPackets = true;
  12.        
  13.         bot.Player.LoadBank();
  14.        
  15.         bot.Quests.EnsureAccept(2209);
  16.         if (!bot.Quests.IsDailyComplete(2209)) {
  17.             Shurpu(bot);
  18.             bot.Sleep(1000);
  19.         }
  20.        
  21.         bot.Player.Join("yulgar-1e99", "Enter", "Spawn");
  22.        
  23.     }
  24.  
  25.     public void Shurpu (ScriptInterface bot) {
  26.        
  27.         if (bot.Bank.Contains("Shurpu Blaze Token"))
  28.             bot.Bank.ToInventory("Shurpu Blaze Token");
  29.        
  30.         if (bot.Map.Name != "xancave")
  31.             bot.Player.Join("xancave", "r11", "Left");
  32.         if (bot.Player.Cell != "r11")
  33.             bot.Player.Jump("r11", "Left");
  34.            
  35.         bot.Player.SetSpawnPoint();
  36.         while (!bot.Quests.CanComplete(2209)) {
  37.             bot.Player.Kill("*");
  38.         }
  39.        
  40.         bot.Quests.EnsureComplete(2209);
  41.         bot.Player.Pickup("Shurpu Blaze Token");
  42.        
  43.         bot.Inventory.ToBank("Shurpu Blaze Token");
  44.        
  45.     }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement